diff --git a/.github/workflows/autochangelog.yml b/.github/workflows/autochangelog.yml index c9c628fa29..b3f02e955a 100644 --- a/.github/workflows/autochangelog.yml +++ b/.github/workflows/autochangelog.yml @@ -36,7 +36,7 @@ jobs: python tools/GenerateChangelog/ss13_genchangelog.py \ html/changelog.html \ html/changelogs - - uses: stefanzweifel/git-auto-commit-action@v4 + - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: Automatic changelog generation for ${{ github.events.pull_request.number }} branch: ${{ github.events.pull_request.base }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c51bc9a8d..04369824b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: name: Run Linters runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Ensure +x on CI directory run: | chmod -R +x ./tools/ci @@ -38,7 +38,7 @@ jobs: name: DreamChecker runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache SpacemanDMM uses: actions/cache@v3 @@ -73,7 +73,7 @@ jobs: # needs: ['file_tests', 'dreamchecker'] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Ensure +x on CI directory run: | chmod -R +x ./tools/ci diff --git a/.github/workflows/render_nanomaps.yml b/.github/workflows/render_nanomaps.yml index 62076dca06..767eefe400 100644 --- a/.github/workflows/render_nanomaps.yml +++ b/.github/workflows/render_nanomaps.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Branch run: | diff --git a/Dockerfile b/Dockerfile index d7cffbcfb6..e143dd1d9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,23 @@ -FROM tgstation/byond:513.1533 as base +FROM i386/ubuntu:xenial as base + +ARG BYOND_MAJOR=514 +ARG BYOND_MINOR=1589 + +RUN apt-get update \ + && apt-get install -y \ + curl \ + unzip \ + make \ + libstdc++6 \ + && curl "https://www.byond.com/download/build/${BYOND_MAJOR}/${BYOND_MAJOR}.${BYOND_MINOR}_byond_linux.zip" -o byond.zip \ + && unzip byond.zip \ + && cd byond \ + && sed -i 's|install:|&\n\tmkdir -p $(MAN_DIR)/man6|' Makefile \ + && make install \ + && chmod 644 /usr/local/byond/man/man6/* \ + && apt-get purge -y --auto-remove curl unzip make \ + && cd .. \ + && rm -rf byond byond.zip /var/lib/apt/lists/* FROM base as rust_g @@ -16,7 +35,7 @@ RUN apt-get install -y --no-install-recommends \ gcc-multilib \ && curl https://sh.rustup.rs -sSf | sh -s -- -y --default-host i686-unknown-linux-gnu \ && git init \ - && git remote add origin https://github.com/tgstation/rust-g + && git remote add origin https://github.com/VOREStation/rust-g COPY _build_dependencies.sh . @@ -52,8 +71,8 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* \ && mkdir -p /root/.byond/bin -COPY --from=rust_g /rust_g/target/release/librust_g.so /root/.byond/bin/rust_g COPY --from=build /vorestation/ ./ +COPY --from=rust_g /rust_g/target/release/librust_g.so ./librust_g.so #VOLUME [ "/vorestation/config", "/vorestation/data" ] diff --git a/code/ATMOSPHERICS/components/binary_devices/circulator.dm b/code/ATMOSPHERICS/components/binary_devices/circulator.dm index c5fe955523..04856958cc 100644 --- a/code/ATMOSPHERICS/components/binary_devices/circulator.dm +++ b/code/ATMOSPHERICS/components/binary_devices/circulator.dm @@ -92,7 +92,7 @@ return 1 /obj/machinery/atmospherics/binary/circulator/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 75, 1) anchored = !anchored user.visible_message("[user.name] [anchored ? "secures" : "unsecures"] the bolts holding [src.name] to the floor.", \ diff --git a/code/ATMOSPHERICS/components/binary_devices/passive_gate.dm b/code/ATMOSPHERICS/components/binary_devices/passive_gate.dm index 686efa6508..364e7eda9f 100644 --- a/code/ATMOSPHERICS/components/binary_devices/passive_gate.dm +++ b/code/ATMOSPHERICS/components/binary_devices/passive_gate.dm @@ -279,7 +279,7 @@ add_fingerprint(usr) /obj/machinery/atmospherics/binary/passive_gate/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if (unlocked) to_chat(user, "You cannot unwrench \the [src], turn it off first.") diff --git a/code/ATMOSPHERICS/components/binary_devices/pipeturbine.dm b/code/ATMOSPHERICS/components/binary_devices/pipeturbine.dm index da5f37ff0c..6b0f40b8b4 100644 --- a/code/ATMOSPHERICS/components/binary_devices/pipeturbine.dm +++ b/code/ATMOSPHERICS/components/binary_devices/pipeturbine.dm @@ -82,7 +82,7 @@ add_overlay(image('icons/obj/pipeturbine.dmi', "hi-turb")) /obj/machinery/atmospherics/pipeturbine/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, W.usesound, 50, 1) to_chat(user, "You [anchored ? "secure" : "unsecure"] the bolts holding \the [src] to the floor.") @@ -256,7 +256,7 @@ add_avail(power_generated) /obj/machinery/power/turbinemotor/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, W.usesound, 50, 1) turbine = null diff --git a/code/ATMOSPHERICS/components/binary_devices/pump.dm b/code/ATMOSPHERICS/components/binary_devices/pump.dm index 514216e7fa..d979f9decf 100644 --- a/code/ATMOSPHERICS/components/binary_devices/pump.dm +++ b/code/ATMOSPHERICS/components/binary_devices/pump.dm @@ -239,7 +239,7 @@ Thus, the two variables affect pump operation are set in New(): update_icon() /obj/machinery/atmospherics/binary/pump/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if (!(stat & NOPOWER) && use_power) to_chat(user, "You cannot unwrench this [src], turn it off first.") diff --git a/code/ATMOSPHERICS/components/omni_devices/omni_base.dm b/code/ATMOSPHERICS/components/omni_devices/omni_base.dm index f0c5498fb3..77a35c8eae 100644 --- a/code/ATMOSPHERICS/components/omni_devices/omni_base.dm +++ b/code/ATMOSPHERICS/components/omni_devices/omni_base.dm @@ -80,7 +80,7 @@ update_icon() /obj/machinery/atmospherics/omni/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if(!W.is_wrench()) + if(!W.has_tool_quality(TOOL_WRENCH)) return ..() if(!can_unwrench()) diff --git a/code/ATMOSPHERICS/components/portables_connector.dm b/code/ATMOSPHERICS/components/portables_connector.dm index 31f61ae55b..84b39b95c3 100644 --- a/code/ATMOSPHERICS/components/portables_connector.dm +++ b/code/ATMOSPHERICS/components/portables_connector.dm @@ -147,7 +147,7 @@ /obj/machinery/atmospherics/portables_connector/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if (connected_device) to_chat(user, "You cannot unwrench \the [src], dettach \the [connected_device] first.") diff --git a/code/ATMOSPHERICS/components/trinary_devices/trinary_base.dm b/code/ATMOSPHERICS/components/trinary_devices/trinary_base.dm index eaae718b2e..c548e956cc 100644 --- a/code/ATMOSPHERICS/components/trinary_devices/trinary_base.dm +++ b/code/ATMOSPHERICS/components/trinary_devices/trinary_base.dm @@ -52,7 +52,7 @@ update_icon() /obj/machinery/atmospherics/trinary/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if(!can_unwrench()) to_chat(user, "You cannot unwrench \the [src], it too exerted due to internal pressure.") diff --git a/code/ATMOSPHERICS/components/tvalve.dm b/code/ATMOSPHERICS/components/tvalve.dm index acbf9f6ba2..5edf696696 100644 --- a/code/ATMOSPHERICS/components/tvalve.dm +++ b/code/ATMOSPHERICS/components/tvalve.dm @@ -327,7 +327,7 @@ go_to_side() /obj/machinery/atmospherics/tvalve/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if(!can_unwrench()) to_chat(user, "You cannot unwrench \the [src], it too exerted due to internal pressure.") diff --git a/code/ATMOSPHERICS/components/unary/heat_exchanger.dm b/code/ATMOSPHERICS/components/unary/heat_exchanger.dm index 91616f8d8f..ee759c897c 100644 --- a/code/ATMOSPHERICS/components/unary/heat_exchanger.dm +++ b/code/ATMOSPHERICS/components/unary/heat_exchanger.dm @@ -67,7 +67,7 @@ return 1 /obj/machinery/atmospherics/unary/heat_exchanger/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() var/turf/T = src.loc if (level==1 && isturf(T) && !T.is_plating()) diff --git a/code/ATMOSPHERICS/components/unary/outlet_injector.dm b/code/ATMOSPHERICS/components/unary/outlet_injector.dm index b4991c0e5d..fa3c9073d8 100644 --- a/code/ATMOSPHERICS/components/unary/outlet_injector.dm +++ b/code/ATMOSPHERICS/components/unary/outlet_injector.dm @@ -164,7 +164,7 @@ update_icon() /obj/machinery/atmospherics/unary/outlet_injector/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() playsound(src, W.usesound, 50, 1) diff --git a/code/ATMOSPHERICS/components/unary/vent_pump.dm b/code/ATMOSPHERICS/components/unary/vent_pump.dm index 4b8970fd94..31f1e33fc9 100644 --- a/code/ATMOSPHERICS/components/unary/vent_pump.dm +++ b/code/ATMOSPHERICS/components/unary/vent_pump.dm @@ -390,8 +390,8 @@ return /obj/machinery/atmospherics/unary/vent_pump/attackby(obj/item/W, mob/user) - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if (WT.remove_fuel(0,user)) to_chat(user, "Now welding the vent.") if(do_after(user, 20 * WT.toolspeed)) @@ -429,7 +429,7 @@ update_icon() /obj/machinery/atmospherics/unary/vent_pump/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if (!(stat & NOPOWER) && use_power) to_chat(user, "You cannot unwrench \the [src], turn it off first.") diff --git a/code/ATMOSPHERICS/components/unary/vent_scrubber.dm b/code/ATMOSPHERICS/components/unary/vent_scrubber.dm index fe3e68130f..477ae9c552 100644 --- a/code/ATMOSPHERICS/components/unary/vent_scrubber.dm +++ b/code/ATMOSPHERICS/components/unary/vent_scrubber.dm @@ -270,7 +270,7 @@ update_icon() /obj/machinery/atmospherics/unary/vent_scrubber/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if (!(stat & NOPOWER) && use_power) to_chat(user, "You cannot unwrench \the [src], turn it off first.") diff --git a/code/ATMOSPHERICS/components/valve.dm b/code/ATMOSPHERICS/components/valve.dm index 9273b3b8d5..303e84b78c 100644 --- a/code/ATMOSPHERICS/components/valve.dm +++ b/code/ATMOSPHERICS/components/valve.dm @@ -288,7 +288,7 @@ open() /obj/machinery/atmospherics/valve/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() if (istype(src, /obj/machinery/atmospherics/valve/digital) && !src.allowed(user)) to_chat(user, "Access denied.") diff --git a/code/ATMOSPHERICS/pipes/pipe_base.dm b/code/ATMOSPHERICS/pipes/pipe_base.dm index 0d687b8db0..d06b192a1a 100644 --- a/code/ATMOSPHERICS/pipes/pipe_base.dm +++ b/code/ATMOSPHERICS/pipes/pipe_base.dm @@ -116,7 +116,7 @@ if(istype(W,/obj/item/device/pipe_painter)) return 0 - if (!W.is_wrench()) + if (!W.has_tool_quality(TOOL_WRENCH)) return ..() var/turf/T = src.loc if (level==1 && isturf(T) && !T.is_plating()) diff --git a/code/__defines/chemistry.dm b/code/__defines/chemistry.dm index 80f25e5fb8..2fd9719eb4 100644 --- a/code/__defines/chemistry.dm +++ b/code/__defines/chemistry.dm @@ -26,6 +26,7 @@ #define IS_TESHARI 7 #define IS_SLIME 8 #define IS_ZADDAT 9 +#define IS_ZORREN 10 #define CE_STABLE "stable" // Inaprovaline #define CE_ANTIBIOTIC "antibiotic" // Antibiotics @@ -57,4 +58,4 @@ var/list/cheartstopper = list("potassium_chloride") // Thi #define MAX_UNITS_PER_PILL 60 // Max amount of units in a pill #define MAX_UNITS_PER_PATCH 60 // Max amount of units in a patch #define MAX_UNITS_PER_BOTTLE 60 // Max amount of units in a bottle (it's volume) -#define MAX_CUSTOM_NAME_LEN 64 // Max length of a custom pill/condiment/whatever \ No newline at end of file +#define MAX_CUSTOM_NAME_LEN 64 // Max length of a custom pill/condiment/whatever diff --git a/code/__defines/color.dm b/code/__defines/color.dm index 73db8eef6e..8f8332d768 100644 --- a/code/__defines/color.dm +++ b/code/__defines/color.dm @@ -7,7 +7,7 @@ #define COLOR_MAROON "#800000" #define COLOR_PURPLE "#800080" #define COLOR_VIOLET "#9933ff" -#define COLOR_OLIVE "#52613b" // VOREStation Edit +#define COLOR_OLIVE "#52613b" #define COLOR_BROWN_ORANGE "#824b28" #define COLOR_DARK_ORANGE "#b95a00" #define COLOR_GRAY40 "#666666" diff --git a/code/__defines/misc.dm b/code/__defines/misc.dm index c84f88b0ec..85df59ef56 100644 --- a/code/__defines/misc.dm +++ b/code/__defines/misc.dm @@ -278,6 +278,7 @@ GLOBAL_LIST_EMPTY(##LIST_NAME);\ #define IS_CROWBAR "crowbar" #define IS_WIRECUTTER "wirecutter" #define IS_WRENCH "wrench" +#define IS_WELDER "welder" // Diagonal movement diff --git a/code/__defines/span_vr.dm b/code/__defines/span_vr.dm index 737d1a81ad..ed4072b31f 100644 --- a/code/__defines/span_vr.dm +++ b/code/__defines/span_vr.dm @@ -73,6 +73,7 @@ #define span_interface(str) ("" + str + "") #define span_spacer(str) ("" + str + "") #define span_blob(str) ("" + str + "") +#define span_teppi(str) ("" + str + "") #define span_debug_error(str) ("" + str + "") #define span_debug_warning(str) ("" + str + "") diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index cd58a76f9e..366cdcfdc9 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -132,17 +132,17 @@ var/global/list/global_vore_egg_types = list( "Xenomorph", "Chocolate", "Boney", - "Slime glob", + "Slime Glob", "Chicken", "Synthetic", "Bluespace Floppy", "Bluespace Compressed File", "Bluespace CD", - "Escape pod", - "Cooking error", - "Web cocoon", + "Escape Pod", + "Cooking Error", + "Web Cocoon", "Honeycomb", - "Bug cocoon", + "Bug Cocoon", "Rock", "Yellow", "Blue", @@ -151,7 +151,7 @@ var/global/list/global_vore_egg_types = list( "Purple", "Red", "Rainbow", - "Spotted pink") + "Spotted Pink") var/global/list/tf_vore_egg_types = list( "Unathi" = /obj/item/weapon/storage/vore_egg/unathi, @@ -167,17 +167,17 @@ var/global/list/tf_vore_egg_types = list( "Xenomorph" = /obj/item/weapon/storage/vore_egg/xenomorph, "Chocolate" = /obj/item/weapon/storage/vore_egg/chocolate, "Boney" = /obj/item/weapon/storage/vore_egg/owlpellet, - "Slime glob" = /obj/item/weapon/storage/vore_egg/slimeglob, + "Slime Glob" = /obj/item/weapon/storage/vore_egg/slimeglob, "Chicken" = /obj/item/weapon/storage/vore_egg/chicken, "Synthetic" = /obj/item/weapon/storage/vore_egg/synthetic, "Bluespace Floppy" = /obj/item/weapon/storage/vore_egg/floppy, "Bluespace Compressed File" = /obj/item/weapon/storage/vore_egg/file, "Bluespace CD" = /obj/item/weapon/storage/vore_egg/cd, - "Escape pod" = /obj/item/weapon/storage/vore_egg/escapepod, - "Cooking error" = /obj/item/weapon/storage/vore_egg/badrecipe, - "Web cocoon" = /obj/item/weapon/storage/vore_egg/cocoon, + "Escape Pod" = /obj/item/weapon/storage/vore_egg/escapepod, + "Cooking Error" = /obj/item/weapon/storage/vore_egg/badrecipe, + "Web Cocoon" = /obj/item/weapon/storage/vore_egg/cocoon, "Honeycomb" = /obj/item/weapon/storage/vore_egg/honeycomb, - "Bug cocoon" = /obj/item/weapon/storage/vore_egg/bugcocoon, + "Bug Cocoon" = /obj/item/weapon/storage/vore_egg/bugcocoon, "Rock" = /obj/item/weapon/storage/vore_egg/rock, "Yellow" = /obj/item/weapon/storage/vore_egg/yellow, "Blue" = /obj/item/weapon/storage/vore_egg/blue, @@ -186,7 +186,7 @@ var/global/list/tf_vore_egg_types = list( "Purple" = /obj/item/weapon/storage/vore_egg/purple, "Red" = /obj/item/weapon/storage/vore_egg/red, "Rainbow" = /obj/item/weapon/storage/vore_egg/rainbow, - "Spotted pink" = /obj/item/weapon/storage/vore_egg/pinkspots) + "Spotted Pink" = /obj/item/weapon/storage/vore_egg/pinkspots) var/global/list/edible_trash = list(/obj/item/broken_device, /obj/item/clothing/accessory/collar, @@ -241,7 +241,8 @@ var/global/list/edible_trash = list(/obj/item/broken_device, /obj/item/weapon/storage/vore_egg, /obj/item/weapon/bikehorn/tinytether, /obj/item/capture_crystal, - /obj/item/roulette_ball + /obj/item/roulette_ball, + /obj/item/pizzabox ) var/global/list/contamination_flavors = list( diff --git a/code/_helpers/mobs.dm b/code/_helpers/mobs.dm index 6cd91a852b..d0f25eeb29 100644 --- a/code/_helpers/mobs.dm +++ b/code/_helpers/mobs.dm @@ -219,7 +219,7 @@ Proc for attack log creation, because really why not if(target?.flags & IS_BUSY) to_chat(user, "Someone is already doing something with \the [target].") return FALSE - + var/atom/target_loc = null if(target) target_loc = target.loc @@ -243,7 +243,7 @@ Proc for attack log creation, because really why not if(exclusive & TASK_USER_EXCLUSIVE) user.status_flags |= DOING_TASK - + if(target && (exclusive & TASK_TARGET_EXCLUSIVE)) target.flags |= IS_BUSY @@ -315,3 +315,9 @@ Proc for attack log creation, because really why not else . = getCompoundIcon(desired) cached_character_icons[cachekey] = . + +/proc/not_has_ooc_text(mob/user) + if (config.allow_Metadata && (!user.client?.prefs?.metadata || length(user.client.prefs.metadata) < 15)) + to_chat(user, "Please set informative OOC notes related to RP/ERP preferences. Set them using the 'OOC Notes' button on the 'General' tab in character setup.") + return TRUE + return FALSE diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm index 6f06e3ca7d..20c38938a5 100644 --- a/code/_helpers/unsorted.dm +++ b/code/_helpers/unsorted.dm @@ -1035,7 +1035,8 @@ var/global/list/common_tools = list( /obj/item/weapon/tool/screwdriver, /obj/item/weapon/tool/wirecutters, /obj/item/device/multitool, -/obj/item/weapon/tool/crowbar) +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/transforming) /proc/istool(O) if(O && is_type_in_list(O, common_tools)) @@ -1044,7 +1045,7 @@ var/global/list/common_tools = list( /proc/is_wire_tool(obj/item/I) - if(istype(I, /obj/item/device/multitool) || I.is_wirecutter()) + if(istype(I, /obj/item/device/multitool) || I.has_tool_quality(TOOL_WIRECUTTER)) return TRUE if(istype(I, /obj/item/device/assembly/signaler)) return TRUE @@ -1058,6 +1059,12 @@ var/global/list/common_tools = list( return 3800 else return 0 + if(/obj/item/weapon/tool/transforming) + var/obj/item/weapon/tool/transforming/TT = W + if(TT.possible_tooltypes[TT.current_tooltype] == TOOL_WELDER) + return 3800 + else + return 0 if(/obj/item/weapon/flame/lighter) if(W:lit) return 1500 @@ -1105,7 +1112,7 @@ var/global/list/common_tools = list( if(W.sharp) return TRUE return ( \ - W.is_screwdriver() || \ + W.has_tool_quality(TOOL_SCREWDRIVER) || \ istype(W, /obj/item/weapon/pen) || \ istype(W, /obj/item/weapon/weldingtool) || \ istype(W, /obj/item/weapon/flame/lighter/zippo) || \ diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 2ce82beb42..953ae50e09 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -129,6 +129,7 @@ var/list/gamemode_cache = list() var/static/discordurl var/static/rulesurl var/static/mapurl + var/static/patreonurl //Alert level description var/static/alert_desc_green = "All threats to the station have passed. Security may not have weapons visible, privacy laws are once again fully enforced." @@ -556,6 +557,9 @@ var/list/gamemode_cache = list() if ("discordurl") config.discordurl = value + if ("patreonurl") + config.patreonurl = value + if ("guest_jobban") config.guest_jobban = 1 diff --git a/code/datums/components/crafting/tool_quality.dm b/code/datums/components/crafting/tool_quality.dm index 119469310a..5950cf72f4 100644 --- a/code/datums/components/crafting/tool_quality.dm +++ b/code/datums/components/crafting/tool_quality.dm @@ -27,3 +27,7 @@ /// DEPRECATED PROC: DO NOT USE IN NEW CODE /obj/item/proc/is_multitool() return has_tool_quality(TOOL_MULTITOOL) + +/// DEPRECATED PROC: DO NOT USE IN NEW CODE +/obj/item/proc/is_welder() + return has_tool_quality(TOOL_WELDER) diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index a5bd442b5f..0d3b734099 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -369,6 +369,7 @@ var/global/list/PDA_Manifest = list() var/datum/data/record/M = CreateMedicalRecord(H.real_name, id, hidden) M.fields["species"] = "[H.custom_species ? "[H.custom_species] ([H.species.name])" : H.species.name]" //VOREStation Edit M.fields["b_type"] = H.b_type + M.fields["blood_reagent"] = H.species.blood_reagents M.fields["b_dna"] = H.dna.unique_enzymes M.fields["id_gender"] = gender2text(H.identifying_gender) if(H.get_FBP_type()) diff --git a/code/datums/helper_datums/construction_datum.dm b/code/datums/helper_datums/construction_datum.dm index e2d3dbdfd4..d60db6e25c 100644 --- a/code/datums/helper_datums/construction_datum.dm +++ b/code/datums/helper_datums/construction_datum.dm @@ -41,16 +41,19 @@ var/list/L = steps[steps.len] switch(L["key"]) if(IS_SCREWDRIVER) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) return steps.len if(IS_CROWBAR) - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) return steps.len if(IS_WIRECUTTER) - if(I.is_wirecutter()) + if(I.has_tool_quality(TOOL_WIRECUTTER)) return steps.len if(IS_WRENCH) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) + return steps.len + if(IS_WELDER) + if(I.has_tool_quality(IS_WELDER)) return steps.len if(istype(I, L["key"])) @@ -108,30 +111,36 @@ switch(L["key"]) if(IS_SCREWDRIVER) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) return FORWARD if(IS_CROWBAR) - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) return FORWARD if(IS_WIRECUTTER) - if(I.is_wirecutter()) + if(I.has_tool_quality(TOOL_WIRECUTTER)) return FORWARD if(IS_WRENCH) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) + return FORWARD + if(IS_WELDER) + if(I.has_tool_quality(IS_WELDER)) return FORWARD switch(L["backkey"]) if(IS_SCREWDRIVER) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) return BACKWARD if(IS_CROWBAR) - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) return BACKWARD if(IS_WIRECUTTER) - if(I.is_wirecutter()) + if(I.has_tool_quality(TOOL_WIRECUTTER)) return BACKWARD if(IS_WRENCH) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) + return BACKWARD + if(IS_WELDER) + if(I.has_tool_quality(IS_WELDER)) return BACKWARD if(istype(I, L["key"])) diff --git a/code/datums/outfits/jobs/civilian_vr.dm b/code/datums/outfits/jobs/civilian_vr.dm index 3acfffdfd1..c4d0cb37d4 100644 --- a/code/datums/outfits/jobs/civilian_vr.dm +++ b/code/datums/outfits/jobs/civilian_vr.dm @@ -19,3 +19,6 @@ /decl/hierarchy/outfit/job/assistant/entertainer id_type = /obj/item/weapon/card/id/civilian/entertainer + +/decl/hierarchy/outfit/job/assistant/entrepreneur + id_type = /obj/item/weapon/card/id/civilian/entrepreneur diff --git a/code/datums/riding.dm b/code/datums/riding.dm index d92e19ba2d..ebe600c718 100644 --- a/code/datums/riding.dm +++ b/code/datums/riding.dm @@ -142,7 +142,10 @@ var/turf/next = get_step(ridden, direction) var/turf/current = get_turf(ridden) - if(istype(next, /turf/simulated/floor/water) || istype(current, /turf/simulated/floor/water)) //We can move from land to water, or water to land, but not from land to land + if(istype(current, /turf/simulated/floor/water/underwater)) //don't work at the bottom of the ocean! + to_chat(user, "The boat has sunk!") + return FALSE + else if(istype(next, /turf/simulated/floor/water) || istype(current, /turf/simulated/floor/water)) //We can move from land to water, or water to land, but not from land to land ..() else to_chat(user, "Boats don't go on land!") diff --git a/code/datums/supplypacks/hospitality_vr.dm b/code/datums/supplypacks/hospitality_vr.dm index be7fc11606..da65a8760a 100644 --- a/code/datums/supplypacks/hospitality_vr.dm +++ b/code/datums/supplypacks/hospitality_vr.dm @@ -88,3 +88,12 @@ cost = 50 containertype = /obj/structure/closet/crate/freezer containername = "Chinese takeout crate" + +/datum/supply_pack/randomised/hospitality/jaffacake + contains = list( + /obj/item/weapon/storage/box/jaffacake = 10 + ) + name = "Desatti jaffa cake crate" + cost = 25 + containertype = /obj/structure/closet/crate/freezer + containername = "Desatti jaffa cake crate" diff --git a/code/datums/wires/wires.dm b/code/datums/wires/wires.dm index 9a411c60ee..b366ac43a9 100644 --- a/code/datums/wires/wires.dm +++ b/code/datums/wires/wires.dm @@ -168,8 +168,8 @@ switch(action) // Toggles the cut/mend status. if("cut") - // if(!I.is_wirecutter() && !user.can_admin_interact()) - if(!istype(I) || !I.is_wirecutter()) + // if(!I.has_tool_quality(TOOL_WIRECUTTER) && !user.can_admin_interact()) + if(!istype(I) || !I.has_tool_quality(TOOL_WIRECUTTER)) to_chat(user, "You need wirecutters!") return @@ -179,8 +179,8 @@ // Pulse a wire. if("pulse") - // if(!I.is_multitool() && !user.can_admin_interact()) - if(!istype(I) || !I.is_multitool()) + // if(!I.has_tool_quality(TOOL_MULTITOOL) && !user.can_admin_interact()) + if(!istype(I) || !I.has_tool_quality(TOOL_MULTITOOL)) to_chat(user, "You need a multitool!") return diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm index 53d5ccd701..e9f105637e 100644 --- a/code/game/jobs/job/civilian_vr.dm +++ b/code/game/jobs/job/civilian_vr.dm @@ -259,7 +259,7 @@ alt_titles = list("Performer" = /datum/alt_title/performer, "Musician" = /datum/alt_title/musician, "Stagehand" = /datum/alt_title/stagehand, "Actor" = /datum/alt_title/actor, "Dancer" = /datum/alt_title/dancer, "Singer" = /datum/alt_title/singer, "Magician" = /datum/alt_title/magician, "Comedian" = /datum/alt_title/comedian, "Tragedian" = /datum/alt_title/tragedian, - "Artist" = /datum/alt_title/artist) + "Artist" = /datum/alt_title/artist, "Game Master" = /datum/alt_title/game_master) // Entertainer Alt Titles /datum/alt_title/actor @@ -301,3 +301,106 @@ /datum/alt_title/artist title = "Artist" title_blurb = "An Artist's calling is to create beautiful arts! Whatever form may they take, create and have people astonished with your creativity." + +/datum/alt_title/game_master + title = "Game Master" + title_blurb = "A Game Master provides recreation for the crew by hosting variety of games. From cards to roleplaying to something more personalized." + +////////////////////////////////// +// Entrepreneur +////////////////////////////////// + +/datum/job/entrepreneur + title = "Entrepreneur" + flag = ENTREPRENEUR + departments = list(DEPARTMENT_CIVILIAN) + department_flag = CIVILIAN + faction = "Station" + total_positions = 4 + spawn_positions = 4 + supervisors = "the Head of Personnel" + selection_color = "#515151" + access = list() + minimal_access = list() + pto_type = PTO_CIVILIAN + + outfit_type = /decl/hierarchy/outfit/job/assistant/entrepreneur + job_description = "An entrepreneur is basically a visitor that obtained special permission to offer personal services to people on station. \ + They will offer people these services and, potentially, even demand payment!" + alt_titles = list("Lawyer" = /datum/alt_title/lawyer, "Private Eye" = /datum/alt_title/private_eye, "Bodyguard" = /datum/alt_title/bodyguard, + "Personal Physician" = /datum/alt_title/personal_physician, "Dentist" = /datum/alt_title/dentist, "Fitness Instructor" = /datum/alt_title/fitness_instructor, + "Yoga Teacher" = /datum/alt_title/yoga_teacher, "Masseuse" = /datum/alt_title/masseuse, "Tradesperson" = /datum/alt_title/tradesperson, + "Streamer" = /datum/alt_title/streamer, "Influencer" = /datum/alt_title/influencer, "Paranormal Investigator" = /datum/alt_title/paranormal_investigator, + "Personal Secretary" = /datum/alt_title/personal_secretary, "Stylist" = /datum/alt_title/stylist, "Fisher" = /datum/alt_title/fisher, + "Fortune Teller" = /datum/alt_title/fortune_teller, "Spirit Healer" = /datum/alt_title/spirit_healer) + +/datum/alt_title/lawyer + title = "Lawyer" + title_blurb = "A Lawyer is knowledgable in various legal systems, including station's operations. They can try to offer their legal counsel, although nobody is really obliged to listen." + +/datum/alt_title/private_eye + title = "Private Eye" + title_blurb = "A Private Eye is a detective that has no credentials or equipment. But if someone wants something found without security's knowledge, they are the one to go to." + +/datum/alt_title/bodyguard + title = "Bodyguard" + title_blurb = "A Bodyguard offers service of personal protection. They may not be allowed any weapons, but their own body is weapon enough." + +/datum/alt_title/personal_physician + title = "Personal Physician" + title_blurb = "A Personal Physicial is a doctor dedicated less to Hippocratic Oath and more to the moneymaking grind. Their license may be expired, but the grindset never will be." + +/datum/alt_title/dentist + title = "Dentist" + title_blurb = "A Dentist is a doctor that specializes in oral care. Company may not recognize them as a proper doctor, but surely their customers will." + +/datum/alt_title/fitness_instructor + title = "Fitness Instructor" + title_blurb = "A Fitness Instructor dedicates themselves to improving the health of the crew through physical activity, and boy, do they need the help." + +/datum/alt_title/yoga_teacher + title = "Yoga Teacher" + title_blurb = "A Yoga Teacher is similar to fitness instructor, but rather than turning the round bodies into firm ones, they focus on helping people find balance and harmony." + +/datum/alt_title/masseuse + title = "Masseuse" + title_blurb = "A Masseuse is master of physical therapy and working others' bodies with their hands." + +/datum/alt_title/tradesperson + title = "Tradesperson" + title_blurb = "A Tradesperson is someone attempting to make money via the most obvious act of all - buying and selling. Now if only customs allowed you to bring your goods along..." + +/datum/alt_title/streamer + title = "Streamer" + title_blurb = "A Streamer is here to entertain. Not the crew! Their audience across exonet!" + +/datum/alt_title/influencer + title = "Influencer" + title_blurb = "An Influencer has lucked out with some exonet following, and was given permission to go onstation to provide free exposure. Don't let it go to your head." + +/datum/alt_title/paranormal_investigator + title = "Paranormal Investigator" + title_blurb = "A Paranormal Investigator looks beyond what is accepted by modern science, and searches for the true unknown. Aliens, alternate dimensions, ghosts... The truth is out there!" + +/datum/alt_title/personal_secretary + title = "Personal Secretary" + title_blurb = "A Personal Secretary offers services of general assistance. Although it's doubtful anyone will ever actually need those." + +/datum/alt_title/stylist + title = "Stylist" + title_blurb = "A Stylist offers fashion advice, as well as helps with adjusting appearance of the crew to better suit their beauty standards." + +/datum/alt_title/fisher + title = "Fisher" + title_blurb = "A Fisher is a capable angler, who is good at obtaining large amounts of marine goods. Whether you generously give them to station or attempt to make a quick thaler by selling, it's up to you!" + +/datum/alt_title/fortune_teller + title = "Fortune Teller" + title_blurb = "A Fortune Teller peers into the future, and offers these visions to others. Occasionally those visions may even come true!" + +/datum/alt_title/spirit_healer + title = "Spirit Healer" + title_blurb = "A Spirit Healer offers alternative forms of medicine. Rituals, magic rocks, seances... It totally works. What's that about placebo?" + + + diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index b607a9d0d0..90bef78fc0 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -11,9 +11,9 @@ var/const/ENGINEER =(1<<6) var/const/ATMOSTECH =(1<<7) var/const/AI =(1<<8) var/const/CYBORG =(1<<9) -var/const/CLOWN =(1<<13) //VOREStation Add -var/const/MIME =(1<<14) //VOREStation Add -var/const/INTERN =(1<<15) //VOREStation Add +var/const/CLOWN =(1<<13) +var/const/MIME =(1<<14) +var/const/INTERN =(1<<15) var/const/BLUESHIELD =(1<<16) //YW addition var/const/SECPILOT =(1<<17) //YW addition @@ -30,10 +30,10 @@ var/const/PSYCHIATRIST =(1<<7) var/const/ROBOTICIST =(1<<8) var/const/XENOBIOLOGIST =(1<<9) var/const/PARAMEDIC =(1<<10) -var/const/PATHFINDER =(1<<11) //VOREStation Add -var/const/EXPLORER =(1<<12) //VOREStation Add -var/const/SAR =(1<<13) //VOREStation Add -var/const/XENOBOTANIST =(1<<14) //VOREStation Add +var/const/PATHFINDER =(1<<11) +var/const/EXPLORER =(1<<12) +var/const/SAR =(1<<13) +var/const/XENOBOTANIST =(1<<14) var/const/CIVILIAN =(1<<2) @@ -50,8 +50,9 @@ var/const/LAWYER =(1<<9) var/const/CHAPLAIN =(1<<10) var/const/ASSISTANT =(1<<11) var/const/BRIDGE =(1<<12) -var/const/PILOT =(1<<13) //VOREStation Add -var/const/ENTERTAINER =(1<<14) //VOREStation Add +var/const/PILOT =(1<<13) +var/const/ENTERTAINER =(1<<14) +var/const/ENTREPRENEUR =(1<<15) //YAWN Add START var/const/TALON =(1<<3) diff --git a/code/game/machinery/CableLayer.dm b/code/game/machinery/CableLayer.dm index 20677bb0ff..b64f04d16f 100644 --- a/code/game/machinery/CableLayer.dm +++ b/code/game/machinery/CableLayer.dm @@ -34,7 +34,7 @@ to_chat(user, "You load [result] lengths of cable into [src].") return - if(O.is_wirecutter()) + if(O.has_tool_quality(TOOL_WIRECUTTER)) if(cable && cable.get_amount()) var/m = round(input(usr, "Please specify the length of cable to cut", "Cut cable", min(cable.get_amount(), 30)) as num, 1) m = min(m, cable.get_amount()) diff --git a/code/game/machinery/airconditioner_vr.dm b/code/game/machinery/airconditioner_vr.dm index 364d4bf377..60104c83c8 100644 --- a/code/game/machinery/airconditioner_vr.dm +++ b/code/game/machinery/airconditioner_vr.dm @@ -30,13 +30,13 @@ . += "There is a small display that reads \"[convert_k2c(target_temp)]C\"." /obj/machinery/power/thermoregulator/attackby(obj/item/I, mob/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(default_deconstruction_screwdriver(user,I)) return - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) if(default_deconstruction_crowbar(user,I)) return - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) anchored = !anchored visible_message("\The [src] has been [anchored ? "bolted to the floor" : "unbolted from the floor"] by [user].") playsound(src, I.usesound, 75, 1) diff --git a/code/game/machinery/atm_ret_field.dm b/code/game/machinery/atm_ret_field.dm index 603e6615be..853550b9d4 100644 --- a/code/game/machinery/atm_ret_field.dm +++ b/code/game/machinery/atm_ret_field.dm @@ -41,11 +41,11 @@ field_type = /obj/structure/atmospheric_retention_field/impassable /obj/machinery/atmospheric_field_generator/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_crowbar() && isactive) + if(W.has_tool_quality(TOOL_CROWBAR) && isactive) if(!src) return to_chat(user, "You can't open the ARF-G whilst it's running!") return - if(W.is_crowbar() && !isactive) + if(W.has_tool_quality(TOOL_CROWBAR) && !isactive) if(!src) return to_chat(user, "You [hatch_open? "close" : "open"] \the [src]'s access hatch.") hatch_open = !hatch_open @@ -53,21 +53,21 @@ if(alwaysactive && wires_intact) generate_field() return - if(hatch_open && W.is_multitool()) + if(hatch_open && W.has_tool_quality(TOOL_MULTITOOL)) if(!src) return to_chat(user, "You toggle \the [src]'s activation behavior to [alwaysactive? "emergency" : "always-on"].") alwaysactive = !alwaysactive update_icon() return - if(hatch_open && W.is_wirecutter()) + if(hatch_open && W.has_tool_quality(TOOL_WIRECUTTER)) if(!src) return to_chat(user, "You [wires_intact? "cut" : "mend"] \the [src]'s wires!") wires_intact = !wires_intact update_icon() return - if(hatch_open && istype(W,/obj/item/weapon/weldingtool)) + if(hatch_open && W.has_tool_quality(TOOL_WELDER)) if(!src) return - var/obj/item/weapon/weldingtool/WT = W + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.isOn()) return if(WT.get_fuel() < 5) // uses up 5 fuel. to_chat(user, "You need more fuel to complete this task.") diff --git a/code/game/machinery/atmoalter/canister.dm b/code/game/machinery/atmoalter/canister.dm index bb0858a79e..a7f8a40eeb 100644 --- a/code/game/machinery/atmoalter/canister.dm +++ b/code/game/machinery/atmoalter/canister.dm @@ -239,8 +239,8 @@ update_flag ..() /obj/machinery/portable_atmospherics/canister/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if(istype(W, /obj/item/weapon/weldingtool)) //Vorestart: Deconstructable Canisters - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) //Vorestart: Deconstructable Canisters + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.remove_fuel(0, user)) to_chat(user, "The welding tool must be on to complete this task.") return @@ -255,7 +255,7 @@ update_flag qdel(src) return //Voreend - if(!W.is_wrench() && !istype(W, /obj/item/weapon/tank) && !istype(W, /obj/item/device/analyzer) && !istype(W, /obj/item/device/pda)) + if(!W.has_tool_quality(TOOL_WRENCH) && !istype(W, /obj/item/weapon/tank) && !istype(W, /obj/item/device/analyzer) && !istype(W, /obj/item/device/pda)) visible_message("\The [user] hits \the [src] with \a [W]!") src.health -= W.force src.add_fingerprint(user) diff --git a/code/game/machinery/atmoalter/meter.dm b/code/game/machinery/atmoalter/meter.dm index 25f5e12567..c8b36e6138 100644 --- a/code/game/machinery/atmoalter/meter.dm +++ b/code/game/machinery/atmoalter/meter.dm @@ -105,7 +105,7 @@ return ..() /obj/machinery/meter/attackby(var/obj/item/W, var/mob/user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 50, 1) to_chat(user, "You begin to unfasten \the [src]...") if(do_after(user, 40 * W.toolspeed)) diff --git a/code/game/machinery/atmoalter/portable_atmospherics.dm b/code/game/machinery/atmoalter/portable_atmospherics.dm index 6bdf71c525..a07d0054c3 100644 --- a/code/game/machinery/atmoalter/portable_atmospherics.dm +++ b/code/game/machinery/atmoalter/portable_atmospherics.dm @@ -117,7 +117,7 @@ update_icon() return - else if (W.is_wrench()) + else if (W.has_tool_quality(TOOL_WRENCH)) if(connected_port) disconnect() to_chat(user, "You disconnect \the [src] from the port.") @@ -173,7 +173,7 @@ power_change() return - if(I.is_screwdriver() && removeable_cell) + if(I.has_tool_quality(TOOL_SCREWDRIVER) && removeable_cell) if(!cell) to_chat(user, "There is no power cell installed.") return diff --git a/code/game/machinery/atmoalter/pump_vr.dm b/code/game/machinery/atmoalter/pump_vr.dm index 2c3b5c14d9..fb4acbe9f6 100644 --- a/code/game/machinery/atmoalter/pump_vr.dm +++ b/code/game/machinery/atmoalter/pump_vr.dm @@ -83,7 +83,7 @@ update_connected_network() /obj/machinery/portable_atmospherics/powered/pump/huge/attackby(var/obj/item/I, var/mob/user) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) if(on) to_chat(user, "Turn \the [src] off first!") return @@ -97,7 +97,7 @@ //doesn't use power cells if(istype(I, /obj/item/weapon/cell)) return - if (I.is_screwdriver()) + if (I.has_tool_quality(TOOL_SCREWDRIVER)) return //doesn't hold tanks @@ -111,7 +111,7 @@ name = "Stationary Air Pump" /obj/machinery/portable_atmospherics/powered/pump/huge/stationary/attackby(var/obj/item/I, var/mob/user) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) to_chat(user, "The bolts are too tight for you to unscrew!") return diff --git a/code/game/machinery/atmoalter/scrubber.dm b/code/game/machinery/atmoalter/scrubber.dm index 7ab58e2c88..f27b8983e3 100644 --- a/code/game/machinery/atmoalter/scrubber.dm +++ b/code/game/machinery/atmoalter/scrubber.dm @@ -109,7 +109,7 @@ data["on"] = on ? 1 : 0 data["connected"] = connected_port ? 1 : 0 data["pressure"] = round(air_contents.return_pressure() > 0 ? air_contents.return_pressure() : 0) - + data["rate"] = round(volume_rate) data["minrate"] = round(minrate) data["maxrate"] = round(maxrate) @@ -201,7 +201,7 @@ update_use_power(new_use_power) if(!on) return - + var/power_draw = -1 var/datum/gas_mixture/environment = loc.return_air() @@ -218,7 +218,7 @@ update_connected_network() /obj/machinery/portable_atmospherics/powered/scrubber/huge/attackby(var/obj/item/I as obj, var/mob/user as mob) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) if(on) to_chat(user, "Turn \the [src] off first!") return @@ -232,7 +232,7 @@ //doesn't use power cells if(istype(I, /obj/item/weapon/cell)) return - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) return //doesn't hold tanks @@ -250,7 +250,7 @@ desc += "This one seems to be tightly secured with large bolts." /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/attackby(var/obj/item/I as obj, var/mob/user as mob) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) to_chat(user, "The bolts are too tight for you to unscrew!") return diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index b00966cb92..7b1981eeb2 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -128,7 +128,7 @@ if(panel_open) //Don't eat multitools or wirecutters used on an open lathe. - if(O.is_multitool() || O.is_wirecutter()) + if(O.has_tool_quality(TOOL_MULTITOOL) || O.has_tool_quality(TOOL_WIRECUTTER)) wires.Interact(user) return diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 85f23cb1db..796415d0f3 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -159,7 +159,7 @@ /obj/machinery/camera/attackby(obj/item/W as obj, mob/living/user as mob) update_coverage() // DECONSTRUCTION - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) //to_chat(user, "You start to [panel_open ? "close" : "open"] the camera's panel.") //if(toggle_panel(user)) // No delay because no one likes screwdrivers trying to be hip and have a duration cooldown panel_open = !panel_open @@ -167,10 +167,10 @@ "You screw the camera's panel [panel_open ? "open" : "closed"].") playsound(src, W.usesound, 50, 1) - else if((W.is_wirecutter() || istype(W, /obj/item/device/multitool)) && panel_open) + else if((W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/device/multitool)) && panel_open) interact(user) - else if(istype(W, /obj/item/weapon/weldingtool) && (wires.CanDeconstruct() || (stat & BROKEN))) + else if(W.has_tool_quality(TOOL_WELDER) && (wires.CanDeconstruct() || (stat & BROKEN))) if(weld(W, user)) if(assembly) assembly.loc = src.loc @@ -372,6 +372,7 @@ return null /obj/machinery/camera/proc/weld(var/obj/item/weapon/weldingtool/WT, var/mob/user) + WT = WT.get_welder() if(busy) return 0 diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm index a73eb6fe91..6db595dad4 100644 --- a/code/game/machinery/camera/camera_assembly.dm +++ b/code/game/machinery/camera/camera_assembly.dm @@ -29,7 +29,7 @@ if(0) // State 0 - if(W.is_wrench() && isturf(src.loc)) + if(W.has_tool_quality(TOOL_WRENCH) && isturf(src.loc)) playsound(src, W.usesound, 50, 1) to_chat(user, "You wrench the assembly into place.") anchored = TRUE @@ -40,14 +40,14 @@ if(1) // State 1 - if(istype(W, /obj/item/weapon/weldingtool)) + if(W.has_tool_quality(TOOL_WELDER)) if(weld(W, user)) to_chat(user, "You weld the assembly securely into place.") anchored = TRUE state = 2 return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 50, 1) to_chat(user, "You unattach the assembly from its place.") anchored = FALSE @@ -66,7 +66,7 @@ to_chat(user, "You need 2 coils of wire to wire the assembly.") return - else if(istype(W, /obj/item/weapon/weldingtool)) + else if(W.has_tool_quality(TOOL_WELDER)) if(weld(W, user)) to_chat(user, "You unweld the assembly from its place.") @@ -77,7 +77,7 @@ if(3) // State 3 - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) var/input = sanitize(tgui_input_text(usr, "Which networks would you like to connect this camera to? Separate networks with a comma. No Spaces!\nFor example: "+using_map.station_short+",Security,Secret ", "Set Network", camera_network ? camera_network : NETWORK_DEFAULT)) @@ -115,7 +115,7 @@ break return - else if(W.is_wirecutter()) + else if(W.has_tool_quality(TOOL_WIRECUTTER)) new/obj/item/stack/cable_coil(get_turf(src), 2) playsound(src, W.usesound, 50, 1) @@ -132,7 +132,7 @@ return // Taking out upgrades - else if(W.is_crowbar() && upgrades.len) + else if(W.has_tool_quality(TOOL_CROWBAR) && upgrades.len) var/obj/U = locate(/obj) in upgrades if(U) to_chat(user, "You unattach an upgrade from the assembly.") @@ -154,6 +154,7 @@ ..() /obj/item/weapon/camera_assembly/proc/weld(var/obj/item/weapon/weldingtool/WT, var/mob/user) + WT = WT.get_welder() if(busy) return 0 diff --git a/code/game/machinery/cell_charger.dm b/code/game/machinery/cell_charger.dm index 8439c9ff15..38ceea9f4b 100644 --- a/code/game/machinery/cell_charger.dm +++ b/code/game/machinery/cell_charger.dm @@ -74,7 +74,7 @@ user.visible_message("[user] inserts [charging] into [src].", "You insert [charging] into [src].") chargelevel = -1 update_icon() - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(charging) to_chat(user, "Remove [charging] first!") return diff --git a/code/game/machinery/clawmachine.dm b/code/game/machinery/clawmachine.dm index 1896d37b97..08af125e20 100644 --- a/code/game/machinery/clawmachine.dm +++ b/code/game/machinery/clawmachine.dm @@ -100,7 +100,7 @@ if(busy) to_chat(user,"The claw machine is currently running. ") return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) if(anchored) user.visible_message("[user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 49c917f312..4f5a37f68d 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -250,7 +250,7 @@ user.drop_item() W.forceMove(src) return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(locked && (anchored || occupant)) to_chat(user, "Can not do that while [src] is in use.") else diff --git a/code/game/machinery/computer/ai_core.dm b/code/game/machinery/computer/ai_core.dm index 6dbe833b29..10b8aa1fa8 100644 --- a/code/game/machinery/computer/ai_core.dm +++ b/code/game/machinery/computer/ai_core.dm @@ -15,14 +15,14 @@ switch(state) if(0) - if(P.is_wrench()) + if(P.has_tool_quality(TOOL_WRENCH)) playsound(src, P.usesound, 50, 1) if(do_after(user, 20 * P.toolspeed)) to_chat(user, "You wrench the frame into place.") anchored = TRUE state = 1 - if(istype(P, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = P + if(P.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = P.get_welder() if(!WT.isOn()) to_chat(user, "The welder must be on for this task.") return @@ -33,7 +33,7 @@ new /obj/item/stack/material/plasteel( loc, 4) qdel(src) if(1) - if(P.is_wrench()) + if(P.has_tool_quality(TOOL_WRENCH)) playsound(src, P.usesound, 50, 1) if(do_after(user, 20 * P.toolspeed)) to_chat(user, "You unfasten the frame.") @@ -46,12 +46,12 @@ circuit = P user.drop_item() P.loc = src - if(P.is_screwdriver() && circuit) + if(P.has_tool_quality(TOOL_SCREWDRIVER) && circuit) playsound(src, P.usesound, 50, 1) to_chat(user, "You screw the circuit board into place.") state = 2 icon_state = "2" - if(P.is_crowbar() && circuit) + if(P.has_tool_quality(TOOL_CROWBAR) && circuit) playsound(src, P.usesound, 50, 1) to_chat(user, "You remove the circuit board.") state = 1 @@ -59,7 +59,7 @@ circuit.loc = loc circuit = null if(2) - if(P.is_screwdriver() && circuit) + if(P.has_tool_quality(TOOL_SCREWDRIVER) && circuit) playsound(src, P.usesound, 50, 1) to_chat(user, "You unfasten the circuit board.") state = 1 @@ -78,7 +78,7 @@ to_chat(user, "You add cables to the frame.") return if(3) - if(P.is_wirecutter()) + if(P.has_tool_quality(TOOL_WIRECUTTER)) if (brain) to_chat(user, "Get that brain out of there first") else @@ -145,7 +145,7 @@ to_chat(usr, "Added [P].") icon_state = "3b" - if(P.is_crowbar() && brain) + if(P.has_tool_quality(TOOL_CROWBAR) && brain) playsound(src, P.usesound, 50, 1) to_chat(user, "You remove the brain.") brain.loc = loc @@ -153,7 +153,7 @@ icon_state = "3" if(4) - if(P.is_crowbar()) + if(P.has_tool_quality(TOOL_CROWBAR)) playsound(src, P.usesound, 50, 1) to_chat(user, "You remove the glass panel.") state = 3 @@ -164,7 +164,7 @@ new /obj/item/stack/material/glass/reinforced( loc, 2 ) return - if(P.is_screwdriver()) + if(P.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, P.usesound, 50, 1) to_chat(user, "You connect the monitor.") if(!brain) @@ -232,7 +232,7 @@ GLOBAL_LIST_BOILERPLATE(all_deactivated_AI_cores, /obj/structure/AIcore/deactiva else to_chat(user, "ERROR: Unable to locate artificial intelligence.") return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(anchored) user.visible_message("\The [user] starts to unbolt \the [src] from the plating...") playsound(src, W.usesound, 50, 1) diff --git a/code/game/machinery/computer/aifixer.dm b/code/game/machinery/computer/aifixer.dm index 3ec9e2c841..923dd620a2 100644 --- a/code/game/machinery/computer/aifixer.dm +++ b/code/game/machinery/computer/aifixer.dm @@ -6,7 +6,7 @@ icon_keyboard = "tech_key" icon_screen = "ai-fixer" light_color = LIGHT_COLOR_PINK - + active_power_usage = 1000 /// Variable containing transferred AI @@ -15,7 +15,7 @@ var/restoring = FALSE /obj/machinery/computer/aifixer/attackby(obj/item/I, mob/living/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(occupier) if(stat & (NOPOWER|BROKEN)) to_chat(user, "The screws on [name]'s screen won't budge.") @@ -85,10 +85,10 @@ return TRUE if(!occupier) restoring = FALSE - + if(action) playsound(src, "terminal_type", 50, 1) - + switch(action) if("PRG_beginReconstruction") if(occupier?.health < 100) diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm index 5f4ff28e05..33d8ae2e86 100644 --- a/code/game/machinery/computer/buildandrepair.dm +++ b/code/game/machinery/computer/buildandrepair.dm @@ -13,14 +13,14 @@ /obj/structure/computerframe/attackby(obj/item/P as obj, mob/user as mob) switch(state) if(0) - if(P.is_wrench()) + if(P.has_tool_quality(TOOL_WRENCH)) playsound(src, P.usesound, 50, 1) if(do_after(user, 20 * P.toolspeed)) to_chat(user, "You wrench the frame into place.") src.anchored = TRUE src.state = 1 - if(istype(P, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = P + if(P.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = P.get_welder() if(!WT.remove_fuel(0, user)) to_chat(user, "The welding tool must be on to complete this task.") return @@ -31,7 +31,7 @@ new /obj/item/stack/material/steel( src.loc, 5 ) qdel(src) if(1) - if(P.is_wrench()) + if(P.has_tool_quality(TOOL_WRENCH)) playsound(src, P.usesound, 50, 1) if(do_after(user, 20 * P.toolspeed)) to_chat(user, "You unfasten the frame.") @@ -48,12 +48,12 @@ P.loc = src else to_chat(user, "This frame does not accept circuit boards of this type!") - if(P.is_screwdriver() && circuit) + if(P.has_tool_quality(TOOL_SCREWDRIVER) && circuit) playsound(src, P.usesound, 50, 1) to_chat(user, "You screw the circuit board into place.") src.state = 2 src.icon_state = "2" - if(P.is_crowbar()) && circuit) + if(P.has_tool_quality(TOOL_CROWBAR)) && circuit) playsound(src, P.usesound, 50, 1) to_chat(user, "You remove the circuit board.") src.state = 1 @@ -61,7 +61,7 @@ circuit.loc = src.loc src.circuit = null if(2) - if(P.is_screwdriver() && circuit) + if(P.has_tool_quality(TOOL_SCREWDRIVER) && circuit) playsound(src, P.usesound, 50, 1) to_chat(user, "You unfasten the circuit board.") src.state = 1 @@ -79,7 +79,7 @@ state = 3 icon_state = "3" if(3) - if(P.is_wirecutter()) + if(P.has_tool_quality(TOOL_WIRECUTTER)) playsound(src, P.usesound, 50, 1) to_chat(user, "You remove the cables.") src.state = 2 @@ -100,13 +100,13 @@ src.state = 4 src.icon_state = "4" if(4) - if(P.is_crowbar()) + if(P.has_tool_quality(TOOL_CROWBAR)) playsound(src, P.usesound, 50, 1) to_chat(user, "You remove the glass panel.") src.state = 3 src.icon_state = "3" new /obj/item/stack/material/glass( src.loc, 2 ) - if(P.is_screwdriver()) + if(P.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, P.usesound, 50, 1) to_chat(user, "You connect the monitor.") var/B = new src.circuit.build_path ( src.loc ) diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index 7930231cbf..69c4e279e3 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -41,6 +41,7 @@ // Medical "id_gender" = "Please select new gender identity:", "blood_type" = "Please select new blood type:", + "blood_reagent" = "Please select new blood basis:", "b_dna" = "Please input new DNA:", "mi_dis" = "Please input new minor disabilities:", "mi_dis_d" = "Please summarize minor disabilities:", @@ -159,6 +160,7 @@ medical["fields"] = fields fields[++fields.len] = MED_FIELD("Gender identity", active2.fields["id_gender"], "id_gender", TRUE) fields[++fields.len] = MED_FIELD("Blood Type", active2.fields["b_type"], "blood_type", FALSE) + fields[++fields.len] = MED_FIELD("Blood Basis", active2.fields["blood_reagent"], "blood_reagent", FALSE) fields[++fields.len] = MED_FIELD("DNA", active2.fields["b_dna"], "b_dna", TRUE) fields[++fields.len] = MED_FIELD("Brain Type", active2.fields["brain_type"], "brain_type", TRUE) fields[++fields.len] = MED_FIELD("Important Notes", active2.fields["notes"], "notes", TRUE) @@ -301,6 +303,7 @@ R.fields["id"] = active1.fields["id"] R.name = "Medical Record #[R.fields["id"]]" R.fields["b_type"] = "Unknown" + R.fields["blood_reagent"] = "Unknown" R.fields["b_dna"] = "Unknown" R.fields["mi_dis"] = "None" R.fields["mi_dis_d"] = "No minor disabilities have been declared." @@ -431,6 +434,7 @@ P.info += {"
\n
Medical Data

\nGender Identity: [active2.fields["id_gender"]]
\nBlood Type: [active2.fields["b_type"]] +
\nBlood Basis: [active2.fields["blood_reagent"]]
\nDNA: [active2.fields["b_dna"]]
\n
\nMinor Disabilities: [active2.fields["mi_dis"]]
\nDetails: [active2.fields["mi_dis_d"]]
\n diff --git a/code/game/machinery/computer/message.dm b/code/game/machinery/computer/message.dm index 27009d097b..a5dad720ec 100644 --- a/code/game/machinery/computer/message.dm +++ b/code/game/machinery/computer/message.dm @@ -34,7 +34,7 @@ return if(!istype(user)) return - if(O.is_screwdriver() && emag) + if(O.has_tool_quality(TOOL_SCREWDRIVER) && emag) //Stops people from just unscrewing the monitor and putting it back to get the console working again. to_chat(user, "It is too hot to mess with!") return @@ -101,7 +101,7 @@ if(linkedServer && auth) data["linkedServer"]["active"] = linkedServer.active data["linkedServer"]["broke"] = linkedServer.stat & (NOPOWER|BROKEN) - + var/list/pda_msgs = list() for(var/datum/data_pda_msg/pda in linkedServer.pda_msgs) pda_msgs.Add(list(list( @@ -111,7 +111,7 @@ "message" = pda.message, ))) data["linkedServer"]["pda_msgs"] = pda_msgs - + var/list/rc_msgs = list() for(var/datum/data_rc_msg/rc in linkedServer.rc_msgs) rc_msgs.Add(list(list( @@ -182,7 +182,7 @@ /obj/machinery/computer/message_monitor/tgui_act(action, params) if(..()) return TRUE - + switch(action) if("cleartemp") temp = null @@ -218,14 +218,14 @@ spawn(100*length(linkedServer.decryptkey)) if(src && linkedServer && usr) BruteForce(usr) - + if(!auth) return - + if(!linkedServer || linkedServer.stat & (NOPOWER|BROKEN)) temp = noserver return TRUE - + switch(action) //Turn the server on/off. if("active") @@ -277,7 +277,7 @@ var/obj/item/device/pda/P = locate(ref) if(!istype(P) || !P.owner || P.hidden) return FALSE - + var/datum/data/pda/app/messenger/M = P.find_program(/datum/data/pda/app/messenger) if(!M || M.toff) return FALSE @@ -316,7 +316,7 @@ //Sender is faking as someone who exists else linkedServer.send_pda_message("[customrecepient.owner]", "[PDARec.owner]","[custommessage]") - + var/datum/data/pda/app/messenger/M = customrecepient.find_program(/datum/data/pda/app/messenger) if(M) M.receive_message(list("sent" = 0, "owner" = "[PDARec.owner]", "job" = "[customjob]", "message" = "[custommessage]", "target" = "\ref[PDARec]"), "\ref[PDARec]") diff --git a/code/game/machinery/computer/pod.dm b/code/game/machinery/computer/pod.dm index f37f0f6c97..c074256475 100644 --- a/code/game/machinery/computer/pod.dm +++ b/code/game/machinery/computer/pod.dm @@ -50,7 +50,7 @@ /* /obj/machinery/computer/pod/attackby(I as obj, user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) if(do_after(user, 20)) if(stat & BROKEN) diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index 6a61f01502..bf6d5080d7 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -41,7 +41,7 @@ state = 2 icon_state = "box_1" else - if(P.is_wrench()) + if(P.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 75, 1) to_chat(user, "You dismantle the frame") new /obj/item/stack/material/steel(src.loc, 5) @@ -76,7 +76,7 @@ else to_chat(user, "This frame does not accept circuit boards of this type!") else - if(P.is_wirecutter()) + if(P.has_tool_quality(TOOL_WIRECUTTER)) playsound(src, P.usesound, 50, 1) to_chat(user, "You remove the cables.") state = 1 @@ -85,7 +85,7 @@ A.amount = 5 if(3) - if(P.is_crowbar()) + if(P.has_tool_quality(TOOL_CROWBAR)) playsound(src, P.usesound, 50, 1) state = 2 circuit.loc = src.loc @@ -101,7 +101,7 @@ components = null icon_state = "box_1" else - if(P.is_screwdriver()) + if(P.has_tool_quality(TOOL_SCREWDRIVER)) var/component_check = 1 for(var/R in req_components) if(req_components[R] > 0) diff --git a/code/game/machinery/deployable.dm b/code/game/machinery/deployable.dm index a72d814c79..63beb67797 100644 --- a/code/game/machinery/deployable.dm +++ b/code/game/machinery/deployable.dm @@ -47,7 +47,7 @@ Deployable items visible_message("BZZzZZzZZzZT") return return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(health < maxhealth) health = maxhealth emagged = 0 diff --git a/code/game/machinery/doorbell_vr.dm b/code/game/machinery/doorbell_vr.dm index 906c41ea6d..fbcc58b79e 100644 --- a/code/game/machinery/doorbell_vr.dm +++ b/code/game/machinery/doorbell_vr.dm @@ -136,7 +136,7 @@ var/obj/item/device/multitool/M = W M.connectable = src to_chat(user, "You save the data in \the [M]'s buffer.") - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) to_chat(user, "You start to unwrench \the [src].") playsound(src, 'sound/items/Ratchet.ogg', 50, 1) if(do_after(user, 15) && !QDELETED(src)) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index e182c3845c..a177ad3a89 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -8,15 +8,16 @@ /obj/machinery/door/airlock name = "Airlock" + description_info = "If you hold left alt whilst left-clicking on an airlock, you can ring the doorbell to announce your presence to anyone on the other side! Alternately if you are on HARM intent when doing this, you will bang loudly on the door!

AIs and Cyborgs can also quickly open/close, bolt/unbolt, and electrify/de-electrify doors at a distance by holding left shift, left control, or left alt respectively whilst left-clicking." icon = 'icons/obj/doors/Doorint.dmi' icon_state = "door_closed" power_channel = ENVIRON explosion_resistance = 10 - + // Doors do their own stuff bullet_vulnerability = 0 - + blocks_emissive = EMISSIVE_BLOCK_GENERIC // Not quite as nice as /tg/'s custom masks. We should make those sometime var/aiControlDisabled = 0 //If 1, AI control is disabled until the AI hacks back in and disables the lock. If 2, the AI has bypassed the lock. If -1, the control is enabled but the AI had bypassed it earlier, so if it is disabled again the AI would have no trouble getting back in. @@ -1140,8 +1141,8 @@ About the new airlock wires panel: if(istype(C, /mob/living)) ..() return - if(!repairing && istype(C, /obj/item/weapon/weldingtool) && !( src.operating > 0 ) && src.density) - var/obj/item/weapon/weldingtool/W = C + if(!repairing && C.has_tool_quality(TOOL_WELDER) && !( src.operating > 0 ) && src.density) + var/obj/item/weapon/weldingtool/W = C.get_welder() if(W.remove_fuel(0,user)) if(!src.welded) src.welded = 1 @@ -1152,7 +1153,7 @@ About the new airlock wires panel: return else return - else if(C.is_screwdriver()) + else if(C.has_tool_quality(TOOL_SCREWDRIVER)) if (src.p_open) if (stat & BROKEN) to_chat(usr, "The panel is broken and cannot be closed.") @@ -1166,7 +1167,7 @@ About the new airlock wires panel: playsound(src, C.usesound, 50, 1) src.update_icon() return src.attack_hand(user) - else if(C.is_wirecutter()) + else if(C.has_tool_quality(TOOL_WIRECUTTER)) return src.attack_hand(user) else if(istype(C, /obj/item/device/multitool)) return src.attack_hand(user) @@ -1175,7 +1176,7 @@ About the new airlock wires panel: else if(istype(C, /obj/item/weapon/pai_cable)) // -- TLE var/obj/item/weapon/pai_cable/cable = C cable.plugin(src, user) - else if(!repairing && C.is_crowbar()) + else if(!repairing && C.has_tool_quality(TOOL_CROWBAR)) if(can_remove_electronics()) playsound(src, C.usesound, 75, 1) user.visible_message("[user] removes the electronics from the airlock assembly.", "You start to remove electronics from the airlock assembly.") diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index fa31ef365f..2e31ea43f6 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -259,12 +259,12 @@ return - if(repairing && istype(I, /obj/item/weapon/weldingtool)) + if(repairing && I.has_tool_quality(TOOL_WELDER)) if(!density) to_chat(user, "\The [src] must be closed before you can repair it.") return - var/obj/item/weapon/weldingtool/welder = I + var/obj/item/weapon/weldingtool/welder = I.get_welder() if(welder.remove_fuel(0,user)) to_chat(user, "You start to fix dents and weld \the [get_material_name()] into place.") playsound(src, welder.usesound, 50, 1) @@ -275,7 +275,7 @@ repairing = 0 return - if(repairing && I.is_crowbar()) + if(repairing && I.has_tool_quality(TOOL_CROWBAR)) var/datum/material/mat = get_material() var/obj/item/stack/material/repairing_sheet = mat.place_sheet(loc, repairing) repairing = 0 diff --git a/code/game/machinery/doors/door_vr.dm b/code/game/machinery/doors/door_vr.dm index 1a504065cc..7a2ba190cd 100644 --- a/code/game/machinery/doors/door_vr.dm +++ b/code/game/machinery/doors/door_vr.dm @@ -69,7 +69,7 @@ return TRUE - if(reinforcing && istype(I, /obj/item/weapon/weldingtool)) + if(reinforcing && I.has_tool_quality(TOOL_WELDER)) if(!density) to_chat(user, "\The [src] must be closed before you can reinforce it.") return TRUE @@ -78,7 +78,7 @@ to_chat(user, "You will need more plasteel to reinforce \the [src].") return TRUE - var/obj/item/weapon/weldingtool/welder = I + var/obj/item/weapon/weldingtool/welder = I.get_welder() if(welder.remove_fuel(0,user)) to_chat(user, "You start weld \the plasteel into place.") playsound(src, welder.usesound, 50, 1) @@ -89,7 +89,7 @@ reinforcing = 0 return TRUE - if(reinforcing && I.is_crowbar()) + if(reinforcing && I.has_tool_quality(TOOL_CROWBAR)) var/obj/item/stack/material/plasteel/reinforcing_sheet = new /obj/item/stack/material/plasteel(src.loc, reinforcing) reinforcing = 0 to_chat(user, "You remove \the [reinforcing_sheet].") diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm index 96609e02a5..b8780d1e5e 100644 --- a/code/game/machinery/doors/firedoor.dm +++ b/code/game/machinery/doors/firedoor.dm @@ -57,7 +57,7 @@ if(F != src) log_debug("Duplicate firedoors at [x],[y],[z]") return INITIALIZE_HINT_QDEL - + var/area/A = get_area(src) ASSERT(istype(A)) @@ -80,7 +80,7 @@ /obj/machinery/door/firedoor/examine(mob/user) . = ..() - + if(!Adjacent(user)) return . @@ -249,10 +249,10 @@ return //Don't open the door if we're putting tape on it to tell people 'don't open the door'. if(operating) return//Already doing something. - if(istype(C, /obj/item/weapon/weldingtool) && !repairing) + if(C.has_tool_quality(TOOL_WELDER) && !repairing) if(prying) to_chat(user, "Someone's busy prying that [density ? "open" : "closed"]!") - var/obj/item/weapon/weldingtool/W = C + var/obj/item/weapon/weldingtool/W = C.get_welder() if(W.remove_fuel(0, user)) blocked = !blocked user.visible_message("\The [user] [blocked ? "welds" : "unwelds"] \the [src] with \a [W].",\ @@ -262,7 +262,7 @@ update_icon() return - if(density && C.is_screwdriver()) + if(density && C.has_tool_quality(TOOL_SCREWDRIVER)) hatch_open = !hatch_open playsound(src, C.usesound, 50, 1) user.visible_message("[user] has [hatch_open ? "opened" : "closed"] \the [src] maintenance hatch.", @@ -270,7 +270,7 @@ update_icon() return - if(blocked && C.is_crowbar() && !repairing) + if(blocked && C.has_tool_quality(TOOL_CROWBAR) && !repairing) if(!hatch_open) to_chat(user, "You must open the maintenance hatch first!") else @@ -304,7 +304,7 @@ if(operating) return - if(blocked && C.is_crowbar()) + if(blocked && C.has_tool_quality(TOOL_CROWBAR)) user.visible_message("\The [user] pries at \the [src] with \a [C], but \the [src] is welded in place!",\ "You try to pry \the [src] [density ? "open" : "closed"], but it is welded in place!",\ "You hear someone struggle and metal straining.") @@ -326,7 +326,7 @@ update_icon() playsound(src, C.usesound, 100, 1) if(do_after(user,30 * C.toolspeed)) - if(C.is_crowbar()) + if(C.has_tool_quality(TOOL_CROWBAR)) if(stat & (BROKEN|NOPOWER) || !density) user.visible_message("\The [user] forces \the [src] [density ? "open" : "closed"] with \a [C]!",\ "You force \the [src] [density ? "open" : "closed"] with \the [C]!",\ diff --git a/code/game/machinery/doors/firedoor_assembly.dm b/code/game/machinery/doors/firedoor_assembly.dm index 829cce4e7c..e6c37c7e51 100644 --- a/code/game/machinery/doors/firedoor_assembly.dm +++ b/code/game/machinery/doors/firedoor_assembly.dm @@ -31,7 +31,7 @@ wired = 1 to_chat(user, "You wire \the [src].") - else if(C.is_wirecutter() && wired ) + else if(C.has_tool_quality(TOOL_WIRECUTTER) && wired ) playsound(src, C.usesound, 100, 1) user.visible_message("[user] cuts the wires from \the [src].", "You start to cut the wires from \the [src].") @@ -54,14 +54,14 @@ qdel(src) else to_chat(user, "You must secure \the [src] first!") - else if(C.is_wrench()) + else if(C.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, C.usesound, 50, 1) user.visible_message("[user] has [anchored ? "" : "un" ]secured \the [src]!", "You have [anchored ? "" : "un" ]secured \the [src]!") update_icon() - else if((glass || !anchored) && istype(C, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = C + else if((glass || !anchored) && C.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = C.get_welder() if(WT.remove_fuel(0, user)) playsound(src, WT.usesound, 50, 1) if(glass) diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index 822e950d63..8175800373 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -189,8 +189,8 @@ if(istype(I)) // Fixing. - if(istype(I, /obj/item/weapon/weldingtool) && user.a_intent == I_HELP) - var/obj/item/weapon/weldingtool/WT = I + if(I.has_tool_quality(TOOL_WELDER) && user.a_intent == I_HELP) + var/obj/item/weapon/weldingtool/WT = I.get_welder() if(health < maxhealth) if(WT.remove_fuel(1 ,user)) to_chat(user, "You begin repairing [src]...") @@ -215,7 +215,7 @@ return 1 //If it's opened/emagged, crowbar can pry it out of its frame. - if (!density && I.is_crowbar()) + if (!density && I.has_tool_quality(TOOL_CROWBAR)) playsound(src, I.usesound, 50, 1) user.visible_message("[user] begins prying the windoor out of the frame.", "You start to pry the windoor out of the frame.") if (do_after(user,40 * I.toolspeed)) diff --git a/code/game/machinery/exonet_node.dm b/code/game/machinery/exonet_node.dm index 1eda308142..a3eb739983 100644 --- a/code/game/machinery/exonet_node.dm +++ b/code/game/machinery/exonet_node.dm @@ -78,9 +78,9 @@ // Parameters: 2 (I - the item being whacked against the machine, user - the person doing the whacking) // Description: Handles deconstruction. /obj/machinery/exonet_node/attackby(obj/item/I, mob/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) default_deconstruction_screwdriver(user, I) - else if(I.is_crowbar()) + else if(I.has_tool_quality(TOOL_CROWBAR)) default_deconstruction_crowbar(user, I) else ..() diff --git a/code/game/machinery/flasher.dm b/code/game/machinery/flasher.dm index 848108285b..6668d1cf39 100644 --- a/code/game/machinery/flasher.dm +++ b/code/game/machinery/flasher.dm @@ -35,7 +35,7 @@ //Don't want to render prison breaks impossible /obj/machinery/flasher/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) add_fingerprint(user) disable = !disable if(disable) @@ -107,7 +107,7 @@ flash() /obj/machinery/flasher/portable/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) add_fingerprint(user) anchored = !anchored @@ -115,7 +115,7 @@ user.show_message(text("[src] can now be moved.")) cut_overlays() unsense_proximity(callback = /atom/proc/HasProximity) - + else if(anchored) user.show_message(text("[src] is now secured.")) add_overlay("[base_state]-s") diff --git a/code/game/machinery/floodlight.dm b/code/game/machinery/floodlight.dm index a5cc7d6750..3c4b3a7a13 100644 --- a/code/game/machinery/floodlight.dm +++ b/code/game/machinery/floodlight.dm @@ -102,7 +102,7 @@ update_icon() /obj/machinery/floodlight/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(!open) if(unlocked) unlocked = 0 @@ -111,7 +111,7 @@ unlocked = 1 to_chat(user, "You unscrew the battery panel.") - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) if(unlocked) if(open) open = 0 diff --git a/code/game/machinery/floor_light.dm b/code/game/machinery/floor_light.dm index a870245be9..1722510df0 100644 --- a/code/game/machinery/floor_light.dm +++ b/code/game/machinery/floor_light.dm @@ -23,11 +23,11 @@ var/list/floor_light_cache = list() anchored = TRUE /obj/machinery/floor_light/attackby(var/obj/item/W, var/mob/user) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) anchored = !anchored visible_message("\The [user] has [anchored ? "attached" : "detached"] \the [src].") - else if(istype(W, /obj/item/weapon/weldingtool) && (damaged || (stat & BROKEN))) - var/obj/item/weapon/weldingtool/WT = W + else if(W.has_tool_quality(TOOL_WELDER) && (damaged || (stat & BROKEN))) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.remove_fuel(0, user)) to_chat(user, "\The [src] must be on to complete this task.") return diff --git a/code/game/machinery/floorlayer.dm b/code/game/machinery/floorlayer.dm index dfbf3c38df..38da6b057f 100644 --- a/code/game/machinery/floorlayer.dm +++ b/code/game/machinery/floorlayer.dm @@ -34,7 +34,7 @@ return /obj/machinery/floorlayer/attackby(var/obj/item/W as obj, var/mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) var/m = tgui_input_list(usr, "Choose work mode", "Mode", mode) mode[m] = !mode[m] var/O = mode[m] @@ -47,7 +47,7 @@ TakeTile(T) return - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) if(!length(contents)) to_chat(user, "\The [src] is empty.") else @@ -58,7 +58,7 @@ T = null return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) T = tgui_input_list(usr, "Choose tile type.", "Tiles", contents) return ..() diff --git a/code/game/machinery/frame.dm b/code/game/machinery/frame.dm index 43fd737eaf..3b6caffcf9 100644 --- a/code/game/machinery/frame.dm +++ b/code/game/machinery/frame.dm @@ -300,7 +300,7 @@ update_icon() /obj/structure/frame/attackby(obj/item/P as obj, mob/user as mob) - if(P.is_wrench()) + if(P.has_tool_quality(TOOL_WRENCH)) if(state == FRAME_PLACED && !anchored) to_chat(user, "You start to wrench the frame into place.") playsound(src, P.usesound, 50, 1) @@ -320,9 +320,9 @@ to_chat(user, "You unfasten the frame.") anchored = FALSE - else if(istype(P, /obj/item/weapon/weldingtool)) + else if(P.has_tool_quality(TOOL_WELDER)) if(state == FRAME_PLACED) - var/obj/item/weapon/weldingtool/WT = P + var/obj/item/weapon/weldingtool/WT = P.get_welder() if(WT.remove_fuel(0, user)) playsound(src, P.usesound, 50, 1) if(do_after(user, 20 * P.toolspeed)) @@ -353,7 +353,7 @@ to_chat(user, "This frame does not accept circuit boards of this type!") return - else if(P.is_screwdriver()) + else if(P.has_tool_quality(TOOL_SCREWDRIVER)) if(state == FRAME_UNFASTENED) if(need_circuit && circuit) playsound(src, P.usesound, 50, 1) @@ -448,7 +448,7 @@ qdel(src) return - else if(P.is_crowbar()) + else if(P.has_tool_quality(TOOL_CROWBAR)) if(state == FRAME_UNFASTENED) if(need_circuit && circuit) playsound(src, P.usesound, 50, 1) @@ -525,7 +525,7 @@ break to_chat(user, desc) - else if(P.is_wirecutter()) + else if(P.has_tool_quality(TOOL_WIRECUTTER)) if(state == FRAME_WIRED) if( \ frame_type.frame_class == FRAME_CLASS_COMPUTER || \ diff --git a/code/game/machinery/holoposter.dm b/code/game/machinery/holoposter.dm index a5174380d2..9b32fbb371 100644 --- a/code/game/machinery/holoposter.dm +++ b/code/game/machinery/holoposter.dm @@ -83,7 +83,7 @@ GLOBAL_LIST_EMPTY(holoposters) src.add_fingerprint(user) if(stat & (NOPOWER)) return - if (W.is_multitool()) + if (W.has_tool_quality(TOOL_MULTITOOL)) playsound(src, 'sound/items/penclick.ogg', 60, 1) icon_state = tgui_input_list(usr, "Available Posters", "Holographic Poster", postertypes + "random") if(!Adjacent(user)) diff --git a/code/game/machinery/igniter.dm b/code/game/machinery/igniter.dm index 060bd029fc..52b313497a 100755 --- a/code/game/machinery/igniter.dm +++ b/code/game/machinery/igniter.dm @@ -72,7 +72,7 @@ // sd_SetLuminosity(0) /obj/machinery/sparker/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) add_fingerprint(user) disable = !disable playsound(src, W.usesound, 50, 1) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index f3149dc78a..51a1f3fb98 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -66,7 +66,7 @@ update_icon() return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) to_chat(user, "You start to dismantle the IV drip.") if(do_after(user, 15)) diff --git a/code/game/machinery/jukebox.dm b/code/game/machinery/jukebox.dm index 0e184683ec..52bbb8c634 100644 --- a/code/game/machinery/jukebox.dm +++ b/code/game/machinery/jukebox.dm @@ -108,11 +108,11 @@ return if(default_deconstruction_crowbar(user, W)) return - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) return wires.Interact(user) if(istype(W, /obj/item/device/multitool)) return wires.Interact(user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(playing) StopPlaying() user.visible_message("[user] has [anchored ? "un" : ""]secured \the [src].", "You [anchored ? "un" : ""]secure \the [src].") @@ -270,7 +270,7 @@ return if(default_deconstruction_crowbar(user, W)) return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(playing) StopPlaying() user.visible_message("[user] has [anchored ? "un" : ""]secured \the [src].", "You [anchored ? "un" : ""]secure \the [src].") diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index 6ceab53895..00010da9cc 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -365,7 +365,7 @@ Class Procs: // Default behavior for wrenching down machines. Supports both delay and instant modes. /obj/machinery/proc/default_unfasten_wrench(var/mob/user, var/obj/item/W, var/time = 0) - if(!W.is_wrench()) + if(!W.has_tool_quality(TOOL_WRENCH)) return FALSE if(panel_open) return FALSE // Close panel first! @@ -385,14 +385,14 @@ Class Procs: return TRUE /obj/machinery/proc/default_deconstruction_crowbar(var/mob/user, var/obj/item/C) - if(!C.is_crowbar()) + if(!C.has_tool_quality(TOOL_CROWBAR)) return 0 if(!panel_open) return 0 . = dismantle() /obj/machinery/proc/default_deconstruction_screwdriver(var/mob/user, var/obj/item/S) - if(!S.is_screwdriver()) + if(!S.has_tool_quality(TOOL_SCREWDRIVER)) return 0 playsound(src, S.usesound, 50, 1) panel_open = !panel_open @@ -401,7 +401,7 @@ Class Procs: return 1 /obj/machinery/proc/computer_deconstruction_screwdriver(var/mob/user, var/obj/item/S) - if(!S.is_screwdriver()) + if(!S.has_tool_quality(TOOL_SCREWDRIVER)) return 0 if(!circuit) return 0 @@ -416,7 +416,7 @@ Class Procs: . = dismantle() /obj/machinery/proc/alarm_deconstruction_screwdriver(var/mob/user, var/obj/item/S) - if(!S.is_screwdriver()) + if(!S.has_tool_quality(TOOL_SCREWDRIVER)) return 0 playsound(src, S.usesound, 50, 1) panel_open = !panel_open @@ -425,7 +425,7 @@ Class Procs: return 1 /obj/machinery/proc/alarm_deconstruction_wirecutters(var/mob/user, var/obj/item/W) - if(!W.is_wirecutter()) + if(!W.has_tool_quality(TOOL_WIRECUTTER)) return 0 if(!panel_open) return 0 diff --git a/code/game/machinery/navbeacon.dm b/code/game/machinery/navbeacon.dm index b0a1588b4d..79c8cdf738 100644 --- a/code/game/machinery/navbeacon.dm +++ b/code/game/machinery/navbeacon.dm @@ -72,7 +72,7 @@ var/global/list/navbeacons = list() // no I don't like putting this in, but it w if(!T.is_plating()) return // prevent intraction when T-scanner revealed - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) open = !open playsound(src, I.usesound, 50, 1) user.visible_message("[user] [open ? "opens" : "closes"] the beacon's cover.", "You [open ? "open" : "close"] the beacon's cover.") diff --git a/code/game/machinery/nuclear_bomb.dm b/code/game/machinery/nuclear_bomb.dm index b9646235c0..1784635d59 100644 --- a/code/game/machinery/nuclear_bomb.dm +++ b/code/game/machinery/nuclear_bomb.dm @@ -55,7 +55,7 @@ var/bomb_set return /obj/machinery/nuclearbomb/attackby(obj/item/weapon/O as obj, mob/user as mob) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, O.usesound, 50, 1) add_fingerprint(user) if(auth) @@ -78,7 +78,7 @@ var/bomb_set flick("nuclearbombc", src) return - if(O.is_wirecutter() || istype(O, /obj/item/device/multitool)) + if(O.has_tool_quality(TOOL_WIRECUTTER) || istype(O, /obj/item/device/multitool)) if(opened == 1) nukehack_win(user) return @@ -94,9 +94,9 @@ var/bomb_set if(anchored) switch(removal_stage) if(0) - if(istype(O,/obj/item/weapon/weldingtool)) + if(O.has_tool_quality(TOOL_WELDER)) - var/obj/item/weapon/weldingtool/WT = O + var/obj/item/weapon/weldingtool/WT = O.get_welder() if(!WT.isOn()) return if(WT.get_fuel() < 5) // uses up 5 fuel. to_chat(user, "You need more fuel to complete this task.") @@ -111,7 +111,7 @@ var/bomb_set return if(1) - if(O.is_crowbar()) + if(O.has_tool_quality(TOOL_CROWBAR)) user.visible_message("[user] starts forcing open the bolt covers on [src].", "You start forcing open the anchoring bolt covers with [O]...") playsound(src, O.usesound, 50, 1) @@ -122,9 +122,9 @@ var/bomb_set return if(2) - if(istype(O,/obj/item/weapon/weldingtool)) + if(O.has_tool_quality(TOOL_WELDER)) - var/obj/item/weapon/weldingtool/WT = O + var/obj/item/weapon/weldingtool/WT = O.get_welder() if(!WT.isOn()) return if(WT.get_fuel() < 5) // uses up 5 fuel. to_chat(user, "You need more fuel to complete this task.") @@ -139,7 +139,7 @@ var/bomb_set return if(3) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) user.visible_message("[user] begins unwrenching the anchoring bolts on [src].", "You begin unwrenching the anchoring bolts...") playsound(src, O.usesound, 50, 1) @@ -150,7 +150,7 @@ var/bomb_set return if(4) - if(O.is_crowbar()) + if(O.has_tool_quality(TOOL_CROWBAR)) user.visible_message("[user] begins lifting [src] off of the anchors.", "You begin lifting the device off the anchors...") playsound(src, O.usesound, 50, 1) @@ -262,7 +262,7 @@ var/bomb_set visible_message("The [src] emits a quiet whirling noise!") if(href_list["act"] == "wire") var/obj/item/I = usr.get_active_hand() - if(!I.is_wirecutter()) + if(!I.has_tool_quality(TOOL_WIRECUTTER)) to_chat(usr, "You need wirecutters!") else wires[temp_wire] = !wires[temp_wire] diff --git a/code/game/machinery/oxygen_pump.dm b/code/game/machinery/oxygen_pump.dm index 3673462534..f2dc3923ae 100644 --- a/code/game/machinery/oxygen_pump.dm +++ b/code/game/machinery/oxygen_pump.dm @@ -128,7 +128,7 @@ return 1 /obj/machinery/oxygen_pump/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) stat ^= MAINT user.visible_message("\The [user] [(stat & MAINT) ? "opens" : "closes"] \the [src].", "You [(stat & MAINT) ? "open" : "close"] \the [src].") icon_state = (stat & MAINT) ? icon_state_open : icon_state_closed diff --git a/code/game/machinery/pda_multicaster.dm b/code/game/machinery/pda_multicaster.dm index ef7612bf87..d8a75ebedc 100644 --- a/code/game/machinery/pda_multicaster.dm +++ b/code/game/machinery/pda_multicaster.dm @@ -39,9 +39,9 @@ icon_state = "[initial(icon_state)]_off" /obj/machinery/pda_multicaster/attackby(obj/item/I, mob/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) default_deconstruction_screwdriver(user, I) - else if(I.is_crowbar()) + else if(I.has_tool_quality(TOOL_CROWBAR)) default_deconstruction_crowbar(user, I) else ..() diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index f5f2532080..b86ed67519 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -166,7 +166,7 @@ Buildable meters return ..() /obj/item/pipe/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) return wrench_act(user, W) return ..() @@ -255,7 +255,7 @@ Buildable meters var/piping_layer = PIPING_LAYER_DEFAULT /obj/item/pipe_meter/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) return wrench_act(user, W) return ..() diff --git a/code/game/machinery/pipe/pipe_dispenser.dm b/code/game/machinery/pipe/pipe_dispenser.dm index 8827dc8782..e9cb400746 100644 --- a/code/game/machinery/pipe/pipe_dispenser.dm +++ b/code/game/machinery/pipe/pipe_dispenser.dm @@ -78,11 +78,11 @@ if("p_layer") p_layer = text2num(params["p_layer"]) if("dispense_pipe") - if(!wait) + if(!wait) var/datum/pipe_recipe/recipe = locate(params["ref"]) if(!istype(recipe)) return - + var/target_dir = NORTH if(params["bent"]) target_dir = NORTHEAST @@ -116,7 +116,7 @@ user.drop_item() qdel(W) return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if (unwrenched==0) playsound(src, W.usesound, 50, 1) to_chat(user, "You begin to unfasten \the [src] from the floor...") diff --git a/code/game/machinery/pipe/pipelayer.dm b/code/game/machinery/pipe/pipelayer.dm index bcc1f770a3..7a4951f065 100644 --- a/code/game/machinery/pipe/pipelayer.dm +++ b/code/game/machinery/pipe/pipelayer.dm @@ -81,12 +81,12 @@ return if(default_part_replacement(user, W)) return - if (!panel_open && W.is_wrench()) + if (!panel_open && W.has_tool_quality(TOOL_WRENCH)) P_type_t = tgui_input_list(usr, "Choose pipe type", "Pipe type", Pipes) P_type = Pipes[P_type_t] user.visible_message("[user] has set \the [src] to manufacture [P_type_t].", "You set \the [src] to manufacture [P_type_t].") return - if(!panel_open && W.is_crowbar()) + if(!panel_open && W.has_tool_quality(TOOL_CROWBAR)) a_dis = !a_dis user.visible_message("[user] has [!a_dis?"de":""]activated auto-dismantling.", "You [!a_dis?"de":""]activate auto-dismantling.") return diff --git a/code/game/machinery/pointdefense.dm b/code/game/machinery/pointdefense.dm index 32883740b2..42d7d0550f 100644 --- a/code/game/machinery/pointdefense.dm +++ b/code/game/machinery/pointdefense.dm @@ -93,7 +93,7 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/power/pointdefense) return data /obj/machinery/pointdefense_control/attackby(var/obj/item/W, var/mob/user) - if(W?.is_multitool()) + if(W?.has_tool_quality(TOOL_MULTITOOL)) var/new_ident = tgui_input_text(user, "Enter a new ident tag.", "[src]", id_tag, MAX_NAME_LEN) new_ident = sanitize(new_ident,MAX_NAME_LEN) if(new_ident && new_ident != id_tag && user.Adjacent(src) && CanInteract(user, GLOB.tgui_physical_state)) @@ -211,7 +211,7 @@ GLOBAL_LIST_BOILERPLATE(pointdefense_turrets, /obj/machinery/power/pointdefense) return PDC /obj/machinery/power/pointdefense/attackby(var/obj/item/W, var/mob/user) - if(W?.is_multitool()) + if(W?.has_tool_quality(TOOL_MULTITOOL)) var/new_ident = tgui_input_text(user, "Enter a new ident tag.", "[src]", id_tag, MAX_NAME_LEN) new_ident = sanitize(new_ident,MAX_NAME_LEN) if(new_ident && new_ident != id_tag && user.Adjacent(src) && CanInteract(user, GLOB.tgui_physical_state)) diff --git a/code/game/machinery/portable_turret.dm b/code/game/machinery/portable_turret.dm index 58c5b054ed..eccf4df786 100644 --- a/code/game/machinery/portable_turret.dm +++ b/code/game/machinery/portable_turret.dm @@ -487,7 +487,7 @@ /obj/machinery/porta_turret/attackby(obj/item/I, mob/user) if(stat & BROKEN) - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) //If the turret is destroyed, you can remove it with a crowbar to //try and salvage its components to_chat(user, "You begin prying the metal coverings off.") @@ -506,7 +506,7 @@ to_chat(user, "You remove the turret but did not manage to salvage anything.") qdel(src) // qdel - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) if(enabled || raised) to_chat(user, "You cannot unsecure an active turret!") return @@ -948,14 +948,14 @@ //this is a bit unwieldy but self-explanatory switch(build_step) if(0) //first step - if(I.is_wrench() && !anchored) + if(I.has_tool_quality(TOOL_WRENCH) && !anchored) playsound(src, I.usesound, 100, 1) to_chat(user, "You secure the external bolts.") anchored = TRUE build_step = 1 return - else if(I.is_crowbar() && !anchored) + else if(I.has_tool_quality(TOOL_CROWBAR) && !anchored) playsound(src, I.usesound, 75, 1) to_chat(user, "You dismantle the turret construction.") new /obj/item/stack/material/steel(loc, 5) @@ -973,7 +973,7 @@ to_chat(user, "You need two sheets of metal to continue construction.") return - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) playsound(src, I.usesound, 75, 1) to_chat(user, "You unfasten the external bolts.") anchored = FALSE @@ -981,14 +981,14 @@ return if(2) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) playsound(src, I.usesound, 100, 1) to_chat(user, "You bolt the metal armor into place.") build_step = 3 return - else if(istype(I, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = I + else if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = I.get_welder() if(!WT.isOn()) return if(WT.get_fuel() < 5) //uses up 5 fuel. @@ -1021,7 +1021,7 @@ qdel(I) //delete the gun :( return - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) playsound(src, I.usesound, 100, 1) to_chat(user, "You remove the turret's metal armor bolts.") build_step = 2 @@ -1040,7 +1040,7 @@ //attack_hand() removes the gun if(5) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, I.usesound, 100, 1) build_step = 6 to_chat(user, "You close the internal access hatch.") @@ -1058,15 +1058,15 @@ to_chat(user, "You need two sheets of metal to continue construction.") return - else if(I.is_screwdriver()) + else if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, I.usesound, 100, 1) build_step = 5 to_chat(user, "You open the internal access hatch.") return if(7) - if(istype(I, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = I + if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = I.get_welder() if(!WT.isOn()) return if(WT.get_fuel() < 5) to_chat(user, "You need more fuel to complete this task.") @@ -1088,7 +1088,7 @@ qdel(src) // qdel - else if(I.is_crowbar()) + else if(I.has_tool_quality(TOOL_CROWBAR)) playsound(src, I.usesound, 75, 1) to_chat(user, "You pry off the turret's exterior armor.") new /obj/item/stack/material/steel(loc, 2) diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm index db94f63adb..cd23dad276 100644 --- a/code/game/machinery/recharger.dm +++ b/code/game/machinery/recharger.dm @@ -91,7 +91,7 @@ update_icon() user.visible_message("[user] inserts [charging] into [src].", "You insert [charging] into [src].") - else if(portable && G.is_wrench()) + else if(portable && G.has_tool_quality(TOOL_WRENCH)) if(charging) to_chat(user, "Remove [charging] first!") return diff --git a/code/game/machinery/spaceheater.dm b/code/game/machinery/spaceheater.dm index ac0615635a..f5505ba9da 100644 --- a/code/game/machinery/spaceheater.dm +++ b/code/game/machinery/spaceheater.dm @@ -10,12 +10,12 @@ icon_state = "sheater0" name = "space heater" desc = "Made by Space Amish using traditional space techniques, this heater is guaranteed not to set the station on fire." - + light_system = MOVABLE_LIGHT light_range = 3 light_power = 1 light_on = FALSE - + var/obj/item/weapon/cell/cell var/cell_type = /obj/item/weapon/cell/high var/state = 0 @@ -90,7 +90,7 @@ else to_chat(user, "The hatch must be open to insert a power cell.") return - else if(I.is_screwdriver()) + else if(I.has_tool_quality(TOOL_SCREWDRIVER)) panel_open = !panel_open playsound(src, I.usesound, 50, 1) user.visible_message("[user] [panel_open ? "opens" : "closes"] the hatch on the [src].", "You [panel_open ? "open" : "close"] the hatch on the [src].") diff --git a/code/game/machinery/suit_storage/suit_cycler.dm b/code/game/machinery/suit_storage/suit_cycler.dm index 56a081737f..cdd6b45dc2 100644 --- a/code/game/machinery/suit_storage/suit_cycler.dm +++ b/code/game/machinery/suit_storage/suit_cycler.dm @@ -141,7 +141,7 @@ GLOBAL_LIST_EMPTY(suit_cycler_typecache) return //Hacking init. - if(istype(I, /obj/item/device/multitool) || I.is_wirecutter()) + if(istype(I, /obj/item/device/multitool) || I.has_tool_quality(TOOL_WIRECUTTER)) if(panel_open) attack_hand(user) return @@ -177,7 +177,7 @@ GLOBAL_LIST_EMPTY(suit_cycler_typecache) updateUsrDialog() return - else if(I.is_screwdriver()) + else if(I.has_tool_quality(TOOL_SCREWDRIVER)) panel_open = !panel_open playsound(src, I.usesound, 50, 1) diff --git a/code/game/machinery/suit_storage/suit_storage.dm b/code/game/machinery/suit_storage/suit_storage.dm index 334f5227d8..3134eee487 100644 --- a/code/game/machinery/suit_storage/suit_storage.dm +++ b/code/game/machinery/suit_storage/suit_storage.dm @@ -385,7 +385,7 @@ /obj/machinery/suit_storage_unit/attackby(obj/item/I as obj, mob/user as mob) if(!ispowered) return - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) panelopen = !panelopen playsound(src, I.usesound, 100, 1) to_chat(user, "You [panelopen ? "open up" : "close"] the unit's maintenance panel.") diff --git a/code/game/machinery/supplybeacon.dm b/code/game/machinery/supplybeacon.dm index 377a02aa74..f3d4bb574f 100644 --- a/code/game/machinery/supplybeacon.dm +++ b/code/game/machinery/supplybeacon.dm @@ -45,7 +45,7 @@ drop_type = "supermatter" /obj/machinery/power/supply_beacon/attackby(var/obj/item/weapon/W, var/mob/user) - if(!use_power && W.is_wrench()) + if(!use_power && W.has_tool_quality(TOOL_WRENCH)) if(!anchored && !connect_to_network()) to_chat(user, "This device must be placed over an exposed cable.") return diff --git a/code/game/machinery/syndicatebeacon.dm b/code/game/machinery/syndicatebeacon.dm index 4e1e239915..023a096f9c 100644 --- a/code/game/machinery/syndicatebeacon.dm +++ b/code/game/machinery/syndicatebeacon.dm @@ -121,7 +121,7 @@ return /obj/machinery/power/singularity_beacon/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(active) to_chat(user, "You need to deactivate the beacon first!") return diff --git a/code/game/machinery/wall_frames.dm b/code/game/machinery/wall_frames.dm index be00cab96a..696b46af78 100644 --- a/code/game/machinery/wall_frames.dm +++ b/code/game/machinery/wall_frames.dm @@ -18,7 +18,7 @@ frame_types_wall = construction_frame_wall /obj/item/frame/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) new refund_type(get_turf(src.loc), refund_amt) qdel(src) return diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm index 77c3187458..e3c6a90976 100644 --- a/code/game/machinery/washing_machine.dm +++ b/code/game/machinery/washing_machine.dm @@ -106,7 +106,7 @@ return if(default_unfasten_wrench(user, W, 40)) return - /*if(W.is_screwdriver()) + /*if(W.has_tool_quality(TOOL_SCREWDRIVER)) panel = !panel to_chat(user, "You [panel ? "open" : "close"] the [src]'s maintenance panel")*/ if(istype(W,/obj/item/weapon/pen/crayon) || istype(W,/obj/item/weapon/stamp)) diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index 595e44a2cd..effab680ea 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -1446,7 +1446,7 @@ to_chat(user, "Invalid ID: Access denied.") else to_chat(user, "Maintenance protocols disabled by operator.") - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(state==MECHA_BOLTS_SECURED) state = MECHA_PANEL_LOOSE to_chat(user, "You undo the securing bolts.") @@ -1454,7 +1454,7 @@ state = MECHA_BOLTS_SECURED to_chat(user, "You tighten the securing bolts.") return - else if(W.is_crowbar()) + else if(W.has_tool_quality(TOOL_CROWBAR)) if(state==MECHA_PANEL_LOOSE) state = MECHA_CELL_OPEN to_chat(user, "You open the hatch to the power unit") @@ -1487,7 +1487,7 @@ else to_chat(user, "There's not enough wire to finish the task.") return - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(hasInternalDamage(MECHA_INT_TEMP_CONTROL)) clearInternalDamage(MECHA_INT_TEMP_CONTROL) to_chat(user, "You repair the damaged temperature controller.") @@ -1526,8 +1526,8 @@ to_chat(user, "There's already a powercell installed.") return - else if(istype(W, /obj/item/weapon/weldingtool) && user.a_intent != I_HURT) - var/obj/item/weapon/weldingtool/WT = W + else if(W.has_tool_quality(TOOL_WELDER) && user.a_intent != I_HURT) + var/obj/item/weapon/weldingtool/WT = W.get_welder() var/obj/item/mecha_parts/component/hull/HC = internal_components[MECH_HULL] var/obj/item/mecha_parts/component/armor/AC = internal_components[MECH_ARMOR] if (WT.remove_fuel(0,user)) diff --git a/code/game/mecha/mecha_construction_paths.dm b/code/game/mecha/mecha_construction_paths.dm index 27974a588d..f5ea5d0cbf 100644 --- a/code/game/mecha/mecha_construction_paths.dm +++ b/code/game/mecha/mecha_construction_paths.dm @@ -3,19 +3,19 @@ //////////////////////////////// /datum/construction/mecha/custom_action(step, obj/item/I, mob/user) - if(istype(I, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/W = I - if (W.remove_fuel(0, user)) + if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/W = I.get_welder() + if(W.remove_fuel(0, user)) playsound(holder, 'sound/items/Welder2.ogg', 50, 1) else return 0 - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) playsound(holder, 'sound/items/Ratchet.ogg', 50, 1) - else if(I.is_screwdriver()) + else if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(holder, 'sound/items/Screwdriver.ogg', 50, 1) - else if(I.is_wirecutter()) + else if(I.has_tool_quality(TOOL_WIRECUTTER)) playsound(holder, 'sound/items/Wirecutter.ogg', 50, 1) else if(istype(I, /obj/item/stack/cable_coil)) @@ -35,19 +35,19 @@ return 1 /datum/construction/reversible/mecha/custom_action(index as num, diff as num, obj/item/I, mob/user as mob) - if(istype(I, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/W = I - if (W.remove_fuel(0, user)) + if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/W = I.get_welder() + if(W.remove_fuel(0, user)) playsound(holder, 'sound/items/Welder2.ogg', 50, 1) else return 0 - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) playsound(holder, 'sound/items/Ratchet.ogg', 50, 1) - else if(I.is_screwdriver()) + else if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(holder, 'sound/items/Screwdriver.ogg', 50, 1) - else if(I.is_wirecutter()) + else if(I.has_tool_quality(TOOL_WIRECUTTER)) playsound(holder, 'sound/items/Wirecutter.ogg', 50, 1) else if(istype(I, /obj/item/stack/cable_coil)) @@ -102,7 +102,7 @@ result = "/obj/mecha/working/ripley" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -111,10 +111,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/stack/material/plasteel, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -310,7 +310,7 @@ result = "/obj/mecha/combat/gygax" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -319,10 +319,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/mecha_parts/part/gygax_armour, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -592,7 +592,7 @@ result = "/obj/mecha/combat/gygax/serenity" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -601,10 +601,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/stack/material/plasteel, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -875,7 +875,7 @@ result = "/obj/mecha/working/ripley/firefighter" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -888,10 +888,10 @@ "desc"="External armor is being installed."), //4 list("key"=/obj/item/stack/material/plasteel, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //5 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //6 @@ -1095,7 +1095,7 @@ result = "/obj/mecha/combat/durand" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -1104,10 +1104,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/mecha_parts/part/durand_armour, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -1377,7 +1377,7 @@ result = "/obj/mecha/medical/odysseus" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -1386,10 +1386,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/stack/material/plasteel, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -1586,7 +1586,7 @@ result = "/obj/mecha/combat/phazon" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -1595,10 +1595,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/stack/material/plasteel, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -1865,7 +1865,7 @@ result = "/obj/mecha/combat/phazon/janus" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_CROWBAR, "desc"="External armor is installed."), //2 @@ -1874,10 +1874,10 @@ "desc"="External armor is attached."), //3 list("key"=/obj/item/stack/material/morphium, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded"), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_CROWBAR, "desc"="Internal armor is wrenched"), //5 diff --git a/code/game/mecha/mecha_wreckage.dm b/code/game/mecha/mecha_wreckage.dm index 5dbee5556b..01b5987112 100644 --- a/code/game/mecha/mecha_wreckage.dm +++ b/code/game/mecha/mecha_wreckage.dm @@ -31,8 +31,8 @@ /obj/effect/decal/mecha_wreckage/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(salvage_num <= 0) to_chat(user, "You don't see anything that can be cut with [W].") return @@ -49,7 +49,7 @@ else to_chat(user, "You need more welding fuel to complete this task.") return - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) if(salvage_num <= 0) to_chat(user, "You don't see anything that can be cut with [W].") return @@ -61,7 +61,7 @@ salvage_num-- else to_chat(user, "You failed to salvage anything valuable from [src].") - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) if(!isemptylist(crowbar_salvage)) var/obj/S = pick(crowbar_salvage) if(S) diff --git a/code/game/mecha/micro/mecha_construction_paths_vr.dm b/code/game/mecha/micro/mecha_construction_paths_vr.dm index 4117e2ca65..85ac01325b 100644 --- a/code/game/mecha/micro/mecha_construction_paths_vr.dm +++ b/code/game/mecha/micro/mecha_construction_paths_vr.dm @@ -33,7 +33,7 @@ result = "/obj/mecha/micro/sec/polecat" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -42,10 +42,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/mecha_parts/micro/part/polecat_armour, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -312,7 +312,7 @@ result = "/obj/mecha/micro/utility/gopher" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -321,10 +321,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/stack/material/plasteel, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 @@ -518,7 +518,7 @@ result = "/obj/mecha/micro/sec/weasel" steps = list( //1 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="External armor is wrenched."), //2 @@ -527,10 +527,10 @@ "desc"="External armor is installed."), //3 list("key"=/obj/item/stack/material/plasteel, - "backkey"=/obj/item/weapon/weldingtool, + "backkey"=IS_WELDER, "desc"="Internal armor is welded."), //4 - list("key"=/obj/item/weapon/weldingtool, + list("key"=IS_WELDER, "backkey"=IS_WRENCH, "desc"="Internal armor is wrenched"), //5 diff --git a/code/game/objects/effects/alien/aliens.dm b/code/game/objects/effects/alien/aliens.dm index 84b415506d..b7a40d4819 100644 --- a/code/game/objects/effects/alien/aliens.dm +++ b/code/game/objects/effects/alien/aliens.dm @@ -192,8 +192,8 @@ var/damage = W.force / 4.0 - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) damage = 15 diff --git a/code/game/objects/effects/decals/contraband.dm b/code/game/objects/effects/decals/contraband.dm index 2915213d8a..0b298f2224 100644 --- a/code/game/objects/effects/decals/contraband.dm +++ b/code/game/objects/effects/decals/contraband.dm @@ -180,7 +180,7 @@ poster_set = TRUE /obj/structure/sign/poster/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) playsound(src, W.usesound, 100, 1) if(ruined) to_chat(user, "You remove the remnants of the poster.") diff --git a/code/game/objects/effects/decals/posters/posters.dm b/code/game/objects/effects/decals/posters/posters.dm index 1a9710a566..74624bcb0d 100644 --- a/code/game/objects/effects/decals/posters/posters.dm +++ b/code/game/objects/effects/decals/posters/posters.dm @@ -165,7 +165,7 @@ flick("poster_being_set", src) /obj/structure/sign/poster/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) playsound(src, W.usesound, 100, 1) if(ruined) to_chat(user, "You remove the remnants of the poster.") diff --git a/code/game/objects/effects/job_start_landmarks.dm b/code/game/objects/effects/job_start_landmarks.dm index 0a49b03aad..7e82d2fe42 100644 --- a/code/game/objects/effects/job_start_landmarks.dm +++ b/code/game/objects/effects/job_start_landmarks.dm @@ -64,6 +64,8 @@ name = "Clown" /obj/effect/landmark/start/entertainer name = "Entertainer" +/obj/effect/landmark/start/entrepreneur + name = "Entrepreneur" /obj/effect/landmark/start/intern name = "Intern" /obj/effect/landmark/start/iaa diff --git a/code/game/objects/effects/mines.dm b/code/game/objects/effects/mines.dm index 93a2ec408c..b464530da7 100644 --- a/code/game/objects/effects/mines.dm +++ b/code/game/objects/effects/mines.dm @@ -101,7 +101,7 @@ explode(M) /obj/effect/mine/attackby(obj/item/W as obj, mob/living/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) panel_open = !panel_open user.visible_message("[user] very carefully screws the mine's panel [panel_open ? "open" : "closed"].", "You very carefully screw the mine's panel [panel_open ? "open" : "closed"].") @@ -110,7 +110,7 @@ // Panel open, stay uncloaked, or uncloak if already cloaked. If you don't cloak on place, ignore it and just be normal alpha. alpha = camo_net ? (panel_open ? 255 : 50) : 255 - else if((W.is_wirecutter() || istype(W, /obj/item/device/multitool)) && panel_open) + else if((W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/device/multitool)) && panel_open) interact(user) else ..() @@ -309,7 +309,7 @@ return /obj/item/weapon/mine/attackby(obj/item/W as obj, mob/living/user as mob) - if(W.is_screwdriver() && trap) + if(W.has_tool_quality(TOOL_SCREWDRIVER) && trap) to_chat(user, "You begin removing \the [trap].") if(do_after(user, 10 SECONDS)) to_chat(user, "You finish disconnecting the mine's trigger.") diff --git a/code/game/objects/effects/semirandom_mobs_vr.dm b/code/game/objects/effects/semirandom_mobs_vr.dm index a60d003c0c..aaf1452837 100644 --- a/code/game/objects/effects/semirandom_mobs_vr.dm +++ b/code/game/objects/effects/semirandom_mobs_vr.dm @@ -752,11 +752,18 @@ var/global/list/semirandom_mob_spawner_decisions = list() list(/mob/living/simple_mob/vore/aggressive/rat) = 100, list(/mob/living/simple_mob/vore/bee) = 100, list(/mob/living/simple_mob/vore/catgirl) = 100, + list(/mob/living/simple_mob/vore/wolftaur) = 100, list(/mob/living/simple_mob/vore/cookiegirl) = 100, list(/mob/living/simple_mob/vore/fennec) = 100, list(/mob/living/simple_mob/vore/fennix) = 50, list(/mob/living/simple_mob/vore/hippo) = 70, list(/mob/living/simple_mob/vore/horse) = 100, + list(/mob/living/simple_mob/vore/raptor) = 100, + list(/mob/living/simple_mob/vore/succubus) = 100, + list(/mob/living/simple_mob/vore/vampire) = 50, + list(/mob/living/simple_mob/vore/vampire/queen) = 1, + list(/mob/living/simple_mob/vore/bat) = 50, + list(/mob/living/simple_mob/vore/scel) = 10, list( /mob/living/simple_mob/vore/lamia, /mob/living/simple_mob/vore/lamia/albino, diff --git a/code/game/objects/effects/spiders.dm b/code/game/objects/effects/spiders.dm index c92bacbb79..74ef44f5b1 100644 --- a/code/game/objects/effects/spiders.dm +++ b/code/game/objects/effects/spiders.dm @@ -30,8 +30,8 @@ var/damage = W.force / 4.0 - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) damage = 15 diff --git a/code/game/objects/effects/step_triggers.dm b/code/game/objects/effects/step_triggers.dm index 56cc000dc9..15750828dd 100644 --- a/code/game/objects/effects/step_triggers.dm +++ b/code/game/objects/effects/step_triggers.dm @@ -248,3 +248,41 @@ var/global/list/tele_landmarks = list() // Terrible, but the alternative is loop else message_admins("ERROR: planetary_fall step trigger lacks a planet to fall onto.") return + +//Death + +/obj/effect/step_trigger/death + var/deathmessage = "You die a horrible, brutal and very sudden death." + var/deathalert = "has stepped on a death trigger." + +/obj/effect/step_trigger/death/Trigger(var/atom/movable/A) + if(isliving(A)) + to_chat(A, "[deathmessage]") + log_and_message_admins("[A] [deathalert]") + qdel(A) + +/obj/effect/step_trigger/death/train_lost + deathmessage = "You fly down the tunnel of the train at high speed for a few moments before impact kills you with sheer concussive force." + deathalert = "fell off the side of the train and died horribly." + +/obj/effect/step_trigger/death/train_crush + deathmessage = "You get horribly crushed by the train, there's pretty much nothing left of you." + deathalert = "fell under the train and was crushed horribly." + +/obj/effect/step_trigger/death/fly_off + deathmessage = "You get caught up in the slipstream of the train and quickly dragged down into the tracks. Your body is brutally smashed into the electrified rails and then sucked right under a carriage. No one is finding that mess, thankfully." + deathalert = "tried to fly away from the train but was died horribly in the process." + +//warning + +/obj/effect/step_trigger/warning + var/warningmessage = "Warning!" + icon_state = "warnmarker" + +/obj/effect/step_trigger/warning/Trigger(var/atom/movable/A) + if(isliving(A)) + to_chat(A, "[warningmessage]") + +/obj/effect/step_trigger/warning/train_edge + warningmessage = "The wind billowing alongside the train is extremely strong here! Any movement could easily pull you down beneath the carriages, return to the train immediately!" + diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index fa4dc54452..5c0e31a4c6 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -1018,3 +1018,6 @@ Note: This proc can be overwritten to allow for different types of auto-alignmen /obj/item/proc/on_holder_escape(var/obj/item/weapon/holder/H) return + +/obj/item/proc/get_welder() + return \ No newline at end of file diff --git a/code/game/objects/items/bells.dm b/code/game/objects/items/bells.dm index e9219957e4..0dce9e0223 100644 --- a/code/game/objects/items/bells.dm +++ b/code/game/objects/items/bells.dm @@ -87,7 +87,7 @@ /obj/item/weapon/deskbell/attackby(obj/item/W, mob/user, params) if(!istype(W)) return - if(W.is_wrench() && isturf(loc)) + if(W.has_tool_quality(TOOL_WRENCH) && isturf(loc)) if(do_after(5)) if(!src) return to_chat(user, "You dissasemble the desk bell") diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm index 279f77c511..587c685bba 100644 --- a/code/game/objects/items/bodybag.dm +++ b/code/game/objects/items/bodybag.dm @@ -67,7 +67,7 @@ src.name = "body bag" //..() //Doesn't need to run the parent. Since when can fucking bodybags be welded shut? -Agouri return - else if(W.is_wirecutter()) + else if(W.has_tool_quality(TOOL_WIRECUTTER)) to_chat(user, "You cut the tag off the bodybag") src.name = "body bag" cut_overlays() @@ -264,7 +264,7 @@ inject_occupant(H) break - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(syringe) if(used) to_chat(user,"The injector cannot be removed now that the stasis bag has been used!") diff --git a/code/game/objects/items/devices/defib.dm b/code/game/objects/items/devices/defib.dm index b7d6d5278c..7e993ce8ee 100644 --- a/code/game/objects/items/devices/defib.dm +++ b/code/game/objects/items/devices/defib.dm @@ -96,7 +96,7 @@ to_chat(user, "You install a cell in \the [src].") update_icon() - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(bcell) bcell.update_icon() bcell.forceMove(get_turf(src.loc)) diff --git a/code/game/objects/items/devices/flash.dm b/code/game/objects/items/devices/flash.dm index 0b987e04c7..4e692b3347 100644 --- a/code/game/objects/items/devices/flash.dm +++ b/code/game/objects/items/devices/flash.dm @@ -37,7 +37,7 @@ power_supply = new cell_type(src) /obj/item/device/flash/attackby(var/obj/item/W, var/mob/user) - if(W.is_screwdriver() && broken) + if(W.has_tool_quality(TOOL_SCREWDRIVER) && broken) if(repairing) to_chat(user, "\The [src] is already being repaired!") return diff --git a/code/game/objects/items/devices/hacktool.dm b/code/game/objects/items/devices/hacktool.dm index a374f19d8d..223ac5a1c4 100644 --- a/code/game/objects/items/devices/hacktool.dm +++ b/code/game/objects/items/devices/hacktool.dm @@ -9,7 +9,7 @@ var/list/known_targets var/list/supported_types var/datum/tgui_state/default/must_hack/hack_state - + /obj/item/device/multitool/hacktool/override hackspeed = 0.75 max_level = 5 @@ -31,7 +31,7 @@ return ..() /obj/item/device/multitool/hacktool/attackby(var/obj/item/W, var/mob/user) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) in_hack_mode = !in_hack_mode playsound(src, W.usesound, 50, 1) else @@ -78,7 +78,7 @@ if(D.security_level > max_level) to_chat(user, "\icon[src][bicon(src)] Target's electronic security is too complex.") return 0 - + var/found = known_targets.Find(D) if(found) known_targets.Swap(1, found) // Move the last hacked item first diff --git a/code/game/objects/items/devices/laserpointer.dm b/code/game/objects/items/devices/laserpointer.dm index 784fb4ced3..0112b25dd3 100644 --- a/code/game/objects/items/devices/laserpointer.dm +++ b/code/game/objects/items/devices/laserpointer.dm @@ -54,7 +54,7 @@ else to_chat(user, "[src] already has a diode.") - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(diode) to_chat(user, "You remove the [diode.name] from the [src].") diode.loc = get_turf(src.loc) diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 6fe9aea398..4a249cae00 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -66,9 +66,6 @@ return -/obj/item/device/multitool/is_multitool() - return TRUE - /obj/item/device/multitool/cyborg name = "multitool" desc = "Optimised and stripped-down version of a regular multitool." diff --git a/code/game/objects/items/devices/personal_shield_generator_vr.dm b/code/game/objects/items/devices/personal_shield_generator_vr.dm index 6d105b7b54..dbae24eabf 100644 --- a/code/game/objects/items/devices/personal_shield_generator_vr.dm +++ b/code/game/objects/items/devices/personal_shield_generator_vr.dm @@ -179,7 +179,7 @@ to_chat(user, "You install a cell in \the [src].") update_icon() - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(bcell) if(istype(bcell, /obj/item/weapon/cell/device/shield_generator)) //No stealing self charging batteries! var/choice = tgui_alert(user, "A popup appears on the device 'REMOVING THE INTERNAL CELL WILL DESTROY THE BATTERY. DO YOU WISH TO CONTINUE?'...Well, do you?", "Selection List", list("Cancel", "Remove")) diff --git a/code/game/objects/items/devices/powersink.dm b/code/game/objects/items/devices/powersink.dm index 339b57f055..9ed57621d2 100644 --- a/code/game/objects/items/devices/powersink.dm +++ b/code/game/objects/items/devices/powersink.dm @@ -30,7 +30,7 @@ ..() /obj/item/device/powersink/attackby(var/obj/item/I, var/mob/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(mode == 0) var/turf/T = loc if(isturf(T) && !!T.is_plating()) diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 5c46bbf3d8..9628a1a190 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -336,10 +336,10 @@ /obj/item/device/radio/headset/attackby(obj/item/weapon/W as obj, mob/user as mob) // ..() user.set_machine(src) - if(!(W.is_screwdriver() || istype(W, /obj/item/device/encryptionkey))) + if(!(W.has_tool_quality(TOOL_SCREWDRIVER) || istype(W, /obj/item/device/encryptionkey))) return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(keyslot1 || keyslot2) diff --git a/code/game/objects/items/devices/radio/intercom.dm b/code/game/objects/items/devices/radio/intercom.dm index 8202fe102e..c57773b3fa 100644 --- a/code/game/objects/items/devices/radio/intercom.dm +++ b/code/game/objects/items/devices/radio/intercom.dm @@ -1,235 +1,235 @@ -/obj/item/device/radio/intercom - name = "station intercom (General)" - desc = "Talk through this." - icon = 'icons/obj/radio_vr.dmi' //VOREStation Edit - New Icon - icon_state = "intercom" - layer = ABOVE_WINDOW_LAYER - anchored = TRUE - w_class = ITEMSIZE_LARGE - canhear_range = 7 //VOREStation Edit - flags = NOBLOODY - light_color = "#00ff00" - light_power = 0.25 - blocks_emissive = NONE - vis_flags = VIS_HIDE // They have an emissive that looks bad in openspace due to their wall-mounted nature - var/circuit = /obj/item/weapon/circuitboard/intercom - var/number = 0 - var/wiresexposed = 0 - -/obj/item/device/radio/intercom/Initialize() - . = ..() - var/area/A = get_area(src) - if(A) - GLOB.apc_event.register(A, src, /atom/proc/update_icon) - update_icon() - -/obj/item/device/radio/intercom/Destroy() - var/area/A = get_area(src) - if(A) - GLOB.apc_event.unregister(A, src, /atom/proc/update_icon) - return ..() - -/obj/item/device/radio/intercom/custom - name = "station intercom (Custom)" - broadcasting = 0 - listening = 0 - -/obj/item/device/radio/intercom/interrogation - name = "station intercom (Interrogation)" - frequency = 1449 - broadcasting = 1 //yw edit starts - listening = 0 - -/obj/item/device/radio/intercom/interrogation/observation - listening = 1 - broadcasting = 0 //yw edit ends - -/obj/item/device/radio/intercom/private - name = "station intercom (Private)" - frequency = AI_FREQ - -/obj/item/device/radio/intercom/specops - name = "\improper Spec Ops intercom" - frequency = ERT_FREQ - subspace_transmission = 1 - centComm = 1 - -/obj/item/device/radio/intercom/department - canhear_range = 5 - broadcasting = 0 - listening = 1 - -/obj/item/device/radio/intercom/department/medbay - name = "station intercom (Medbay)" - icon_state = "medintercom" - light_color = "#00aaff" - frequency = MED_I_FREQ - -/obj/item/device/radio/intercom/department/security - name = "station intercom (Security)" - icon_state = "secintercom" - light_color = "#ff0000" - frequency = SEC_I_FREQ - -/obj/item/device/radio/intercom/entertainment - name = "entertainment intercom" - frequency = ENT_FREQ - -/obj/item/device/radio/intercom/omni - name = "global announcer" -/obj/item/device/radio/intercom/omni/Initialize() - channels = radiochannels.Copy() - return ..() - -/obj/item/device/radio/intercom/New() - ..() - circuit = new circuit(src) - -/obj/item/device/radio/intercom/department/medbay/New() - ..() - internal_channels = default_medbay_channels.Copy() - -/obj/item/device/radio/intercom/department/security/New() - ..() - internal_channels = list( - num2text(PUB_FREQ) = list(), - num2text(SEC_I_FREQ) = list(access_security) - ) - -/obj/item/device/radio/intercom/entertainment/New() - ..() - internal_channels = list( - num2text(PUB_FREQ) = list(), - num2text(ENT_FREQ) = list() - ) - -/obj/item/device/radio/intercom/syndicate - name = "illicit intercom" - desc = "Talk through this. Evilly" - frequency = SYND_FREQ - subspace_transmission = 1 - syndie = 1 - -/obj/item/device/radio/intercom/syndicate/New() - ..() - internal_channels[num2text(SYND_FREQ)] = list(access_syndicate) - -/obj/item/device/radio/intercom/raider - name = "illicit intercom" - desc = "Pirate radio, but not in the usual sense of the word." - frequency = RAID_FREQ - subspace_transmission = 1 - syndie = 1 - -/obj/item/device/radio/intercom/raider/New() - ..() - internal_channels[num2text(RAID_FREQ)] = list(access_syndicate) - -/obj/item/device/radio/intercom/attack_ai(mob/user as mob) - src.add_fingerprint(user) - spawn (0) - attack_self(user) - -/obj/item/device/radio/intercom/attack_hand(mob/user as mob) - src.add_fingerprint(user) - spawn (0) - attack_self(user) - -/obj/item/device/radio/intercom/attackby(obj/item/W as obj, mob/user as mob) - add_fingerprint(user) - if(W.is_screwdriver()) // Opening the intercom up. - wiresexposed = !wiresexposed - to_chat(user, "The wires have been [wiresexposed ? "exposed" : "unexposed"]") - playsound(src, W.usesound, 50, 1) - update_icon() - else if(wiresexposed && W.is_wirecutter()) - user.visible_message("[user] has cut the wires inside \the [src]!", "You have cut the wires inside \the [src].") - playsound(src, W.usesound, 50, 1) - new/obj/item/stack/cable_coil(get_turf(src), 5) - var/obj/structure/frame/A = new /obj/structure/frame(src.loc) - var/obj/item/weapon/circuitboard/M = circuit - A.frame_type = M.board_type - A.pixel_x = pixel_x - A.pixel_y = pixel_y - A.circuit = M - A.set_dir(dir) - A.anchored = TRUE - A.state = 2 - A.update_icon() - M.deconstruct(src) - qdel(src) - else - src.attack_hand(user) - -/obj/item/device/radio/intercom/receive_range(freq, level) - if (!on) - return -1 - if(!(0 in level)) - var/turf/position = get_turf(src) - if(isnull(position) || !(position.z in level)) - return -1 - if (!src.listening) - return -1 - if(freq in ANTAG_FREQS) - if(!(src.syndie)) - return -1//Prevents broadcast of messages over devices lacking the encryption - - return canhear_range - -/obj/item/device/radio/intercom/update_icon() - var/area/A = get_area(src) - on = A?.powered(EQUIP) - - cut_overlays() - - if(!on) - set_light(0) - set_light_on(FALSE) - if(wiresexposed) - icon_state = "intercom-p_open" - else - icon_state = "intercom-p" - else - if(wiresexposed) - icon_state = "intercom_open" - set_light(0) - set_light_on(FALSE) - else - icon_state = initial(icon_state) - add_overlay(mutable_appearance(icon, "[icon_state]_ov")) - add_overlay(emissive_appearance(icon, "[icon_state]_ov")) - set_light(2) - set_light_on(TRUE) - -//VOREStation Add Start -/obj/item/device/radio/intercom/AICtrlClick(var/mob/user) - ToggleBroadcast() - to_chat(user, "\The [src]'s microphone is now [broadcasting ? "enabled" : "disabled"].") - -/obj/item/device/radio/intercom/AIAltClick(var/mob/user) - if(frequency == AI_FREQ) - set_frequency(initial(frequency)) - to_chat(user, "\The [src]'s frequency is now set to Default.") - else - set_frequency(AI_FREQ) - to_chat(user, "\The [src]'s frequency is now set to AI Private.") -//VOREStation Add End -/obj/item/device/radio/intercom/locked - var/locked_frequency - -/obj/item/device/radio/intercom/locked/set_frequency(var/frequency) - if(frequency == locked_frequency) - ..(locked_frequency) - -/obj/item/device/radio/intercom/locked/list_channels() - return "" - -/obj/item/device/radio/intercom/locked/ai_private - name = "\improper AI intercom" - frequency = AI_FREQ - broadcasting = 1 - listening = 1 - -/obj/item/device/radio/intercom/locked/confessional - name = "confessional intercom" +/obj/item/device/radio/intercom + name = "station intercom (General)" + desc = "Talk through this." + icon = 'icons/obj/radio_vr.dmi' //VOREStation Edit - New Icon + icon_state = "intercom" + layer = ABOVE_WINDOW_LAYER + anchored = TRUE + w_class = ITEMSIZE_LARGE + canhear_range = 7 //VOREStation Edit + flags = NOBLOODY + light_color = "#00ff00" + light_power = 0.25 + blocks_emissive = NONE + vis_flags = VIS_HIDE // They have an emissive that looks bad in openspace due to their wall-mounted nature + var/circuit = /obj/item/weapon/circuitboard/intercom + var/number = 0 + var/wiresexposed = 0 + +/obj/item/device/radio/intercom/Initialize() + . = ..() + var/area/A = get_area(src) + if(A) + GLOB.apc_event.register(A, src, /atom/proc/update_icon) + update_icon() + +/obj/item/device/radio/intercom/Destroy() + var/area/A = get_area(src) + if(A) + GLOB.apc_event.unregister(A, src, /atom/proc/update_icon) + return ..() + +/obj/item/device/radio/intercom/custom + name = "station intercom (Custom)" + broadcasting = 0 + listening = 0 + +/obj/item/device/radio/intercom/interrogation + name = "station intercom (Interrogation)" + frequency = 1449 + broadcasting = 1 //yw edit starts + listening = 0 + +/obj/item/device/radio/intercom/interrogation/observation + listening = 1 + broadcasting = 0 //yw edit ends + +/obj/item/device/radio/intercom/private + name = "station intercom (Private)" + frequency = AI_FREQ + +/obj/item/device/radio/intercom/specops + name = "\improper Spec Ops intercom" + frequency = ERT_FREQ + subspace_transmission = 1 + centComm = 1 + +/obj/item/device/radio/intercom/department + canhear_range = 5 + broadcasting = 0 + listening = 1 + +/obj/item/device/radio/intercom/department/medbay + name = "station intercom (Medbay)" + icon_state = "medintercom" + light_color = "#00aaff" + frequency = MED_I_FREQ + +/obj/item/device/radio/intercom/department/security + name = "station intercom (Security)" + icon_state = "secintercom" + light_color = "#ff0000" + frequency = SEC_I_FREQ + +/obj/item/device/radio/intercom/entertainment + name = "entertainment intercom" + frequency = ENT_FREQ + +/obj/item/device/radio/intercom/omni + name = "global announcer" +/obj/item/device/radio/intercom/omni/Initialize() + channels = radiochannels.Copy() + return ..() + +/obj/item/device/radio/intercom/New() + ..() + circuit = new circuit(src) + +/obj/item/device/radio/intercom/department/medbay/New() + ..() + internal_channels = default_medbay_channels.Copy() + +/obj/item/device/radio/intercom/department/security/New() + ..() + internal_channels = list( + num2text(PUB_FREQ) = list(), + num2text(SEC_I_FREQ) = list(access_security) + ) + +/obj/item/device/radio/intercom/entertainment/New() + ..() + internal_channels = list( + num2text(PUB_FREQ) = list(), + num2text(ENT_FREQ) = list() + ) + +/obj/item/device/radio/intercom/syndicate + name = "illicit intercom" + desc = "Talk through this. Evilly" + frequency = SYND_FREQ + subspace_transmission = 1 + syndie = 1 + +/obj/item/device/radio/intercom/syndicate/New() + ..() + internal_channels[num2text(SYND_FREQ)] = list(access_syndicate) + +/obj/item/device/radio/intercom/raider + name = "illicit intercom" + desc = "Pirate radio, but not in the usual sense of the word." + frequency = RAID_FREQ + subspace_transmission = 1 + syndie = 1 + +/obj/item/device/radio/intercom/raider/New() + ..() + internal_channels[num2text(RAID_FREQ)] = list(access_syndicate) + +/obj/item/device/radio/intercom/attack_ai(mob/user as mob) + src.add_fingerprint(user) + spawn (0) + attack_self(user) + +/obj/item/device/radio/intercom/attack_hand(mob/user as mob) + src.add_fingerprint(user) + spawn (0) + attack_self(user) + +/obj/item/device/radio/intercom/attackby(obj/item/W as obj, mob/user as mob) + add_fingerprint(user) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) // Opening the intercom up. + wiresexposed = !wiresexposed + to_chat(user, "The wires have been [wiresexposed ? "exposed" : "unexposed"]") + playsound(src, W.usesound, 50, 1) + update_icon() + else if(wiresexposed && W.has_tool_quality(TOOL_WIRECUTTER)) + user.visible_message("[user] has cut the wires inside \the [src]!", "You have cut the wires inside \the [src].") + playsound(src, W.usesound, 50, 1) + new/obj/item/stack/cable_coil(get_turf(src), 5) + var/obj/structure/frame/A = new /obj/structure/frame(src.loc) + var/obj/item/weapon/circuitboard/M = circuit + A.frame_type = M.board_type + A.pixel_x = pixel_x + A.pixel_y = pixel_y + A.circuit = M + A.set_dir(dir) + A.anchored = TRUE + A.state = 2 + A.update_icon() + M.deconstruct(src) + qdel(src) + else + src.attack_hand(user) + +/obj/item/device/radio/intercom/receive_range(freq, level) + if (!on) + return -1 + if(!(0 in level)) + var/turf/position = get_turf(src) + if(isnull(position) || !(position.z in level)) + return -1 + if (!src.listening) + return -1 + if(freq in ANTAG_FREQS) + if(!(src.syndie)) + return -1//Prevents broadcast of messages over devices lacking the encryption + + return canhear_range + +/obj/item/device/radio/intercom/update_icon() + var/area/A = get_area(src) + on = A?.powered(EQUIP) + + cut_overlays() + + if(!on) + set_light(0) + set_light_on(FALSE) + if(wiresexposed) + icon_state = "intercom-p_open" + else + icon_state = "intercom-p" + else + if(wiresexposed) + icon_state = "intercom_open" + set_light(0) + set_light_on(FALSE) + else + icon_state = initial(icon_state) + add_overlay(mutable_appearance(icon, "[icon_state]_ov")) + add_overlay(emissive_appearance(icon, "[icon_state]_ov")) + set_light(2) + set_light_on(TRUE) + +//VOREStation Add Start +/obj/item/device/radio/intercom/AICtrlClick(var/mob/user) + ToggleBroadcast() + to_chat(user, "\The [src]'s microphone is now [broadcasting ? "enabled" : "disabled"].") + +/obj/item/device/radio/intercom/AIAltClick(var/mob/user) + if(frequency == AI_FREQ) + set_frequency(initial(frequency)) + to_chat(user, "\The [src]'s frequency is now set to Default.") + else + set_frequency(AI_FREQ) + to_chat(user, "\The [src]'s frequency is now set to AI Private.") +//VOREStation Add End +/obj/item/device/radio/intercom/locked + var/locked_frequency + +/obj/item/device/radio/intercom/locked/set_frequency(var/frequency) + if(frequency == locked_frequency) + ..(locked_frequency) + +/obj/item/device/radio/intercom/locked/list_channels() + return "" + +/obj/item/device/radio/intercom/locked/ai_private + name = "\improper AI intercom" + frequency = AI_FREQ + broadcasting = 1 + listening = 1 + +/obj/item/device/radio/intercom/locked/confessional + name = "confessional intercom" frequency = 1480 \ No newline at end of file diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index 63f5929307..99a9dddfc3 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -614,7 +614,7 @@ GLOBAL_DATUM(autospeaker, /mob/living/silicon/ai/announcer) /obj/item/device/radio/attackby(obj/item/weapon/W as obj, mob/user as mob) ..() user.set_machine(src) - if (!W.is_screwdriver()) + if (!W.has_tool_quality(TOOL_SCREWDRIVER)) return b_stat = !( b_stat ) if(!istype(src, /obj/item/device/radio/beacon)) @@ -666,10 +666,10 @@ GLOBAL_DATUM(autospeaker, /mob/living/silicon/ai/announcer) /obj/item/device/radio/borg/attackby(obj/item/weapon/W as obj, mob/user as mob) // ..() user.set_machine(src) - if (!(W.is_screwdriver() || istype(W, /obj/item/device/encryptionkey))) + if (!(W.has_tool_quality(TOOL_SCREWDRIVER) || istype(W, /obj/item/device/encryptionkey))) return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(keyslot) diff --git a/code/game/objects/items/devices/scanners/guide.dm b/code/game/objects/items/devices/scanners/guide.dm index 0765deea9c..11e49a35a3 100644 --- a/code/game/objects/items/devices/scanners/guide.dm +++ b/code/game/objects/items/devices/scanners/guide.dm @@ -86,7 +86,7 @@ if(organ) dat += "Organ damage - Give Peridaxon. Perform full body scan for targeted organ repair surgery.
" if(bloodloss) - dat += "Low blood volume - Commence blood transfusion via IV drip or provide blood-restorative chemicals (i.e. Iron)." + dat += "Low blood volume - Commence blood transfusion via IV drip or provide blood-restorative chemicals (e.g.: Copper for zorren and skrell, iron for the rest)." if(M.getToxLoss()) dat += "Toxins - Give Dylovene or Carthatoline. Vomitting is normal and helpful. Tends to be a symptom of larger issues, such as infection.
" if(M.getBruteLoss()) diff --git a/code/game/objects/items/devices/scanners/health.dm b/code/game/objects/items/devices/scanners/health.dm index 707009a31c..6d854e201c 100644 --- a/code/game/objects/items/devices/scanners/health.dm +++ b/code/game/objects/items/devices/scanners/health.dm @@ -304,14 +304,15 @@ var/blood_volume = H.vessel.get_reagent_amount("blood") var/blood_percent = round((blood_volume / H.species.blood_volume)*100) var/blood_type = H.dna.b_type + var/blood_reagent = H.species.blood_reagents if(blood_volume <= H.species.blood_volume*H.species.blood_level_danger) - dat += "Warning: Blood Level CRITICAL: [blood_percent]% [blood_volume]cl. Type: [blood_type]
" + dat += "Warning: Blood Level CRITICAL: [blood_percent]% [blood_volume]cl. Type: [blood_type]. Basis: [blood_reagent].
" else if(blood_volume <= H.species.blood_volume*H.species.blood_level_warning) - dat += "Warning: Blood Level VERY LOW: [blood_percent]% [blood_volume]cl. Type: [blood_type]
" + dat += "Warning: Blood Level VERY LOW: [blood_percent]% [blood_volume]cl. Type: [blood_type]. Basis: [blood_reagent].
" else if(blood_volume <= H.species.blood_volume*H.species.blood_level_safe) - dat += "Warning: Blood Level LOW: [blood_percent]% [blood_volume]cl. Type: [blood_type]
" + dat += "Warning: Blood Level LOW: [blood_percent]% [blood_volume]cl. Type: [blood_type]. Basis: [blood_reagent].
" else - dat += "Blood Level Normal: [blood_percent]% [blood_volume]cl. Type: [blood_type]
" + dat += "Blood Level Normal: [blood_percent]% [blood_volume]cl. Type: [blood_type]. Basis: [blood_reagent].
" dat += "Subject's pulse: [H.get_pulse(GETPULSE_TOOL)] bpm.
" // VORE Edit: Missed a linebreak here. if(istype(H.species, /datum/species/xenochimera)) // VOREStation Edit Start: Visible feedback for medmains on Xenochimera. if(H.stat == DEAD && H.revive_ready == REVIVING_READY && !H.hasnutriment()) diff --git a/code/game/objects/items/devices/spy_bug.dm b/code/game/objects/items/devices/spy_bug.dm index a92bf815b8..5f6eed3327 100644 --- a/code/game/objects/items/devices/spy_bug.dm +++ b/code/game/objects/items/devices/spy_bug.dm @@ -110,7 +110,7 @@ else to_chat(user, "Error: The device is linked to another monitor.") - else if(W.is_wrench() && user.a_intent != I_HURT) + else if(W.has_tool_quality(TOOL_WRENCH) && user.a_intent != I_HURT) if(isturf(loc)) anchored = !anchored diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm index dda476191b..1d073ab3fe 100644 --- a/code/game/objects/items/devices/suit_cooling.dm +++ b/code/game/objects/items/devices/suit_cooling.dm @@ -146,7 +146,7 @@ to_chat(user, "You switch \the [src] [on ? "on" : "off"].") /obj/item/device/suit_cooling_unit/attackby(obj/item/weapon/W as obj, mob/user as mob) - if (W.is_screwdriver()) + if (W.has_tool_quality(TOOL_SCREWDRIVER)) if(cover_open) cover_open = 0 to_chat(user, "You screw the panel into place.") @@ -237,7 +237,7 @@ return cell /obj/item/device/suit_cooling_unit/emergency/attackby(obj/item/weapon/W as obj, mob/user as mob) - if (W.is_screwdriver()) + if (W.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "This cooler's cell is permanently installed!") return diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm index 0ae3fd17b9..131aba4993 100644 --- a/code/game/objects/items/devices/taperecorder.dm +++ b/code/game/objects/items/devices/taperecorder.dm @@ -409,7 +409,7 @@ /obj/item/device/tape/attackby(obj/item/I, mob/user, params) - if(ruined && I.is_screwdriver()) + if(ruined && I.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You start winding the tape back in...") playsound(src, I.usesound, 50, 1) if(do_after(user, 120 * I.toolspeed, target = src)) diff --git a/code/game/objects/items/devices/ticket_printer.dm b/code/game/objects/items/devices/ticket_printer.dm index 971580295b..bf963b4338 100644 --- a/code/game/objects/items/devices/ticket_printer.dm +++ b/code/game/objects/items/devices/ticket_printer.dm @@ -57,3 +57,53 @@ /obj/item/weapon/paper/sec_ticket/update_icon() icon = icon icon_state = icon_state + + +/obj/item/device/ticket_printer/train + name = "permission ticket printer" + desc = "It prints permit tickets!" + icon = 'icons/obj/device_vr.dmi' + icon_state = "train_ticket_printer" + +/obj/item/device/ticket_printer/train/print_a_ticket(mob/user) + + var/ticket_name = sanitize(tgui_input_text(user, "The Name of the person you are issuing the ticket to.", "Name", max_length = 100)) + if(length(ticket_name) > 100) + tgui_alert_async(usr, "Entered name too long. 100 character limit.","Error") + return + if(!ticket_name) + return + var/details = sanitize(tgui_input_text(user, "What is the ticket for? This could be anything like travel to a destination or permission to do something! This is not official and does not override any rules or authorities on the station.", "Ticket Details", max_length = 200)) + if(length(details) > 200) + tgui_alert_async(usr, "Entered details too long. 200 character limit.","Error") + return + if(!details) + return + + var/turf/our_turf = get_turf(user) + + var/final = "

Permit Ticket


This ticket has been issued to
[capitalize(ticket_name)]
This permits them to:
[details]
Issued by:[user]
This ticket is non-refundable from the time of receipt. This ticket holds the authority of the issuer only and does not hold any authority over persons nor entities that were not involved in this transaction.
" + + var/obj/item/weapon/paper/permit_ticket/p = new /obj/item/weapon/paper/permit_ticket(our_turf) + + p.info = final + p.name = "Permit Ticket: [ticket_name]" + playsound(user, 'sound/items/ticket_printer.ogg', 75, 1) + + log_and_message_admins("has issued '[ticket_name]' a permit ticket: \"[details]\"", user) + last_print = world.time + +/obj/item/weapon/paper/permit_ticket + name = "Permit Ticket" + desc = "A ticket issued to permit someone to do something!" + icon = 'icons/obj/bureaucracy_vr.dmi' + icon_state = "permit_ticket" + +/obj/item/weapon/paper/permit_ticket/Initialize(mapload, text, title) + . = ..() + icon = 'icons/obj/bureaucracy_vr.dmi' + icon_state = "permit_ticket" + +/obj/item/weapon/paper/permit_ticket/update_icon() + icon = icon + icon_state = icon_state diff --git a/code/game/objects/items/magazine.dm b/code/game/objects/items/magazine.dm index 59640c4c01..1b8d03f5da 100644 --- a/code/game/objects/items/magazine.dm +++ b/code/game/objects/items/magazine.dm @@ -37,7 +37,6 @@ "LOSE WEIGHT THREE TIMES FASTER WITH THESE LOW-G MANEUVERS!", "SHOCKING FIGURES REVEAL MORE TEENS DIE TO UNATHI HONOUR DUELS THAN GUN VIOLENCE", "MY DAUGHTER JOINED A NEURAL COLLECTIVE AND NOW SHE CAN TASTE SPACETIME: FULL STORY INSIDE", - "WERE THE NAZIS PSYCHIC? ONE HISTORIAN TELLS ALL", "TAJARANS: CUTE AND CUDDLY, OR INFILTRATING THE GOVERNMENT? FIND OUT MORE INSIDE", "IS THE SOLAR GOVERNMENT CREATING AN AI SUPERINTELLIGENCE NEAR MERCURY? ONE EXPERT REVEALS SHOCKING INSIDER DETAILS!", "TOP TEN HISTORICAL FIGURES THAT WERE TWO PROMETHEANS IN A TRENCHCOAT", diff --git a/code/game/objects/items/shooting_range.dm b/code/game/objects/items/shooting_range.dm index bf132c7cf9..12423a91f3 100644 --- a/code/game/objects/items/shooting_range.dm +++ b/code/game/objects/items/shooting_range.dm @@ -33,8 +33,8 @@ /obj/item/target/attackby(obj/item/W as obj, mob/user as mob) - if (istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if (W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) cut_overlays() to_chat(usr, "You slice off [src]'s uneven chunks of aluminum and scorch marks.") diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index 1cb0b442d9..0c3e0765f5 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -263,6 +263,12 @@ affecting.salve() playsound(src, pick(apply_sounds), 25) +/obj/item/stack/medical/ointment/simple + name = "ointment paste" + desc = "A simple thick paste used to salve burns." + singular_name = "old-ointment" + icon_state = "old-ointment" + /obj/item/stack/medical/advanced/bruise_pack name = "advanced trauma kit" singular_name = "advanced trauma kit" diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm index 05de6afe05..fbd2328422 100644 --- a/code/game/objects/items/stacks/tiles/tile_types.dm +++ b/code/game/objects/items/stacks/tiles/tile_types.dm @@ -41,8 +41,8 @@ stacktype = material.stack_type /obj/item/stack/tile/attackby(obj/item/W as obj, mob/user as mob) - if (istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if (W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(can_weld == FALSE) to_chat("You can't reform these into their original components.") diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index 62e6bfa978..9b6ba7b992 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -432,6 +432,19 @@ drop_sound = 'sound/items/drop/soda.ogg' pickup_sound = 'sound/items/pickup/soda.ogg' + +/obj/item/trash/pasty + name = "pasty packaging" + icon_state = "pasty" + +/obj/item/trash/sausageroll + name = "sausage roll packaging" + icon_state = "sausageroll" + +/obj/item/trash/scotchegg + name = "scotch egg packaging" + icon_state = "scotchegg" + //Candy Bars (1-10) /obj/item/trash/candy/cb01 name = "\improper Tau Ceti Bar wrapper" diff --git a/code/game/objects/items/uav.dm b/code/game/objects/items/uav.dm index 2dc4cad3ee..20bb85d69b 100644 --- a/code/game/objects/items/uav.dm +++ b/code/game/objects/items/uav.dm @@ -118,7 +118,7 @@ visible_message("[user] pairs [I] to [nickname]") toggle_pairing() - else if(I.is_screwdriver() && cell) + else if(I.has_tool_quality(TOOL_SCREWDRIVER) && cell) if(do_after(user, 3 SECONDS, src)) to_chat(user, "You remove [cell] into [nickname].") playsound(src, I.usesound, 50, 1) diff --git a/code/game/objects/items/weapons/RMS_vr.dm b/code/game/objects/items/weapons/RMS_vr.dm index 92b8b8a20f..d52de11f16 100644 --- a/code/game/objects/items/weapons/RMS_vr.dm +++ b/code/game/objects/items/weapons/RMS_vr.dm @@ -250,7 +250,7 @@ return 1 /obj/item/weapon/rms/attackby(obj/item/W, mob/user) - if(W.is_multitool()) + if(W.has_tool_quality(TOOL_MULTITOOL)) overcharge = !overcharge if(overcharge) to_chat(user, "The Rapid Material Synthesizer quietly whirrs...") diff --git a/code/game/objects/items/weapons/candle.dm b/code/game/objects/items/weapons/candle.dm index 7663dfd7ff..8fc58d8664 100644 --- a/code/game/objects/items/weapons/candle.dm +++ b/code/game/objects/items/weapons/candle.dm @@ -26,8 +26,8 @@ /obj/item/weapon/flame/candle/attackby(obj/item/weapon/W as obj, mob/user as mob) ..() - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.isOn()) //Badasses dont get blinded by lighting their candle with a welding tool light("\The [user] casually lights the [src] with [W].") else if(istype(W, /obj/item/weapon/flame/lighter)) diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index 3d252a03a6..b2405e9d1b 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -623,15 +623,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM lit = 1 icon_state = "lighteron" playsound(src, activation_sound, 75, 1) - if(prob(95)) - user.visible_message("After a few attempts, [user] manages to light the [src].") - else - to_chat(user, "You burn yourself while lighting the lighter.") - if (user.get_left_hand() == src) - user.apply_damage(2,BURN,"l_hand") - else - user.apply_damage(2,BURN,"r_hand") - user.visible_message("After a few attempts, [user] manages to light the [src], they however burn their finger in the process.") + user.visible_message("After a few attempts, [user] manages to light the [src].") set_light(2, 0.5, "#FF9933") START_PROCESSING(SSobj, src) diff --git a/code/game/objects/items/weapons/circuitboards/computer/research.dm b/code/game/objects/items/weapons/circuitboards/computer/research.dm index 8de61a2b91..43ea3d3cd6 100644 --- a/code/game/objects/items/weapons/circuitboards/computer/research.dm +++ b/code/game/objects/items/weapons/circuitboards/computer/research.dm @@ -7,7 +7,7 @@ build_path = /obj/machinery/computer/rdconsole/core /obj/item/weapon/circuitboard/rdconsole/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, I.usesound, 50, 1) user.visible_message("\The [user] adjusts the jumper on \the [src]'s access protocol pins.", "You adjust the jumper on the access protocol pins.") if(build_path == /obj/machinery/computer/rdconsole/core) diff --git a/code/game/objects/items/weapons/circuitboards/machinery/research.dm b/code/game/objects/items/weapons/circuitboards/machinery/research.dm index 4305ecf180..380de53fd2 100644 --- a/code/game/objects/items/weapons/circuitboards/machinery/research.dm +++ b/code/game/objects/items/weapons/circuitboards/machinery/research.dm @@ -12,7 +12,7 @@ /obj/item/weapon/stock_parts/scanning_module = 1) /obj/item/weapon/circuitboard/rdserver/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, I.usesound, 50, 1) user.visible_message("\The [user] adjusts the jumper on \the [src]'s access protocol pins.", "You adjust the jumper on the access protocol pins.") if(build_path == /obj/machinery/r_n_d/server/core) diff --git a/code/game/objects/items/weapons/explosives.dm b/code/game/objects/items/weapons/explosives.dm index 0e9250611e..494984b170 100644 --- a/code/game/objects/items/weapons/explosives.dm +++ b/code/game/objects/items/weapons/explosives.dm @@ -29,11 +29,11 @@ return ..() /obj/item/weapon/plastique/attackby(var/obj/item/I, var/mob/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) open_panel = !open_panel to_chat(user, "You [open_panel ? "open" : "close"] the wire panel.") playsound(src, I.usesound, 50, 1) - else if(I.is_wirecutter() || istype(I, /obj/item/device/multitool) || istype(I, /obj/item/device/assembly/signaler )) + else if(I.has_tool_quality(TOOL_WIRECUTTER) || istype(I, /obj/item/device/multitool) || istype(I, /obj/item/device/assembly/signaler )) wires.Interact(user) else ..() diff --git a/code/game/objects/items/weapons/flamethrower.dm b/code/game/objects/items/weapons/flamethrower.dm index b20a44650e..287a174fbf 100644 --- a/code/game/objects/items/weapons/flamethrower.dm +++ b/code/game/objects/items/weapons/flamethrower.dm @@ -69,7 +69,7 @@ /obj/item/weapon/flamethrower/attackby(obj/item/W as obj, mob/user as mob) if(user.stat || user.restrained() || user.lying) return - if(W.is_wrench() && !status)//Taking this apart + if(W.has_tool_quality(TOOL_WRENCH) && !status)//Taking this apart var/turf/T = get_turf(src) if(weldtool) weldtool.loc = T @@ -84,7 +84,7 @@ qdel(src) return - if(W.is_screwdriver() && igniter && !lit) + if(W.has_tool_quality(TOOL_SCREWDRIVER) && igniter && !lit) status = !status to_chat(user, "[igniter] is now [status ? "secured" : "unsecured"]!") update_icon() diff --git a/code/game/objects/items/weapons/gift_wrappaper.dm b/code/game/objects/items/weapons/gift_wrappaper.dm index c30b47a7f4..6e4379367f 100644 --- a/code/game/objects/items/weapons/gift_wrappaper.dm +++ b/code/game/objects/items/weapons/gift_wrappaper.dm @@ -49,7 +49,7 @@ /obj/effect/spresent/attackby(obj/item/weapon/W as obj, mob/user as mob) ..() - if (!W.is_wirecutter()) + if (!W.has_tool_quality(TOOL_WIRECUTTER)) to_chat(user, "I need wirecutters for that.") return @@ -132,7 +132,7 @@ to_chat(user, "You MUST put the paper on a table!") if (W.w_class < ITEMSIZE_LARGE) var/obj/item/I = user.get_inactive_hand() - if(I.is_wirecutter()) + if(I.has_tool_quality(TOOL_WIRECUTTER)) var/a_used = 2 ** (src.w_class - 1) if (src.amount < a_used) to_chat(user, "You need more paper!") diff --git a/code/game/objects/items/weapons/grenades/chem_grenade.dm b/code/game/objects/items/weapons/grenades/chem_grenade.dm index 1a19b98910..c0c08d94fc 100644 --- a/code/game/objects/items/weapons/grenades/chem_grenade.dm +++ b/code/game/objects/items/weapons/grenades/chem_grenade.dm @@ -78,7 +78,7 @@ icon_state = initial(icon_state) +"_ass" name = "unsecured grenade with [beakers.len] containers[detonator?" and detonator":""]" stage = 1 - else if(W.is_screwdriver() && path != 2) + else if(W.has_tool_quality(TOOL_SCREWDRIVER) && path != 2) if(stage == 1) path = 1 if(beakers.len) diff --git a/code/game/objects/items/weapons/grenades/grenade.dm b/code/game/objects/items/weapons/grenades/grenade.dm index 9bdf650c64..38565fea0d 100644 --- a/code/game/objects/items/weapons/grenades/grenade.dm +++ b/code/game/objects/items/weapons/grenades/grenade.dm @@ -92,7 +92,7 @@ /obj/item/weapon/grenade/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) switch(det_time) if (1) det_time = 10 diff --git a/code/game/objects/items/weapons/id cards/id_stacks_vr.dm b/code/game/objects/items/weapons/id cards/id_stacks_vr.dm index 159041e571..e91d92ae44 100644 --- a/code/game/objects/items/weapons/id cards/id_stacks_vr.dm +++ b/code/game/objects/items/weapons/id cards/id_stacks_vr.dm @@ -191,6 +191,10 @@ name = "Entertainer's ID" initial_sprite_stack = list("base-stamp", "top-generic", "stamp-n", "stripe-brown") +/obj/item/weapon/card/id/civilian/entrepreneur + name = "Entrepreneur's ID" + initial_sprite_stack = list("base-stamp", "top-generic", "stamp-n", "stripe-gold") + /obj/item/weapon/card/id/civilian/clown name = "Clown's ID" initial_sprite_stack = list("base-stamp", "top-rainbow", "stamp-n") diff --git a/code/game/objects/items/weapons/implants/implantcircuits.dm b/code/game/objects/items/weapons/implants/implantcircuits.dm index ffe6547fcb..9dcc4853a0 100644 --- a/code/game/objects/items/weapons/implants/implantcircuits.dm +++ b/code/game/objects/items/weapons/implants/implantcircuits.dm @@ -39,7 +39,7 @@ return IC.examine(user) /obj/item/weapon/implant/integrated_circuit/attackby(var/obj/item/O, var/mob/user) - if(O.is_crowbar() || istype(O, /obj/item/device/integrated_electronics) || istype(O, /obj/item/integrated_circuit) || O.is_screwdriver() || istype(O, /obj/item/weapon/cell/device) ) + if(O.has_tool_quality(TOOL_CROWBAR) || istype(O, /obj/item/device/integrated_electronics) || istype(O, /obj/item/integrated_circuit) || O.has_tool_quality(TOOL_SCREWDRIVER) || istype(O, /obj/item/weapon/cell/device) ) IC.attackby(O, user) else ..() diff --git a/code/game/objects/items/weapons/improvised_components.dm b/code/game/objects/items/weapons/improvised_components.dm index 928a7c1a5d..c4272a5e10 100644 --- a/code/game/objects/items/weapons/improvised_components.dm +++ b/code/game/objects/items/weapons/improvised_components.dm @@ -7,7 +7,7 @@ thrown_force_divisor = 0.1 /obj/item/weapon/material/butterflyconstruction/attackby(obj/item/W as obj, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You finish the concealed blade weapon.") playsound(src, W.usesound, 50, 1) new /obj/item/weapon/material/butterfly(user.loc, material.name) diff --git a/code/game/objects/items/weapons/inducer_vr.dm b/code/game/objects/items/weapons/inducer_vr.dm index 0c39599071..b0519abce8 100644 --- a/code/game/objects/items/weapons/inducer_vr.dm +++ b/code/game/objects/items/weapons/inducer_vr.dm @@ -77,7 +77,7 @@ /obj/item/weapon/inducer/attackby(obj/item/W, mob/user) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) if(!opened) to_chat(user, "You open the battery compartment.") diff --git a/code/game/objects/items/weapons/keys.dm b/code/game/objects/items/weapons/keys.dm new file mode 100644 index 0000000000..fc13449767 --- /dev/null +++ b/code/game/objects/items/weapons/keys.dm @@ -0,0 +1,10 @@ +/obj/item/weapon/simple_key + name = "key" + desc = "A plain, old-timey key, as one might use to unlock a door." + icon = 'icons/obj/keys.dmi' + icon_state = "key_basetype" + drop_sound = 'sound/items/drop/ring.ogg' + pickup_sound = 'sound/items/pickup/ring.ogg' + w_class = ITEMSIZE_TINY + var/keyverb = "uses" //so simple_keys can be keycards instead, if desired + var/key_id = "placeholder_DONOTUSE" //needs to match the associated door's LOCK_ID var \ No newline at end of file diff --git a/code/game/objects/items/weapons/material/gravemarker.dm b/code/game/objects/items/weapons/material/gravemarker.dm index 83d65a6c3b..0505e6a8e6 100644 --- a/code/game/objects/items/weapons/material/gravemarker.dm +++ b/code/game/objects/items/weapons/material/gravemarker.dm @@ -12,7 +12,7 @@ var/epitaph = "" //A quick little blurb /obj/item/weapon/material/gravemarker/attackby(obj/item/weapon/W, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) var/carving_1 = sanitizeSafe(tgui_input_text(user, "Who is \the [src.name] for?", "Gravestone Naming", null, MAX_NAME_LEN), MAX_NAME_LEN) if(carving_1) user.visible_message("[user] starts carving \the [src.name].", "You start carving \the [src.name].") @@ -27,7 +27,7 @@ user.visible_message("[user] carves something into \the [src.name].", "You carve your message into \the [src.name].") epitaph += carving_2 update_icon() - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) user.visible_message("[user] starts carving \the [src.name].", "You start carving \the [src.name].") if(do_after(user, material.hardness * W.toolspeed)) material.place_dismantled_product(get_turf(src)) diff --git a/code/game/objects/items/weapons/material/material_armor.dm b/code/game/objects/items/weapons/material/material_armor.dm index 7fb5efad6e..7f16d57a1c 100644 --- a/code/game/objects/items/weapons/material/material_armor.dm +++ b/code/game/objects/items/weapons/material/material_armor.dm @@ -290,7 +290,7 @@ Protectiveness | Armor % unbreakable = FALSE name = "plate insert" desc = "used to craft armor plates for a plate carrier. Trim with a welder for light armor or add a second for heavy armor" - + /obj/item/weapon/material/armor_plating/attackby(var/obj/O, mob/user) if(istype(O, /obj/item/stack/cable_coil)) var/obj/item/stack/cable_coil/S = O @@ -323,12 +323,12 @@ Protectiveness | Armor % ..() //Make plating inserts for modular armour. -/obj/item/weapon/material/armor_plating/insert/attackby(var/obj/O, mob/user) +/obj/item/weapon/material/armor_plating/insert/attackby(var/obj/item/O, mob/user) . = ..() - if(istype(O, /obj/item/weapon/weldingtool)) - var /obj/item/weapon/weldingtool/S = O + if(O.has_tool_quality(TOOL_WELDER)) + var /obj/item/weapon/weldingtool/S = O.get_welder() if(S.remove_fuel(0,user)) if(!src || !S.isOn()) return to_chat(user, "You trim down the edges to size.") diff --git a/code/game/objects/items/weapons/material/shards.dm b/code/game/objects/items/weapons/material/shards.dm index 59cc5f3edd..dbae1eead7 100644 --- a/code/game/objects/items/weapons/material/shards.dm +++ b/code/game/objects/items/weapons/material/shards.dm @@ -47,8 +47,8 @@ alpha = 255 /obj/item/weapon/material/shard/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W, /obj/item/weapon/weldingtool) && material.shard_can_repair) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER) && material.shard_can_repair) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) material.place_sheet(loc) qdel(src) diff --git a/code/game/objects/items/weapons/melee/energy.dm b/code/game/objects/items/weapons/melee/energy.dm index 92234d4da0..7eaf6a8174 100644 --- a/code/game/objects/items/weapons/melee/energy.dm +++ b/code/game/objects/items/weapons/melee/energy.dm @@ -145,7 +145,7 @@ update_icon() else to_chat(user, "[src] already has a cell.") - else if(W.is_screwdriver() && bcell) + else if(W.has_tool_quality(TOOL_SCREWDRIVER) && bcell) bcell.update_icon() bcell.forceMove(get_turf(loc)) bcell = null diff --git a/code/game/objects/items/weapons/melee/energy_vr.dm b/code/game/objects/items/weapons/melee/energy_vr.dm index 62f3201619..61a16a2412 100644 --- a/code/game/objects/items/weapons/melee/energy_vr.dm +++ b/code/game/objects/items/weapons/melee/energy_vr.dm @@ -9,7 +9,7 @@ /obj/item/weapon/melee/energy/sword/altevian name = "plasma blade cutter" - desc = "A device used as both defense and operational purposes to cut through most metals. This is usually seen on engineers from the altevian hegemony when working salvaging derelicts." + desc = "A device that's primarily used to cut through hull plating and interior structure, but also doubles as a deadly weapon. It's normally seen in the hands of altevian engineers as they carry out salvage work." icon_state = "altevian-cutter" item_state = "altevian-cutter" icon = 'icons/obj/weapons_vr.dmi' @@ -22,4 +22,4 @@ if(active) icon_state = "[initial(icon_state)]_active" else - icon_state = initial(icon_state) \ No newline at end of file + icon_state = initial(icon_state) diff --git a/code/game/objects/items/weapons/melee/misc_vr.dm b/code/game/objects/items/weapons/melee/misc_vr.dm index d06c4b82bf..b14a36e1f4 100644 --- a/code/game/objects/items/weapons/melee/misc_vr.dm +++ b/code/game/objects/items/weapons/melee/misc_vr.dm @@ -13,22 +13,4 @@ sharp = TRUE edge = FALSE attack_verb = list("stabbed", "lunged at", "dextrously struck", "sliced", "lacerated", "impaled", "diced", "charioted") - hitsound = 'sound/weapons/bladeslice.ogg' - -/obj/item/weapon/melee/altevian_wrench - name = "Hull Systems Multi-Wrench" - desc = "A wrench designed with a method to help secure and access bolts, hatches, and airlocks on altevian designed vessels. This operates as nothing more than a massive wrench when used for other purposes." - icon = 'icons/obj/weapons_vr.dmi' - icon_state = "altevian-wrench" - item_icons = list( - slot_l_hand_str = 'icons/mob/items/lefthand_melee_vr.dmi', - slot_r_hand_str = 'icons/mob/items/righthand_melee_vr.dmi', - ) - slot_flags = SLOT_BACK - force = 25 - throwforce = 15 - w_class = ITEMSIZE_HUGE - sharp = FALSE - edge = FALSE - attack_verb = list("whacked", "slammed", "bashed", "wrenched", "fixed", "bolted", "clonked", "bonked") - hitsound = 'sound/weapons/smash.ogg' \ No newline at end of file + hitsound = 'sound/weapons/bladeslice.ogg' \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index df9886cbb6..1bac7d5ef5 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -54,6 +54,8 @@ /obj/item/weapon/weldingtool, /obj/item/weapon/tool/wirecutters, /obj/item/weapon/tool/wrench, + /obj/item/weapon/tool/transforming/powerdrill, + /obj/item/weapon/tool/transforming/jawsoflife, /obj/item/device/multitool, /obj/item/device/flashlight, /obj/item/weapon/cell/device, @@ -124,6 +126,8 @@ /obj/item/weapon/weldingtool, /obj/item/weapon/tool/wirecutters, /obj/item/weapon/tool/wrench, + /obj/item/weapon/tool/transforming/powerdrill, + /obj/item/weapon/tool/transforming/jawsoflife, /obj/item/device/multitool, /obj/item/device/flashlight, /obj/item/weapon/cell/device, @@ -153,8 +157,8 @@ /obj/item/weapon/storage/belt/utility/chief/full starts_with = list( - /obj/item/weapon/tool/screwdriver/power, - /obj/item/weapon/tool/crowbar/power, + /obj/item/weapon/tool/transforming/powerdrill, + /obj/item/weapon/tool/transforming/jawsoflife, /obj/item/weapon/weldingtool/experimental, /obj/item/device/multitool, /obj/item/stack/cable_coil/random_belt, @@ -169,11 +173,13 @@ storage_slots = 14 //twice the amount as a normal belt max_storage_space = ITEMSIZE_COST_NORMAL * 14 can_hold = list( - /obj/item/weapon/tool/crowbar, + /obj/item/weapon/tool/crowbar, /obj/item/weapon/tool/screwdriver, /obj/item/weapon/weldingtool, /obj/item/weapon/tool/wirecutters, /obj/item/weapon/tool/wrench, + /obj/item/weapon/tool/transforming/powerdrill, + /obj/item/weapon/tool/transforming/jawsoflife, /obj/item/device/multitool, /obj/item/device/flashlight, /obj/item/weapon/cell/device, @@ -507,6 +513,7 @@ /obj/item/weapon/anodevice, /obj/item/clothing/glasses, /obj/item/weapon/tool/wrench, + /obj/item/weapon/tool/transforming/powerdrill, /obj/item/weapon/storage/excavation, /obj/item/weapon/anobattery, /obj/item/device/ano_scanner, diff --git a/code/game/objects/items/weapons/storage/belt_vr.dm b/code/game/objects/items/weapons/storage/belt_vr.dm index 8321cfcbbb..a9d78c13fb 100644 --- a/code/game/objects/items/weapons/storage/belt_vr.dm +++ b/code/game/objects/items/weapons/storage/belt_vr.dm @@ -109,6 +109,7 @@ /obj/item/weapon/anodevice, /obj/item/weapon/tool/wrench, /obj/item/weapon/tool/screwdriver, + /obj/item/weapon/tool/transforming/powerdrill, /obj/item/weapon/storage/excavation, /obj/item/weapon/anobattery, /obj/item/weapon/reagent_containers/hypospray/autoinjector, @@ -147,6 +148,7 @@ /obj/item/weapon/clipboard, /obj/item/weapon/anodevice, /obj/item/weapon/tool/wrench, + /obj/item/weapon/tool/transforming/powerdrill, /obj/item/device/multitool, /obj/item/weapon/storage/excavation, /obj/item/weapon/anobattery, diff --git a/code/game/objects/items/weapons/storage/firstaid_vr.dm b/code/game/objects/items/weapons/storage/firstaid_vr.dm index 2fb20ed335..0b193e7e9b 100644 --- a/code/game/objects/items/weapons/storage/firstaid_vr.dm +++ b/code/game/objects/items/weapons/storage/firstaid_vr.dm @@ -41,7 +41,7 @@ /obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, /obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy, /obj/item/weapon/storage/pill_bottle/inaprovaline, - /obj/item/weapon/storage/pill_bottle/iron, + /obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/storage/pill_bottle/dexalin ) @@ -146,6 +146,12 @@ /obj/item/weapon/storage/pill_bottle/iron starts_with = list(/obj/item/weapon/reagent_containers/pill/iron = 14) +/obj/item/weapon/storage/pill_bottle/blood_regen + name = "pill bottle (blood regeneration)" + desc = "Contains iron and copper pills for treating bloodloss by employed species." + starts_with = list(/obj/item/weapon/reagent_containers/pill/iron = 9, + /obj/item/weapon/reagent_containers/pill/copper = 5) + /obj/item/weapon/storage/pill_bottle/adminordrazine name = "pill bottle (Adminordrazine)" desc = "It's magic. We don't have to explain it." @@ -265,7 +271,8 @@ starts_with = list( /obj/item/weapon/reagent_containers/pill/inaprovaline = 3, /obj/item/weapon/reagent_containers/pill/antitox = 3, - /obj/item/weapon/reagent_containers/pill/iron = 2, + /obj/item/weapon/reagent_containers/pill/iron = 1, + /obj/item/weapon/reagent_containers/pill/copper = 1, /obj/item/weapon/reagent_containers/pill/tramadol = 2, /obj/item/weapon/reagent_containers/pill/hyronalin = 3, /obj/item/weapon/reagent_containers/pill/spaceacillin diff --git a/code/game/objects/items/weapons/storage/pouches.dm b/code/game/objects/items/weapons/storage/pouches.dm index fa3ee2fe91..6eb775c2fe 100644 --- a/code/game/objects/items/weapons/storage/pouches.dm +++ b/code/game/objects/items/weapons/storage/pouches.dm @@ -76,6 +76,8 @@ /obj/item/weapon/weldingtool, /obj/item/weapon/tool/wirecutters, /obj/item/weapon/tool/wrench, + /obj/item/weapon/tool/transforming/powerdrill, + /obj/item/weapon/tool/transforming/jawsoflife, /obj/item/device/multitool, /obj/item/device/flashlight, /obj/item/weapon/cell/device, @@ -95,9 +97,9 @@ /obj/item/weapon/extinguisher/mini, /obj/item/weapon/tape_roll, /obj/item/device/integrated_electronics/wirer, - /obj/item/device/integrated_electronics/debugger, - /obj/item/weapon/shovel/spade, - /obj/item/stack/nanopaste, + /obj/item/device/integrated_electronics/debugger, + /obj/item/weapon/shovel/spade, + /obj/item/stack/nanopaste, /obj/item/device/geiger ) //Vorestation Add - make it the same as the tool-belt why was it not like this to start with wtf @@ -156,7 +158,7 @@ /obj/item/stack/nanopaste, /obj/item/taperoll/medical, /obj/item/weapon/storage/box/freezer, - /obj/item/clothing/mask/chewable/candy/lolli, + /obj/item/clothing/mask/chewable/candy/lolli, ) //Vorestation add - added a bunch of misc medical stuff max_storage_space = ITEMSIZE_COST_SMALL*3 //Vorestation Add - makes it slightly smaller since its a lot of stuff with pocket access remove_delay = 5 //Vorestation Add - .5 second delay, get the medical things faster because there is no reason to use this otherwise. still gotta stop moving to take things out. diff --git a/code/game/objects/items/weapons/storage/secure.dm b/code/game/objects/items/weapons/storage/secure.dm index 2fa1e33c03..ce0e105f01 100644 --- a/code/game/objects/items/weapons/storage/secure.dm +++ b/code/game/objects/items/weapons/storage/secure.dm @@ -43,7 +43,7 @@ playsound(src, "sparks", 50, 1) return - if (W.is_screwdriver()) + if (W.has_tool_quality(TOOL_SCREWDRIVER)) if (do_after(user, 20 * W.toolspeed)) src.open =! src.open playsound(src, W.usesound, 50, 1) diff --git a/code/game/objects/items/weapons/storage/toolbox.dm b/code/game/objects/items/weapons/storage/toolbox.dm index 9c6795aa12..fdd28c1a0e 100644 --- a/code/game/objects/items/weapons/storage/toolbox.dm +++ b/code/game/objects/items/weapons/storage/toolbox.dm @@ -97,9 +97,9 @@ /obj/item/weapon/storage/toolbox/syndicate/powertools starts_with = list( /obj/item/clothing/gloves/yellow, - /obj/item/weapon/tool/screwdriver/power, + /obj/item/weapon/tool/transforming/powerdrill, /obj/item/weapon/weldingtool/experimental, - /obj/item/weapon/tool/crowbar/power, + /obj/item/weapon/tool/transforming/jawsoflife, /obj/item/device/multitool, /obj/item/stack/cable_coil/random_belt, /obj/item/device/analyzer diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index 198eeda966..fc0bd1856d 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -328,7 +328,6 @@ description_antag = "This case will likely contain a charged fuel rod gun, and a few fuel rods to go with it. It can only hold the fuel rod gun, fuel rods, batteries, a screwdriver, and stock machine parts." force = 12 //Anti-rad lined i.e. Lead, probably gonna hurt a bit if you get bashed with it. can_hold = list(/obj/item/weapon/gun/magnetic/fuelrod, /obj/item/weapon/fuel_assembly, /obj/item/weapon/cell, /obj/item/weapon/stock_parts, /obj/item/weapon/tool/screwdriver) - cant_hold = list(/obj/item/weapon/tool/screwdriver/power) starts_with = list( /obj/item/weapon/gun/magnetic/fuelrod, /obj/item/weapon/fuel_assembly/deuterium, diff --git a/code/game/objects/items/weapons/storage/wallets.dm b/code/game/objects/items/weapons/storage/wallets.dm index bf6e0700c0..f2ea7da8a2 100644 --- a/code/game/objects/items/weapons/storage/wallets.dm +++ b/code/game/objects/items/weapons/storage/wallets.dm @@ -39,7 +39,6 @@ /obj/item/weapon/makeover, /obj/item/pizzavoucher //VOREStation edit ) - cant_hold = list(/obj/item/weapon/tool/screwdriver/power) slot_flags = SLOT_ID var/obj/item/weapon/card/id/front_id = null diff --git a/code/game/objects/items/weapons/syndie.dm b/code/game/objects/items/weapons/syndie.dm index 0f70a805dd..5e519f8f4f 100644 --- a/code/game/objects/items/weapons/syndie.dm +++ b/code/game/objects/items/weapons/syndie.dm @@ -106,7 +106,7 @@ /obj/item/weapon/flame/lighter/zippo/c4detonator/attackby(obj/item/weapon/W, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) detonator_mode = !detonator_mode playsound(src, W.usesound, 50, 1) to_chat(user, "You unscrew the top panel of \the [src] revealing a button.") diff --git a/code/game/objects/items/weapons/tanks/tanks.dm b/code/game/objects/items/weapons/tanks/tanks.dm index 7fbc4ff547..26ca107281 100644 --- a/code/game/objects/items/weapons/tanks/tanks.dm +++ b/code/game/objects/items/weapons/tanks/tanks.dm @@ -130,7 +130,7 @@ var/list/global/tank_gauge_cache = list() to_chat(user, "You attach the wires to the tank.") src.add_bomb_overlay() - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) if(wired && src.proxyassembly.assembly) to_chat(user, "You carefully begin clipping the wires that attach to the tank.") @@ -185,7 +185,7 @@ var/list/global/tank_gauge_cache = list() to_chat(user, "You need to wire the device up first.") - if(istype(W, /obj/item/weapon/weldingtool/)) + if(istype(W, /obj/item/weapon/weldingtool)) var/obj/item/weapon/weldingtool/WT = W if(WT.remove_fuel(1,user)) if(!valve_welded) diff --git a/code/game/objects/items/weapons/tools/crowbar.dm b/code/game/objects/items/weapons/tools/crowbar.dm index 06c1e53e07..8d7c1add85 100644 --- a/code/game/objects/items/weapons/tools/crowbar.dm +++ b/code/game/objects/items/weapons/tools/crowbar.dm @@ -72,34 +72,40 @@ toolspeed = 0.5 /obj/item/weapon/tool/crowbar/power - name = "jaws of life" - desc = "A set of jaws of life, compressed through the magic of science. It's fitted with a prying head." - icon_state = "jaws_pry" - item_state = "jawsoflife" - matter = list(MAT_METAL=150, MAT_SILVER=50) - origin_tech = list(TECH_MATERIAL = 2, TECH_ENGINEERING = 2) + name = "power pryer" + desc = "You shouldn't see this." usesound = 'sound/items/jaws_pry.ogg' force = 15 toolspeed = 0.25 - var/obj/item/weapon/tool/wirecutters/power/counterpart = null -/obj/item/weapon/tool/crowbar/power/New(newloc, no_counterpart = TRUE) - ..(newloc) - if(!counterpart && no_counterpart) - counterpart = new(src, FALSE) - counterpart.counterpart = src +/* + * Prybar + */ -/obj/item/weapon/tool/crowbar/power/Destroy() - if(counterpart) - counterpart.counterpart = null // So it can qdel cleanly. - QDEL_NULL(counterpart) - return ..() +/obj/item/weapon/tool/prybar + name = "pry bar" + desc = "A steel bar with a wedge, designed specifically for opening unpowered doors in an emergency. It comes in a variety of configurations - collect them all!" + icon = 'icons/obj/tools_vr.dmi' + icon_state = "prybar" + item_state = "crowbar" + slot_flags = SLOT_BELT + force = 4 + throwforce = 5 + pry = 1 + w_class = ITEMSIZE_SMALL + origin_tech = list(TECH_ENGINEERING = 1) + matter = list(MAT_STEEL = 30) + attack_verb = list("whapped", "smacked", "swatted", "thwacked", "hit") + usesound = 'sound/items/crowbar.ogg' + toolspeed = 1 + var/random_color = TRUE -/obj/item/weapon/tool/crowbar/power/attack_self(mob/user) - playsound(src, 'sound/items/change_jaws.ogg', 50, 1) - user.drop_item(src) - counterpart.forceMove(get_turf(src)) - counterpart.persist_storable = persist_storable - src.forceMove(counterpart) - user.put_in_active_hand(counterpart) - to_chat(user, "You attach the cutting jaws to [src].") +/obj/item/weapon/tool/prybar/red + icon_state = "prybar_red" + item_state = "crowbar_red" + random_color = FALSE + +/obj/item/weapon/tool/prybar/New() + if(random_color) + icon_state = "prybar[pick("","_green","_aubergine","_blue")]" + . = ..() \ No newline at end of file diff --git a/code/game/objects/items/weapons/tools/crowbar_vr.dm b/code/game/objects/items/weapons/tools/crowbar_vr.dm deleted file mode 100644 index b846a0e294..0000000000 --- a/code/game/objects/items/weapons/tools/crowbar_vr.dm +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Prybar - */ - -/obj/item/weapon/tool/prybar - name = "pry bar" - desc = "A steel bar with a wedge, designed specifically for opening unpowered doors in an emergency. It comes in a variety of configurations - collect them all!" - icon = 'icons/obj/tools_vr.dmi' - icon_state = "prybar" - item_state = "crowbar" - slot_flags = SLOT_BELT - force = 4 - throwforce = 5 - pry = 1 - w_class = ITEMSIZE_SMALL - origin_tech = list(TECH_ENGINEERING = 1) - matter = list(MAT_STEEL = 30) - attack_verb = list("whapped", "smacked", "swatted", "thwacked", "hit") - usesound = 'sound/items/crowbar.ogg' - toolspeed = 1 - var/random_color = TRUE - -/obj/item/weapon/tool/prybar/red - icon_state = "prybar_red" - item_state = "crowbar_red" - random_color = FALSE - -/obj/item/weapon/tool/prybar/New() - if(random_color) - icon_state = "prybar[pick("","_green","_aubergine","_blue")]" - . = ..() diff --git a/code/game/objects/items/weapons/tools/screwdriver.dm b/code/game/objects/items/weapons/tools/screwdriver.dm index 4598b69803..55e78d71de 100644 --- a/code/game/objects/items/weapons/tools/screwdriver.dm +++ b/code/game/objects/items/weapons/tools/screwdriver.dm @@ -106,42 +106,10 @@ toolspeed = 0.5 /obj/item/weapon/tool/screwdriver/power - name = "hand drill" - desc = "A simple powered hand drill. It's fitted with a screw bit." - icon_state = "drill_screw" - item_state = "drill" - matter = list(MAT_STEEL = 150, MAT_SILVER = 50) - origin_tech = list(TECH_MATERIAL = 2, TECH_ENGINEERING = 2) - slot_flags = SLOT_BELT + name = "power screwdriver" + desc = "You shouldn't see this." force = 8 - w_class = ITEMSIZE_SMALL - throwforce = 8 - throw_speed = 2 - throw_range = 3//it's heavier than a screw driver/wrench, so it does more damage, but can't be thrown as far attack_verb = list("drilled", "screwed", "jabbed", "whacked") hitsound = 'sound/items/drill_hit.ogg' usesound = 'sound/items/drill_use.ogg' - toolspeed = 0.25 - random_color = FALSE - var/obj/item/weapon/tool/wrench/power/counterpart = null - -/obj/item/weapon/tool/screwdriver/power/New(newloc, no_counterpart = TRUE) - ..(newloc) - if(!counterpart && no_counterpart) - counterpart = new(src, FALSE) - counterpart.counterpart = src - -/obj/item/weapon/tool/screwdriver/power/Destroy() - if(counterpart) - counterpart.counterpart = null // So it can qdel cleanly. - QDEL_NULL(counterpart) - return ..() - -/obj/item/weapon/tool/screwdriver/power/attack_self(mob/user) - playsound(src,'sound/items/change_drill.ogg',50,1) - user.drop_item(src) - counterpart.forceMove(get_turf(src)) - counterpart.persist_storable = persist_storable - src.forceMove(counterpart) - user.put_in_active_hand(counterpart) - to_chat(user, "You attach the bolt driver bit to [src].") + toolspeed = 0.25 \ No newline at end of file diff --git a/code/game/objects/items/weapons/tools/transforming.dm b/code/game/objects/items/weapons/tools/transforming.dm new file mode 100644 index 0000000000..41cf89a9c3 --- /dev/null +++ b/code/game/objects/items/weapons/tools/transforming.dm @@ -0,0 +1,182 @@ +/obj/item/weapon/tool/transforming + name = "transforming tool" + desc = "You should never see this..." + var/list/possible_tooltypes = list() + var/current_tooltype = 1 + var/obj/item/weapon/weldingtool/welder + var/weldertype = /obj/item/weapon/weldingtool/dummy + +/obj/item/weapon/tool/transforming/New(newloc, no_counterpart = TRUE) + ..(newloc) + if(TOOL_WELDER in possible_tooltypes) + welder = new weldertype(src) + on_tool_switch() + +/obj/item/weapon/tool/transforming/Destroy() + if(welder) + QDEL_NULL(welder) + ..() + +/obj/item/weapon/tool/transforming/get_welder() + return welder + +/obj/item/weapon/tool/transforming/attack_self(mob/user) + if(!possible_tooltypes.len || possible_tooltypes.len < 2) + return + if(current_tooltype == possible_tooltypes.len) + current_tooltype = 1 + else + current_tooltype++ + + on_tool_switch(user) + +/obj/item/weapon/tool/transforming/proc/on_tool_switch(var/mob/user) + return + +/obj/item/weapon/tool/transforming/jawsoflife + name = "jaws of life" + desc = "A set of jaws of life, compressed through the magic of science." + icon = 'icons/obj/tools.dmi' + icon_state = "jaws_pry" + item_state = "jawsoflife" + origin_tech = list(TECH_MATERIAL = 2, TECH_ENGINEERING = 2) + matter = list(MAT_METAL=150, MAT_SILVER=50) + usesound = 'sound/items/jaws_pry.ogg' + force = 15 + toolspeed = 0.25 + sharp = TRUE + edge = TRUE + attack_verb = list("attacked", "bashed", "battered", "bludgeoned", "whacked", "pinched", "nipped") + possible_tooltypes = list(TOOL_CROWBAR,TOOL_WIRECUTTER) + +/obj/item/weapon/tool/transforming/jawsoflife/on_tool_switch(var/mob/user) + switch(possible_tooltypes[current_tooltype]) + if(TOOL_CROWBAR) + desc = initial(desc) + " It's fitted with a prying head." + icon_state = "jaws_pry" + usesound = 'sound/items/jaws_pry.ogg' + tool_qualities = list(TOOL_CROWBAR) + if(user) + playsound(src, 'sound/items/change_jaws.ogg', 50, 1) + to_chat(user, "You attach the pry jaws to [src].") + if(TOOL_WIRECUTTER) + desc = initial(desc) + " It's fitted with a cutting head." + icon_state = "jaws_cutter" + usesound = 'sound/items/jaws_cut.ogg' + tool_qualities = list(TOOL_WIRECUTTER) + if(user) + playsound(src, 'sound/items/change_jaws.ogg', 50, 1) + to_chat(user, "You attach the cutting jaws to [src].") + +/obj/item/weapon/tool/transforming/powerdrill + name = "hand drill" + desc = "A simple powered hand drill." + icon = 'icons/obj/tools.dmi' + icon_state = "drill_bolt" + item_state = "drill" + origin_tech = list(TECH_MATERIAL = 2, TECH_ENGINEERING = 2) + matter = list(MAT_STEEL = 150, MAT_SILVER = 50) + hitsound = 'sound/items/drill_hit.ogg' + usesound = 'sound/items/drill_use.ogg' + force = 8 + throwforce = 8 + toolspeed = 0.25 + sharp = FALSE + edge = FALSE + attack_verb = list("drilled", "screwed", "jabbed", "whacked") + possible_tooltypes = list(TOOL_WRENCH,TOOL_SCREWDRIVER) + +/obj/item/weapon/tool/transforming/powerdrill/on_tool_switch(var/mob/user) + switch(possible_tooltypes[current_tooltype]) + if(TOOL_WRENCH) + desc = initial(desc) + " It's fitted with a bolt driver." + icon_state = "drill_bolt" + sharp = FALSE + tool_qualities = list(TOOL_WRENCH) + if(user) + playsound(src,'sound/items/change_drill.ogg',50,1) + to_chat(user, "You attach the bolt driver to [src].") + if(TOOL_SCREWDRIVER) + desc = initial(desc) + " It's fitted with a screw driver." + icon_state = "drill_screw" + sharp = TRUE + tool_qualities = list(TOOL_SCREWDRIVER) + if(user) + playsound(src,'sound/items/change_drill.ogg',50,1) + to_chat(user, "You attach the screw driver to [src].") + +/obj/item/weapon/tool/transforming/altevian + name = "Hull Systems Omni-Tool" + desc = "A big and bulky tool, used by Altevians for engineering duties. It's able to do the job of any regular tool while scaled up to a comically large size. It seems nanites are in play to help with adjusting the tip and handling some of the heavy lifting when in use." + icon = 'icons/obj/weapons_vr.dmi' + icon_state = "altevian-wrench" + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand_melee_vr.dmi', + slot_r_hand_str = 'icons/mob/items/righthand_melee_vr.dmi', + ) + slot_flags = SLOT_BACK + w_class = ITEMSIZE_HUGE + force = 25 + throwforce = 15 + toolspeed = 0.25 + sharp = FALSE + edge = FALSE + attack_verb = list("whacked", "slammed", "bashed", "wrenched", "fixed", "bolted", "clonked", "bonked") + hitsound = 'sound/weapons/smash.ogg' + possible_tooltypes = list(TOOL_WRENCH,TOOL_CROWBAR,TOOL_WIRECUTTER,TOOL_SCREWDRIVER,TOOL_MULTITOOL,TOOL_WELDER) + weldertype = /obj/item/weapon/weldingtool/dummy/altevian + +/obj/item/weapon/tool/transforming/altevian/on_tool_switch(var/mob/user) + switch(possible_tooltypes[current_tooltype]) + if(TOOL_WRENCH) + desc = initial(desc) + " It's currently in bolting mode." + icon_state = "altevian-wrench" + usesound = 'sound/items/ratchet.ogg' + tool_qualities = list(TOOL_WRENCH) + if(user) + playsound(src,'sound/items/ratchet.ogg',50,1) + to_chat(user, "You reconfigure [src] into bolting mode.") + if(TOOL_CROWBAR) + desc = initial(desc) + " It's currently in prying mode." + icon_state = "altevian-crowbar" + usesound = 'sound/items/crowbar.ogg' + tool_qualities = list(TOOL_CROWBAR) + if(user) + playsound(src,'sound/items/ratchet.ogg',50,1) + to_chat(user, "You reconfigure [src] into prying mode.") + if(TOOL_WIRECUTTER) + desc = initial(desc) + " It's currently in cutting mode." + icon_state = "altevian-wirecutter" + usesound = 'sound/items/wirecutter.ogg' + tool_qualities = list(TOOL_WIRECUTTER) + if(user) + playsound(src,'sound/items/ratchet.ogg',50,1) + to_chat(user, "You reconfigure [src] into cutting mode.") + if(TOOL_SCREWDRIVER) + desc = initial(desc) + " It's currently in screwing mode." + icon_state = "altevian-screwdriver" + usesound = 'sound/items/screwdriver.ogg' + tool_qualities = list(TOOL_SCREWDRIVER) + if(user) + playsound(src,'sound/items/ratchet.ogg',50,1) + to_chat(user, "You reconfigure [src] into screwing mode.") + if(TOOL_MULTITOOL) + desc = initial(desc) + " It's currently in pulsing mode." + icon_state = "altevian-pulser" + usesound = 'sound/items/screwdriver.ogg' + tool_qualities = list(TOOL_MULTITOOL) + if(user) + playsound(src,'sound/items/ratchet.ogg',50,1) + to_chat(user, "You reconfigure [src] into pulsing mode.") + if(TOOL_WELDER) + desc = initial(desc) + " It's currently in welding mode." + icon_state = "altevian-welder-on" + welder.usesound = 'sound/items/Welder2.ogg' + usesound = 'sound/items/Welder2.ogg' + tool_qualities = list(TOOL_WELDER) + if(user) + playsound(src,'sound/items/ratchet.ogg',50,1) + to_chat(user, "You reconfigure [src] into welding mode.") + +/obj/item/weapon/weldingtool/dummy/altevian + toolspeed = 0.25 diff --git a/code/game/objects/items/weapons/tools/weldingtool.dm b/code/game/objects/items/weapons/tools/weldingtool.dm index f531cfed55..5906313f9c 100644 --- a/code/game/objects/items/weapons/tools/weldingtool.dm +++ b/code/game/objects/items/weapons/tools/weldingtool.dm @@ -41,6 +41,7 @@ toolspeed = 1 drop_sound = 'sound/items/drop/weldingtool.ogg' pickup_sound = 'sound/items/pickup/weldingtool.ogg' + tool_qualities = list(TOOL_WELDER) /obj/item/weapon/weldingtool/Initialize() . = ..() @@ -58,6 +59,9 @@ STOP_PROCESSING(SSobj, src) return ..() +/obj/item/weapon/weldingtool/get_welder() + return src + /obj/item/weapon/weldingtool/examine(mob/user) . = ..() if(max_fuel && loc == user) @@ -690,4 +694,22 @@ else setWelding(FALSE, M.occupant) + +/obj/item/weapon/weldingtool/dummy + name = "dummy welding tool" + desc = "you shouldn't be reading this. Tell a dev!" + welding = TRUE + +/obj/item/weapon/weldingtool/dummy/process() + return + +/obj/item/weapon/weldingtool/dummy/get_fuel() + return get_max_fuel() + +/obj/item/weapon/weldingtool/dummy/remove_fuel(var/amount = 1, var/mob/M = null) + return TRUE + +/obj/item/weapon/weldingtool/dummy/isOn() + return TRUE + #undef WELDER_FUEL_BURN_INTERVAL diff --git a/code/game/objects/items/weapons/tools/wirecutters.dm b/code/game/objects/items/weapons/tools/wirecutters.dm index 2c43b963e1..8b71f8af84 100644 --- a/code/game/objects/items/weapons/tools/wirecutters.dm +++ b/code/game/objects/items/weapons/tools/wirecutters.dm @@ -98,35 +98,8 @@ reach = 2 /obj/item/weapon/tool/wirecutters/power - name = "jaws of life" - desc = "A set of jaws of life, compressed through the magic of science. It's fitted with a cutting head." - icon_state = "jaws_cutter" - item_state = "jawsoflife" - origin_tech = list(TECH_MATERIAL = 2, TECH_ENGINEERING = 2) - matter = list(MAT_METAL=150, MAT_SILVER=50) + name = "power cutters" + desc = "You shouldn't see this." usesound = 'sound/items/jaws_cut.ogg' force = 15 - toolspeed = 0.25 - random_color = FALSE - var/obj/item/weapon/tool/crowbar/power/counterpart = null - -/obj/item/weapon/tool/wirecutters/power/New(newloc, no_counterpart = TRUE) - ..(newloc) - if(!counterpart && no_counterpart) - counterpart = new(src, FALSE) - counterpart.counterpart = src - -/obj/item/weapon/tool/wirecutters/power/Destroy() - if(counterpart) - counterpart.counterpart = null // So it can qdel cleanly. - QDEL_NULL(counterpart) - return ..() - -/obj/item/weapon/tool/wirecutters/power/attack_self(mob/user) - playsound(src, 'sound/items/change_jaws.ogg', 50, 1) - user.drop_item(src) - counterpart.forceMove(get_turf(src)) - counterpart.persist_storable = persist_storable - src.forceMove(counterpart) - user.put_in_active_hand(counterpart) - to_chat(user, "You attach the pry jaws to [src].") + toolspeed = 0.25 \ No newline at end of file diff --git a/code/game/objects/items/weapons/tools/wrench.dm b/code/game/objects/items/weapons/tools/wrench.dm index 8745e65a1c..2b1a3e30a8 100644 --- a/code/game/objects/items/weapons/tools/wrench.dm +++ b/code/game/objects/items/weapons/tools/wrench.dm @@ -74,37 +74,10 @@ origin_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 5) /obj/item/weapon/tool/wrench/power - name = "hand drill" - desc = "A simple powered hand drill. It's fitted with a bolt bit." - icon_state = "drill_bolt" - item_state = "drill" + name = "power wrench" + desc = "You shouldn't see this." usesound = 'sound/items/drill_use.ogg' - matter = list(MAT_STEEL = 150, MAT_SILVER = 50) - origin_tech = list(TECH_MATERIAL = 2, TECH_ENGINEERING = 2) force = 8 - w_class = ITEMSIZE_SMALL throwforce = 8 attack_verb = list("drilled", "screwed", "jabbed") toolspeed = 0.25 - var/obj/item/weapon/tool/screwdriver/power/counterpart = null - -/obj/item/weapon/tool/wrench/power/New(newloc, no_counterpart = TRUE) - ..(newloc) - if(!counterpart && no_counterpart) - counterpart = new(src, FALSE) - counterpart.counterpart = src - -/obj/item/weapon/tool/wrench/power/Destroy() - if(counterpart) - counterpart.counterpart = null // So it can qdel cleanly. - QDEL_NULL(counterpart) - return ..() - -/obj/item/weapon/tool/wrench/power/attack_self(mob/user) - playsound(src,'sound/items/change_drill.ogg',50,1) - user.drop_item(src) - counterpart.forceMove(get_turf(src)) - counterpart.persist_storable = persist_storable - src.forceMove(counterpart) - user.put_in_active_hand(counterpart) - to_chat(user, "You attach the screw driver bit to [src].") diff --git a/code/game/objects/items/weapons/traps.dm b/code/game/objects/items/weapons/traps.dm index c183bc5c76..7bc406166c 100644 --- a/code/game/objects/items/weapons/traps.dm +++ b/code/game/objects/items/weapons/traps.dm @@ -244,7 +244,7 @@ var/inc_damage = W.force - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) if(!shock(user, 100, pick(BP_L_HAND, BP_R_HAND))) playsound(src, W.usesound, 100, 1) inc_damage *= 3 diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index 0f2ddb04fd..1cb0175267 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -25,8 +25,8 @@ /obj/random/tool/powermaint/item_to_spawn() return pick(prob(320);/obj/random/tool, - prob(1);/obj/item/weapon/tool/screwdriver/power, - prob(1);/obj/item/weapon/tool/wirecutters/power, + prob(1);/obj/item/weapon/tool/transforming/powerdrill, + prob(1);/obj/item/weapon/tool/transforming/jawsoflife, prob(15);/obj/item/weapon/weldingtool/electric, prob(5);/obj/item/weapon/weldingtool/experimental) @@ -36,8 +36,8 @@ icon_state = "tool_2" /obj/random/tool/power/item_to_spawn() - return pick(/obj/item/weapon/tool/screwdriver/power, - /obj/item/weapon/tool/wirecutters/power, + return pick(/obj/item/weapon/tool/transforming/powerdrill, + /obj/item/weapon/tool/transforming/jawsoflife, /obj/item/weapon/weldingtool/electric, /obj/item/weapon/weldingtool/experimental) @@ -215,7 +215,7 @@ prob(1);/obj/item/weapon/storage/pill_bottle/dermaline, prob(1);/obj/item/weapon/storage/pill_bottle/dexalin_plus, prob(1);/obj/item/weapon/storage/pill_bottle/bicaridine, - prob(1);/obj/item/weapon/storage/pill_bottle/iron) + prob(1);/obj/item/weapon/storage/pill_bottle/blood_regen) /obj/random/medical/lite name = "Random Medicine" @@ -1111,3 +1111,32 @@ /obj/item/weapon/storage/box/donkpockets/honk, /obj/item/weapon/storage/box/donkpockets/gondola, /obj/item/weapon/storage/box/donkpockets/berry) + +/obj/random/bluespace + name = "Random Bluespace Item" + desc = "This is a random Bluespace item." + icon_state = "bluespace" + +/obj/random/bluespace/item_to_spawn() + return pick( + prob(20);/obj/item/weapon/gun/energy/sizegun, + prob(20);/obj/item/device/slow_sizegun, + prob(20);/obj/item/clothing/accessory/collar/shock/bluespace, + prob(4);/obj/item/weapon/reagent_containers/glass/beaker/bluespace, + prob(4);/obj/item/device/bodysnatcher, + prob(10);/obj/item/clothing/under/hyperfiber, + prob(10);/obj/item/clothing/under/hyperfiber/bluespace, + prob(20);/obj/item/weapon/implant/sizecontrol, + prob(2);/obj/item/weapon/storage/bag/ore/holding, + prob(2);/obj/item/weapon/storage/backpack/holding, + prob(2);/obj/item/weapon/storage/backpack/holding/duffle, + prob(2);/obj/item/weapon/storage/bag/trash/holding, + prob(2);/obj/item/weapon/storage/pouch/holding, + prob(2);/obj/item/weapon/storage/belt/medical/holding, + prob(2);/obj/item/weapon/storage/belt/utility/holding, + prob(2);/obj/item/device/perfect_tele, + prob(8);/obj/item/capture_crystal/random, + prob(10);/obj/item/weapon/bluespace_harpoon, + prob(10);/obj/item/weapon/bluespace_crystal, + prob(1);/obj/item/clothing/glasses/graviton + ) \ No newline at end of file diff --git a/code/game/objects/random/misc_vr.dm b/code/game/objects/random/misc_vr.dm index ecd7468d13..f16d2385d8 100644 --- a/code/game/objects/random/misc_vr.dm +++ b/code/game/objects/random/misc_vr.dm @@ -235,3 +235,134 @@ prob(5);/obj/item/organ/internal/stomach, prob(5);/obj/item/organ/internal/voicebox, ) + +/obj/random/potion + name = "random potion" + desc = "A random potion." + icon_state = "potion" + spawn_nothing_percentage = 0 + +/obj/random/potion/item_to_spawn() + return pick(prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/healing, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/greater_healing, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/water, + prob(8);/obj/item/weapon/reagent_containers/glass/bottle/potion/regeneration, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/panacea, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/magic, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/lightness, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/SOP, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/shrink, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/growth, + prob(20);/obj/item/weapon/reagent_containers/glass/bottle/potion/pain, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/faerie, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/speed, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/attractiveness, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/girljuice, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/boyjuice, + prob(4);/obj/item/weapon/reagent_containers/glass/bottle/potion/badpolymorph, + prob(2);/obj/item/weapon/reagent_containers/glass/bottle/potion/bonerepair, + prob(1);/obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph + ) + +/obj/random/potion_ingredient + name = "random potion ingredient" + desc = "A random potion." + icon_state = "ingredient" + spawn_nothing_percentage = 0 + +/obj/random/potion_ingredient/item_to_spawn() + return pick(prob(10);/obj/item/weapon/potion_material/blood_ruby, + prob(2);/obj/item/weapon/potion_material/ruby_eye, + prob(10);/obj/item/weapon/potion_material/golden_scale, + prob(10);/obj/item/weapon/potion_material/frozen_dew, + prob(10);/obj/item/weapon/potion_material/living_coral, + prob(4);/obj/item/weapon/potion_material/rare_horn, + prob(5);/obj/item/weapon/potion_material/moldy_bread, + prob(5);/obj/item/weapon/potion_material/glowing_gem, + prob(5);/obj/item/weapon/potion_material/giant_toe, + prob(2);/obj/item/weapon/potion_material/flesh_of_the_stars, + prob(2);/obj/item/weapon/potion_material/spinning_poppy, + prob(2);/obj/item/weapon/potion_material/salt_mage, + prob(10);/obj/item/weapon/potion_material/golden_grapes, + prob(5);/obj/item/weapon/potion_material/fairy_house, + prob(5);/obj/item/weapon/potion_material/thorny_bulb, + prob(5);/obj/item/weapon/potion_material/ancient_egg, + prob(5);/obj/item/weapon/potion_material/crown_stem, + prob(2);/obj/item/weapon/potion_material/red_ingot, + prob(2);/obj/item/weapon/potion_material/soft_diamond, + prob(2);/obj/item/weapon/potion_material/solid_mist, + prob(1);/obj/item/weapon/potion_material/spider_leg, + prob(1);/obj/item/weapon/potion_material/folded_dark + ) + +/obj/random/potion_base + name = "random potion base" + desc = "A random potion base." + icon_state = "base" + spawn_nothing_percentage = 0 + +/obj/random/potion_base/item_to_spawn() + return pick(prob(10);/obj/item/weapon/potion_base/aqua_regia, + prob(10);/obj/item/weapon/potion_base/ichor, + prob(10);/obj/item/weapon/potion_base/alkahest + ) + +/obj/random/fantasy_item + name = "random fantasy item" + desc = "A random fantasy item." + icon_state = "fantasy" + spawn_nothing_percentage = 0 + +/obj/random/fantasy_item/item_to_spawn() + return pick(prob(3);/obj/item/device/healthanalyzer/scroll, + prob(10);/obj/item/weapon/gun/energy/taser/magic, + prob(5);/obj/item/weapon/bluespace_harpoon/wand, + prob(10);/obj/item/device/slow_sizegun/magic, + prob(10);/obj/item/clothing/gloves/bluespace/magic, + prob(30);/obj/item/weapon/coin/gold, + prob(30);/obj/item/weapon/coin/silver, + prob(30);/obj/item/weapon/coin/platinum, + prob(20);/obj/item/weapon/material/sword/rapier, + prob(20);/obj/item/weapon/material/sword/longsword, + prob(20);/obj/item/clothing/head/helmet/bucket/wood, + prob(3);/obj/item/weapon/tool/wirecutters/alien/magic, + prob(3);/obj/item/weapon/tool/crowbar/alien/magic, + prob(3);/obj/item/weapon/tool/screwdriver/alien/magic, + prob(3);/obj/item/weapon/weldingtool/alien/magic, + prob(3);/obj/item/weapon/tool/wrench/alien/magic, + prob(3);/obj/item/weapon/surgical/bone_clamp/alien/magic, + prob(10);/obj/item/stack/material/gold, + prob(10);/obj/item/stack/material/silver, + prob(3);/obj/item/weapon/bone/skull, + prob(20);/obj/item/weapon/material/twohanded/staff, + prob(3);/obj/item/weapon/gun/energy/hooklauncher/ring, + prob(3);/obj/item/toy/eight_ball, + prob(3);/obj/item/device/perfect_tele/magic + ) + +/obj/random/fantasy_item/better + name = "better random fantasy item" + desc = "A random fantasy item." + icon_state = "fantasy2" + spawn_nothing_percentage = 0 + +/obj/random/fantasy_item/better/item_to_spawn() + return pick(prob(10);/obj/item/device/healthanalyzer/scroll, + prob(10);/obj/item/weapon/gun/energy/taser/magic, + prob(10);/obj/item/weapon/bluespace_harpoon/wand, + prob(10);/obj/item/device/slow_sizegun/magic, + prob(10);/obj/item/clothing/gloves/bluespace/magic, + prob(10);/obj/item/weapon/tool/wirecutters/alien/magic, + prob(10);/obj/item/weapon/tool/crowbar/alien/magic, + prob(10);/obj/item/weapon/tool/screwdriver/alien/magic, + prob(10);/obj/item/weapon/weldingtool/alien/magic, + prob(10);/obj/item/weapon/tool/wrench/alien/magic, + prob(10);/obj/item/weapon/surgical/bone_clamp/alien/magic, + prob(10);/obj/item/weapon/material/twohanded/staff, + prob(10);/obj/item/weapon/gun/energy/hooklauncher/ring, + prob(10);/obj/item/device/perfect_tele/magic, + prob(10);/obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph + ) diff --git a/code/game/objects/structures/artstuff.dm b/code/game/objects/structures/artstuff.dm index ea9cf8eb06..072bd9cddb 100644 --- a/code/game/objects/structures/artstuff.dm +++ b/code/game/objects/structures/artstuff.dm @@ -394,7 +394,7 @@ frame_canvas(user, I) else if(current_canvas && current_canvas.painting_name == initial(current_canvas.painting_name) && istype(I,/obj/item/weapon/pen)) try_rename(user) - else if(current_canvas && I.is_wirecutter()) + else if(current_canvas && I.has_tool_quality(TOOL_WIRECUTTER)) unframe_canvas(user) else return ..() diff --git a/code/game/objects/structures/catwalk.dm b/code/game/objects/structures/catwalk.dm index ae5dc0c666..ffed750917 100644 --- a/code/game/objects/structures/catwalk.dm +++ b/code/game/objects/structures/catwalk.dm @@ -87,12 +87,12 @@ qdel(src) /obj/structure/catwalk/attackby(obj/item/C as obj, mob/user as mob) - if(istype(C, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = C + if(C.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = C.get_welder() if(WT.isOn() && WT.remove_fuel(0, user)) deconstruct(user) return - if(C.is_crowbar() && plated_tile) + if(C.has_tool_quality(TOOL_CROWBAR) && plated_tile) hatch_open = !hatch_open if(hatch_open) playsound(src, 'sound/items/Crowbar.ogg', 100, 2) diff --git a/code/game/objects/structures/crates_lockers/__closets.dm b/code/game/objects/structures/crates_lockers/__closets.dm index 05661ccedb..f56c0269a4 100644 --- a/code/game/objects/structures/crates_lockers/__closets.dm +++ b/code/game/objects/structures/crates_lockers/__closets.dm @@ -271,7 +271,7 @@ return /obj/structure/closet/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(opened) if(anchored) user.visible_message("\The [user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") @@ -291,8 +291,8 @@ return 0 if(istype(W,/obj/item/tk_grab)) return 0 - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.remove_fuel(0,user)) if(!WT.isOn()) return @@ -326,8 +326,8 @@ else if(seal_tool) if(istype(W, seal_tool)) var/obj/item/weapon/S = W - if(istype(S, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = S + if(S.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = S.get_welder() if(!WT.remove_fuel(0,user)) if(!WT.isOn()) return diff --git a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm index b967465ac9..25554e9b4c 100644 --- a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm +++ b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm @@ -1441,6 +1441,10 @@ decals = null color = COLOR_OFF_WHITE +/decl/closet_appearance/wall_double/wooden + decals = null + color = WOOD_COLOR_RICH + /decl/closet_appearance/wall_double/medical decals = null color = COLOR_OFF_WHITE @@ -1578,6 +1582,15 @@ /decl/closet_appearance/wall_double/generic_civ color = COLOR_DARK_BLUE_GRAY +/decl/closet_appearance/wall_double/casino + color = COLOR_GRAY20 + decals = null + extra_decals = list( + "stripe_outer" = COLOR_GOLD, + "stripe_inner" = COLOR_ORANGE, + "thaler" = COLOR_GREEN + ) + // Carts /decl/closet_appearance/cart color = COLOR_GRAY20 diff --git a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm index 19d3f8b452..eb69ff63b5 100644 --- a/code/game/objects/structures/crates_lockers/closets/egg_vr.dm +++ b/code/game/objects/structures/crates_lockers/closets/egg_vr.dm @@ -24,7 +24,7 @@ icon_state = icon_closed /obj/structure/closet/secure_closet/egg/attackby(obj/item/weapon/W, mob/user as mob) //This also prevents crew from welding the eggs and making them unable to be opened. - if(istype(W, /obj/item/weapon/weldingtool)) + if(W.has_tool_quality(TOOL_WELDER)) src.dump_contents() qdel(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm b/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm index 85b9367b7d..3f7f75bfc2 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm @@ -54,7 +54,7 @@ to_chat(user, "Access Denied") /obj/structure/closet/secure_closet/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(opened) if(anchored) user.visible_message("\The [user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") @@ -90,7 +90,7 @@ spark_system.start() playsound(src, 'sound/weapons/blade1.ogg', 50, 1) playsound(src, "sparks", 50, 1) - else if(istype(W,/obj/item/weapon/packageWrap) || istype(W,/obj/item/weapon/weldingtool)) + else if(istype(W,/obj/item/weapon/packageWrap) || W.has_tool_quality(TOOL_WELDER)) return ..(W,user) else togglelock(user) diff --git a/code/game/objects/structures/crates_lockers/closets/walllocker.dm b/code/game/objects/structures/crates_lockers/closets/walllocker.dm index 1f0f0f6956..35c520d375 100644 --- a/code/game/objects/structures/crates_lockers/closets/walllocker.dm +++ b/code/game/objects/structures/crates_lockers/closets/walllocker.dm @@ -80,6 +80,27 @@ /obj/structure/closet/walllocker/medical/east pixel_x = 32 dir = EAST + +/obj/structure/closet/walllocker/wooden + name = "wooden cabinet" + desc = "A wall mounted storage cabinet." + closet_appearance = /decl/closet_appearance/wall_double/wooden + +/obj/structure/closet/walllocker/wooden/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker/wooden/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker/wooden/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker/wooden/east + pixel_x = 32 + dir = EAST //VOREStation Add End //double-size "cabinet" lockers, from Killian @@ -315,6 +336,25 @@ pixel_x = 32 dir = EAST +/obj/structure/closet/walllocker_double/casino + closet_appearance = /decl/closet_appearance/wall_double/casino + +/obj/structure/closet/walllocker_double/casino/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/casino/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/casino/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/casino/east + pixel_x = 32 + dir = EAST + /obj/structure/closet/walllocker_double/cargo desc = "A wall mounted cabinet. This one is in cargo colors." closet_appearance = /decl/closet_appearance/wall_double/cargo diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm index d48958a704..1aa4e7c1fa 100644 --- a/code/game/objects/structures/crates_lockers/crates.dm +++ b/code/game/objects/structures/crates_lockers/crates.dm @@ -90,7 +90,7 @@ src.set_dir(turn(src.dir, 90)) /obj/structure/closet/crate/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench() && istype(src,/obj/structure/closet/crate/bin)) + if(W.has_tool_quality(TOOL_WRENCH) && istype(src,/obj/structure/closet/crate/bin)) return ..() else if(opened) if(isrobot(user)) @@ -117,7 +117,7 @@ user.drop_item() W.forceMove(src) return - else if(W.is_wirecutter()) + else if(W.has_tool_quality(TOOL_WIRECUTTER)) if(rigged) to_chat(user , "You cut away the wiring.") playsound(src, W.usesound, 100, 1) @@ -730,6 +730,15 @@ open_sound = 'sound/effects/wooden_closet_open.ogg' close_sound = 'sound/effects/wooden_closet_close.ogg' +//Chest +/obj/structure/closet/crate/chest + name = "chest" + desc = "A fancy chest made from wood and lined with red velvet." + icon = 'icons/obj/closets/chest.dmi' + closet_appearance = null + open_sound = 'sound/effects/wooden_closet_open.ogg' + close_sound = 'sound/effects/wooden_closet_close.ogg' + //Mining Cart /obj/structure/closet/crate/miningcar name = "mining cart" diff --git a/code/game/objects/structures/crates_lockers/largecrate.dm b/code/game/objects/structures/crates_lockers/largecrate.dm index 6b338895e3..fdb658daac 100644 --- a/code/game/objects/structures/crates_lockers/largecrate.dm +++ b/code/game/objects/structures/crates_lockers/largecrate.dm @@ -25,7 +25,7 @@ var/turf/T = get_turf(src) if(!T) to_chat(user, "You can't open this here!") - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) new /obj/item/stack/material/wood(src) for(var/atom/movable/AM in contents) @@ -55,7 +55,7 @@ icon_state = "vehiclecrate" /obj/structure/largecrate/hoverpod/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) var/obj/item/mecha_parts/mecha_equipment/ME var/obj/mecha/working/hoverpod/H = new (loc) diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index 85737c2481..7b9f9c0a4a 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -3,7 +3,7 @@ desc = "You hear chirping and cawing inside the crate. It sounds like there are a lot of birds in there..." /obj/structure/largecrate/birds/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) new /obj/item/stack/material/wood(src) new /mob/living/simple_mob/animal/passive/bird(src) new /mob/living/simple_mob/animal/passive/bird/parrot/kea(src) diff --git a/code/game/objects/structures/crates_lockers/vehiclecage.dm b/code/game/objects/structures/crates_lockers/vehiclecage.dm index c3a04e9267..944da792f8 100644 --- a/code/game/objects/structures/crates_lockers/vehiclecage.dm +++ b/code/game/objects/structures/crates_lockers/vehiclecage.dm @@ -31,11 +31,11 @@ var/turf/T = get_turf(src) if(!T) to_chat(user, "You can't open this here!") - if(W.is_wrench() && do_after(user, 60 * W.toolspeed, src)) + if(W.has_tool_quality(TOOL_WRENCH) && do_after(user, 60 * W.toolspeed, src)) playsound(src, W.usesound, 50, 1) disassemble(W, user) user.visible_message("[user] begins loosening \the [src]'s bolts.") - if(W.is_wirecutter() && do_after(user, 70 * W.toolspeed, src)) + if(W.has_tool_quality(TOOL_WIRECUTTER) && do_after(user, 70 * W.toolspeed, src)) playsound(src, W.usesound, 50, 1) disassemble(W, user) user.visible_message("[user] begins cutting \the [src]'s bolts.") diff --git a/code/game/objects/structures/curtains.dm b/code/game/objects/structures/curtains.dm index 60eb576db3..63ef20566a 100644 --- a/code/game/objects/structures/curtains.dm +++ b/code/game/objects/structures/curtains.dm @@ -38,7 +38,7 @@ layer = OBJ_LAYER /obj/structure/curtain/attackby(obj/item/P, mob/user) - if(P.is_wirecutter()) + if(P.has_tool_quality(TOOL_WIRECUTTER)) playsound(src, P.usesound, 50, 1) to_chat(user, "You start to cut the shower curtains.") if(do_after(user, 10)) diff --git a/code/game/objects/structures/dancepole_vr.dm b/code/game/objects/structures/dancepole_vr.dm index 90270b88ce..c44ff91fb9 100644 --- a/code/game/objects/structures/dancepole_vr.dm +++ b/code/game/objects/structures/dancepole_vr.dm @@ -20,14 +20,14 @@ layer = BELOW_MOB_LAYER /obj/structure/dancepole/attackby(var/obj/item/O as obj, var/mob/user as mob) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) anchored = !anchored playsound(src, O.usesound, 50, 1) if(anchored) to_chat(user, "You secure \the [src].") else to_chat(user, "You unsecure \the [src].") - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 50, 1) to_chat(user, "Now disassembling \the [src]...") if(do_after(user, 30 * O.toolspeed)) diff --git a/code/game/objects/structures/door_assembly.dm b/code/game/objects/structures/door_assembly.dm index a484aa3efe..6ca92a3b37 100644 --- a/code/game/objects/structures/door_assembly.dm +++ b/code/game/objects/structures/door_assembly.dm @@ -170,8 +170,8 @@ rename_door(user) return - if(istype(W, /obj/item/weapon/weldingtool) && ( (istext(glass)) || (glass == 1) || (!anchored) )) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER) && ( (istext(glass)) || (glass == 1) || (!anchored) )) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if (WT.remove_fuel(0, user)) playsound(src, WT.usesound, 50, 1) if(istext(glass)) @@ -200,7 +200,7 @@ to_chat(user, "You need more welding fuel.") return - else if(W.is_wrench() && state == 0) + else if(W.has_tool_quality(TOOL_WRENCH) && state == 0) playsound(src, W.usesound, 100, 1) if(anchored) user.visible_message("[user] begins unsecuring the airlock assembly from the floor.", "You starts unsecuring the airlock assembly from the floor.") @@ -223,7 +223,7 @@ src.state = 1 to_chat(user, "You wire the airlock.") - else if(W.is_wirecutter() && state == 1 ) + else if(W.has_tool_quality(TOOL_WIRECUTTER) && state == 1 ) playsound(src, W.usesound, 100, 1) user.visible_message("[user] cuts the wires from the airlock assembly.", "You start to cut the wires from airlock assembly.") @@ -245,7 +245,7 @@ src.state = 2 src.electronics = W - else if(W.is_crowbar() && state == 2 ) + else if(W.has_tool_quality(TOOL_CROWBAR) && state == 2 ) //This should never happen, but just in case I guess if (!electronics) to_chat(user, "There was nothing to remove.") @@ -287,7 +287,7 @@ to_chat(user, "You installed [material_display_name(material_name)] plating into the airlock assembly.") glass = material_name - else if(W.is_screwdriver() && state == 2 ) + else if(W.has_tool_quality(TOOL_SCREWDRIVER) && state == 2 ) playsound(src, W.usesound, 100, 1) to_chat(user, "Now finishing the airlock.") diff --git a/code/game/objects/structures/droppod.dm b/code/game/objects/structures/droppod.dm index 730fba388b..d794a8829d 100644 --- a/code/game/objects/structures/droppod.dm +++ b/code/game/objects/structures/droppod.dm @@ -31,15 +31,15 @@ if(!T) warning("Drop pod wasn't spawned on a turf") return - + moveToNullspace() icon_state = "[initial(icon_state)]_falling" - + // Show warning on 3x3 area centred on our drop spot var/list/turfs_nearby = block(get_step(T, SOUTHWEST), get_step(T, NORTHEAST)) for(var/turf/TN in turfs_nearby) new /obj/effect/temporary_effect/shuttle_landing(TN) - + // Wait a minute sleep(4 SECONDS) @@ -58,7 +58,7 @@ T.hotspot_expose(900) sleep(1 SECOND) filters = null - + // CRONCH playsound(src, 'sound/effects/meteorimpact.ogg', 50, 1) if(!polite) @@ -69,7 +69,7 @@ else for(var/turf/simulated/floor/F in view(1, T)) F.burn_tile(900) - + for(var/obj/O in T) if(O == src) continue @@ -80,7 +80,7 @@ // Landed! Simmer plane = initial(plane) icon_state = "[initial(icon_state)]" - + if(auto_open) sleep(2 SECONDS) open_pod() @@ -109,7 +109,7 @@ user.visible_message("[user] opens \the [src]!","You open \the [src]!") /obj/structure/drop_pod/attackby(obj/item/O, mob/user) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) if(finished) to_chat(user, "You start breaking down \the [src].") if(do_after(user, 10 SECONDS, src, exclusive = TASK_ALL_EXCLUSIVE)) diff --git a/code/game/objects/structures/electricchair.dm b/code/game/objects/structures/electricchair.dm index cccde21044..ff37f1b40b 100644 --- a/code/game/objects/structures/electricchair.dm +++ b/code/game/objects/structures/electricchair.dm @@ -12,7 +12,7 @@ return /obj/structure/bed/chair/e_chair/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) var/obj/structure/bed/chair/C = new /obj/structure/bed/chair(loc) playsound(src, W.usesound, 50, 1) C.set_dir(dir) diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm index a0c01e52cd..8318392b49 100644 --- a/code/game/objects/structures/extinguisher.dm +++ b/code/game/objects/structures/extinguisher.dm @@ -31,7 +31,7 @@ to_chat(user, "You place [O] in [src].") else opened = !opened - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) if(!has_extinguisher) to_chat(user, "You start to unwrench the extinguisher cabinet.") playsound(src, O.usesound, 50, 1) diff --git a/code/game/objects/structures/fence.dm b/code/game/objects/structures/fence.dm index 839269847a..1bb1b4e71e 100644 --- a/code/game/objects/structures/fence.dm +++ b/code/game/objects/structures/fence.dm @@ -69,7 +69,7 @@ return ..() /obj/structure/fence/attackby(obj/item/W, mob/user) - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) if(!cuttable) to_chat(user, span("warning", "This section of the fence can't be cut.")) return @@ -170,6 +170,41 @@ return FALSE return TRUE +/obj/structure/fence/wood + cuttable = FALSE + name = "fence" + desc = "A wooden fence. Not as effective as a wall, but generally it keeps people out." + description_info = "Projectiles can freely pass fences." + density = TRUE + anchored = TRUE + + icon = 'icons/obj/fence.dmi' + icon_state = "wood_straight" + +/obj/structure/fence/wood/end + icon_state = "wood_end" + +/obj/structure/fence/wood/corner + icon_state = "wood_corner" + +/obj/structure/fence/hedge + cuttable = FALSE + name = "hedge" + desc = "A large hedge. Not as effective as a wall, but generally it keeps people out." + description_info = "Projectiles can freely pass fences." + density = TRUE + anchored = TRUE + opacity = 1 + + icon = 'icons/obj/fence.dmi' + icon_state = "hedge_straight" + +/obj/structure/fence/hedge/end + icon_state = "hedge_end" + +/obj/structure/fence/hedge/corner + icon_state = "hedge_corner" + #undef CUT_TIME #undef CLIMB_TIME diff --git a/code/game/objects/structures/fitness.dm b/code/game/objects/structures/fitness.dm index f84c9508e7..eb2f1e37bc 100644 --- a/code/game/objects/structures/fitness.dm +++ b/code/game/objects/structures/fitness.dm @@ -34,7 +34,7 @@ var/list/qualifiers = list("with ease", "without any trouble", "with great effort") /obj/structure/fitness/weightlifter/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, 'sound/items/Deconstruct.ogg', 75, 1) weight = ((weight) % qualifiers.len) + 1 to_chat(user, "You set the machine's weight level to [weight].") diff --git a/code/game/objects/structures/flora/flora.dm b/code/game/objects/structures/flora/flora.dm index a6850cd769..fe69c9f30f 100644 --- a/code/game/objects/structures/flora/flora.dm +++ b/code/game/objects/structures/flora/flora.dm @@ -640,3 +640,48 @@ /obj/structure/flora/sif/frostbelle/get_harvestable_desc() return "\The [src] seems to be budding." + +//Start of underwater plants + +/obj/structure/flora/underwater + name = "underwater plant" + desc = "A plant that thrives deep under water." + icon = 'icons/obj/flora/underwaterflora.dmi' + icon_state = "plant-1" + +/obj/structure/flora/underwater/plant1 + icon_state = "plant-1" + +/obj/structure/flora/underwater/plant2 + icon_state = "plant-2" + +/obj/structure/flora/underwater/plant3 + icon_state = "plant-3" + +/obj/structure/flora/underwater/plant4 + icon_state = "plant-4" + +/obj/structure/flora/underwater/plant5 + icon_state = "plant-5" + +/obj/structure/flora/underwater/seaweed1 + icon_state = "seaweed-1" + +/obj/structure/flora/underwater/seaweed2 + icon_state = "seaweed-2" + +/obj/structure/flora/underwater/seaweed3 + icon_state = "seaweed-3" + +/obj/structure/flora/underwater/grass1 + icon_state = "grass-1" + +/obj/structure/flora/underwater/grass2 + icon_state = "grass-2" + +/obj/structure/flora/underwater/grass3 + icon_state = "grass-3" + +/obj/structure/flora/underwater/grass4 + icon_state = "grass-4" + diff --git a/code/game/objects/structures/ghost_pods/event_vr.dm b/code/game/objects/structures/ghost_pods/event_vr.dm index 0c56b69193..95aac206ab 100644 --- a/code/game/objects/structures/ghost_pods/event_vr.dm +++ b/code/game/objects/structures/ghost_pods/event_vr.dm @@ -53,7 +53,14 @@ "Snapdragon" =/mob/living/simple_mob/vore/pakkun/snapdragon, "Sand pakkun" = /mob/living/simple_mob/vore/pakkun/sand, "Fire pakkun" = /mob/living/simple_mob/vore/pakkun/fire, - "Amethyst pakkun" = /mob/living/simple_mob/vore/pakkun/purple + "Amethyst pakkun" = /mob/living/simple_mob/vore/pakkun/purple, + "Raptor" = /mob/living/simple_mob/vore/raptor, + "Giant Bat" = /mob/living/simple_mob/vore/bat, + "Scel (Orange)" = /mob/living/simple_mob/vore/scel/orange, + "Scel (Blue)" = /mob/living/simple_mob/vore/scel/blue, + "Scel (Purple)" = /mob/living/simple_mob/vore/scel/purple, + "Scel (Red)" = /mob/living/simple_mob/vore/scel/red, + "Scel (Green)" = /mob/living/simple_mob/vore/scel/green ) /obj/structure/ghost_pod/ghost_activated/maintpred/create_occupant(var/mob/M) @@ -66,6 +73,10 @@ reset_ghostpod() return + //No OOC notes + if (not_has_ooc_text(M)) + return + while(finalized == "No" && M.client) choice = tgui_input_list(M, "What type of predator do you want to play as?", "Maintpred Choice", possible_mobs) if(!choice) //We probably pushed the cancel button on the mob selection. Let's just put the ghost pod back in the list. @@ -115,6 +126,11 @@ /obj/structure/ghost_pod/ghost_activated/morphspawn/create_occupant(var/mob/M) ..() + + //No OOC notes + if (not_has_ooc_text(M)) + return + var/mob/living/simple_mob/vore/morph/newMorph = new /mob/living/simple_mob/vore/morph(get_turf(src)) if(M.mind) M.mind.transfer_to(newMorph) diff --git a/code/game/objects/structures/ghost_pods/ghost_pods.dm b/code/game/objects/structures/ghost_pods/ghost_pods.dm index 5a5ed5db2f..82845de15f 100644 --- a/code/game/objects/structures/ghost_pods/ghost_pods.dm +++ b/code/game/objects/structures/ghost_pods/ghost_pods.dm @@ -90,6 +90,11 @@ if(jobban_isbanned(user, "GhostRoles")) to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.") return + + //No OOC notes + if (not_has_ooc_text(user)) + return + //VOREStation Add End if(used) to_chat(user, "Another spirit appears to have gotten to \the [src] before you. Sorry.") diff --git a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm index 28ea62182f..2ae1a6f496 100644 --- a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm +++ b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm @@ -15,6 +15,10 @@ to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.") return + //No OOC notes + if (not_has_ooc_text(user)) + return + if(!remains_active || busy) return @@ -51,4 +55,4 @@ /obj/structure/ghost_pod/ghost_activated/Initialize(var/mapload) . = ..() if(!mapload) - ghostpod_startup(spawn_active) \ No newline at end of file + ghostpod_startup(spawn_active) diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 8e8568953b..6642d9f99f 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -146,7 +146,7 @@ reinforce_girder() /obj/structure/girder/attackby(obj/item/W as obj, mob/user as mob) - if(W.is_wrench() && state == 0) + if(W.has_tool_quality(TOOL_WRENCH) && state == 0) if(anchored && !reinf_material) playsound(src, W.usesound, 100, 1) to_chat(user, "Now disassembling the girder...") @@ -172,7 +172,7 @@ to_chat(user, "You drill through the girder!") dismantle() - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(state == 2) playsound(src, W.usesound, 100, 1) to_chat(user, "Now unsecuring support struts...") @@ -185,7 +185,7 @@ reinforcing = !reinforcing to_chat(user, "\The [src] can now be [reinforcing? "reinforced" : "constructed"]!") - else if(W.is_wirecutter() && state == 1) + else if(W.has_tool_quality(TOOL_WIRECUTTER) && state == 1) playsound(src, W.usesound, 100, 1) to_chat(user, "Now removing support struts...") if(do_after(user,40 * W.toolspeed)) @@ -195,7 +195,7 @@ reinf_material = null reset_girder() - else if(W.is_crowbar() && state == 0 && anchored) + else if(W.has_tool_quality(TOOL_CROWBAR) && state == 0 && anchored) playsound(src, W.usesound, 100, 1) to_chat(user, "Now dislodging the girder...") if(do_after(user, 40 * W.toolspeed)) @@ -339,7 +339,7 @@ qdel(src) /obj/structure/girder/cult/attackby(obj/item/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) to_chat(user, "Now disassembling the girder...") if(do_after(user,40 * W.toolspeed)) @@ -419,4 +419,3 @@ /obj/structure/girder/eris wall_type = /turf/simulated/wall/eris - \ No newline at end of file diff --git a/code/game/objects/structures/gravemarker.dm b/code/game/objects/structures/gravemarker.dm index 381401b352..a93c57144a 100644 --- a/code/game/objects/structures/gravemarker.dm +++ b/code/game/objects/structures/gravemarker.dm @@ -51,7 +51,7 @@ return TRUE /obj/structure/gravemarker/attackby(obj/item/weapon/W, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) var/carving_1 = sanitizeSafe(tgui_input_text(user, "Who is \the [src.name] for?", "Gravestone Naming", null, MAX_NAME_LEN), MAX_NAME_LEN) if(carving_1) user.visible_message("[user] starts carving \the [src.name].", "You start carving \the [src.name].") @@ -67,7 +67,7 @@ epitaph += carving_2 update_icon() return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) user.visible_message("[user] starts taking down \the [src.name].", "You start taking down \the [src.name].") if(do_after(user, material.hardness * W.toolspeed)) user.visible_message("[user] takes down \the [src.name].", "You take down \the [src.name].") diff --git a/code/game/objects/structures/grille.dm b/code/game/objects/structures/grille.dm index ea1a9346c1..13b5412e56 100644 --- a/code/game/objects/structures/grille.dm +++ b/code/game/objects/structures/grille.dm @@ -94,12 +94,12 @@ return if(istype(W, /obj/item/weapon/rcd)) // To stop us from hitting the grille when building windows, because grilles don't let parent handle it properly. return FALSE - else if(W.is_wirecutter()) + else if(W.has_tool_quality(TOOL_WIRECUTTER)) if(!shock(user, 100)) playsound(src, W.usesound, 100, 1) new /obj/item/stack/rods(get_turf(src), destroyed ? 1 : 2) qdel(src) - else if((W.is_screwdriver()) && (istype(loc, /turf/simulated) || anchored)) + else if((W.has_tool_quality(TOOL_SCREWDRIVER)) && (istype(loc, /turf/simulated) || anchored)) if(!shock(user, 90)) playsound(src, W.usesound, 100, 1) anchored = !anchored diff --git a/code/game/objects/structures/janicart.dm b/code/game/objects/structures/janicart.dm index 43aeed44c1..20b496291e 100644 --- a/code/game/objects/structures/janicart.dm +++ b/code/game/objects/structures/janicart.dm @@ -176,7 +176,7 @@ GLOBAL_LIST_BOILERPLATE(all_janitorial_carts, /obj/structure/janitorialcart) //This prevents dumb stuff like splashing the cart with the contents of a container, after putting said container into trash else if (!has_items) - if (I.is_wrench()) + if (I.has_tool_quality(TOOL_WRENCH)) if (do_after(user, 5 SECONDS, src)) dismantle(user) return diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm index d5fcf7e8d1..6107f25f6c 100644 --- a/code/game/objects/structures/lattice.dm +++ b/code/game/objects/structures/lattice.dm @@ -55,19 +55,19 @@ /obj/structure/lattice/attackby(obj/item/C as obj, mob/user as mob) - if (istype(C, /obj/item/stack/tile/floor)) + if(istype(C, /obj/item/stack/tile/floor)) var/turf/T = get_turf(src) T.attackby(C, user) //BubbleWrap - hand this off to the underlying turf instead return - if (istype(C, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = C + if(C.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = C.get_welder() if(WT.welding == 1) if(WT.remove_fuel(0, user)) to_chat(user, "Slicing lattice joints ...") new /obj/item/stack/rods(src.loc) qdel(src) return - if (istype(C, /obj/item/stack/rods)) + if(istype(C, /obj/item/stack/rods)) var/obj/item/stack/rods/R = C if(R.get_amount() < 2) to_chat(user, "You need at least two rods to form a catwalk here.") diff --git a/code/game/objects/structures/low_wall.dm b/code/game/objects/structures/low_wall.dm index 08b43c2c97..8d0d035b96 100644 --- a/code/game/objects/structures/low_wall.dm +++ b/code/game/objects/structures/low_wall.dm @@ -86,7 +86,7 @@ return // Dismantling the half wall - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) for(var/obj/structure/S in loc) if(istype(S, /obj/structure/window)) to_chat(user, "There is still a window on the low wall!") diff --git a/code/game/objects/structures/medical_stand_vr.dm b/code/game/objects/structures/medical_stand_vr.dm index e2eca967ff..63b6f365f5 100644 --- a/code/game/objects/structures/medical_stand_vr.dm +++ b/code/game/objects/structures/medical_stand_vr.dm @@ -295,7 +295,7 @@ to_chat(user, "Close the valve first.") return if (tank) - if(!W.is_wrench()) + if(!W.has_tool_quality(TOOL_WRENCH)) return if (!is_loosen) is_loosen = TRUE diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index 8cb6749823..8aff413305 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -50,7 +50,7 @@ ..() /obj/structure/mirror/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) if(!glass) playsound(src, I.usesound, 50, 1) if(do_after(user, 20 * I.toolspeed)) @@ -58,7 +58,7 @@ new /obj/item/frame/mirror( src.loc ) qdel(src) return - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) if(shattered && glass) to_chat(user, "The broken glass falls out.") icon_state = "mirror_frame" diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm index bd7e7836f6..ae26157f39 100644 --- a/code/game/objects/structures/plasticflaps.dm +++ b/code/game/objects/structures/plasticflaps.dm @@ -17,7 +17,7 @@ ) /obj/structure/plasticflaps/attackby(obj/item/P, mob/user) - if(P.is_wirecutter()) + if(P.has_tool_quality(TOOL_WIRECUTTER)) playsound(src, P.usesound, 50, 1) to_chat(user, "You start to cut the plastic flaps.") if(do_after(user, 10 * P.toolspeed)) diff --git a/code/game/objects/structures/props/altevian.dm b/code/game/objects/structures/props/altevian.dm index 1bee379e7d..d3c3616a48 100644 --- a/code/game/objects/structures/props/altevian.dm +++ b/code/game/objects/structures/props/altevian.dm @@ -1,7 +1,7 @@ /obj/structure/prop/altevian_generator_wrecked - name = "Converted High Energy Exchange Supplier Extractor" - desc = "A take on the classic PACMAN reactors that are seen throughout the galaxy. The altevians have ripped apart the tech and seemed to of found a way to maximize the fuel usage one would see with this kind of process. \ - However, it is a lot bulkier and nearly impossible to break apart, but still can be moved if need be with special tools. This one appears to be totally wrecked though." + name = "Phoronic Conversion System" + desc = "A reactor system similar to the PACMAN generators seen throughout the stars. This one is a specific model created by the altevians. It seems the designers have found a way to significantly improve fuel efficiency compared to more common portable generators. \ + However, due to its construction and size it is nearly impossible to break apart. It still can be moved if need be with special tools. This one appears to be totally wrecked though." icon = 'icons/obj/props/decor64x64.dmi' icon_state = "alteviangenwrecked" bound_width = 64 @@ -33,4 +33,4 @@ icon_state = "altevian_jump_drive_wrecked" desc = "A drive created by the Altevian Hegemony that focuses heavily on using Bluespace and other tactics to achieve a stable traversal between the stars. \ This drive is commonly seen on their medium sized craft to help with logistical operations. This one appears to be totally wrecked." - has_misc_overlay = FALSE \ No newline at end of file + has_misc_overlay = FALSE diff --git a/code/game/objects/structures/props/fantasy.dm b/code/game/objects/structures/props/fantasy.dm new file mode 100644 index 0000000000..8e3823f863 --- /dev/null +++ b/code/game/objects/structures/props/fantasy.dm @@ -0,0 +1,52 @@ +//props for more fantasy type settings + +/obj/structure/prop/fantasy + name = "some fantasy thing" + desc = "My description is broken, bug a developer." + icon = 'icons/obj/props/fantasy.dmi' + density = TRUE + anchored = TRUE + +/obj/structure/prop/fantasy/throne + name = "throne" + desc = "An ornate golden throne for the truly pompous." + icon_state = "throne" + +/obj/structure/prop/fantasy/anvil + name = "anvil" + desc = "A big solid chunk of cast steel used for smithing." + icon_state = "anvil" + +/obj/structure/prop/fantasy/grindstone + name = "grindstone" + desc = "A pedal powered, rough wheel that is used to sharpen and refine metal." + icon_state = "grindstone" + +/obj/structure/prop/fantasy/kiln + name = "kiln" + desc = "A large stone furnace." + icon_state = "kiln" + +/obj/structure/prop/fantasy/redbanner + name = "tapestry" + desc = "A red tapestry hanging from the wall." + icon_state = "redbanner" + density = FALSE + +/obj/structure/prop/fantasy/pinkbanner + name = "tapestry" + desc = "A red tapestry hanging from the wall." + icon_state = "pinkbanner" + density = FALSE + +/obj/structure/prop/fantasy/redbanner_standing + name = "banner" + desc = "A red banner hanging from a stand." + icon_state = "redbanner_stand" + density = FALSE + +/obj/structure/prop/fantasy/pinkbanner_standing + name = "banner" + desc = "A red banner hanging from a stand." + icon_state = "pinkbanner_stand" + density = FALSE diff --git a/code/game/objects/structures/props/statue.dm b/code/game/objects/structures/props/statue.dm index 1fe74ffba0..904510fb96 100644 --- a/code/game/objects/structures/props/statue.dm +++ b/code/game/objects/structures/props/statue.dm @@ -21,6 +21,15 @@ /obj/structure/prop/statue/statue5 icon_state = "artwork_statue_5" +//sunken ship mast + +/obj/structure/prop/statue/sunkensail + name = "sail mast" + desc = "A long since collapsed mast with a sail draped over it." + icon = 'icons/obj/props/decor64x64.dmi' + icon_state = "sunkensail" + density = FALSE + //TGMC Ship Mast /obj/structure/prop/statue/stump_plaque diff --git a/code/game/objects/structures/railing.dm b/code/game/objects/structures/railing.dm index 3efd7091b0..3b357d9fd5 100644 --- a/code/game/objects/structures/railing.dm +++ b/code/game/objects/structures/railing.dm @@ -202,7 +202,7 @@ /obj/structure/railing/attackby(obj/item/W as obj, mob/user as mob) // Dismantle - if(W.is_wrench() && !anchored) + if(W.has_tool_quality(TOOL_WRENCH) && !anchored) playsound(src, W.usesound, 50, 1) if(do_after(user, 20, src)) user.visible_message("\The [user] dismantles \the [src].", "You dismantle \the [src].") @@ -211,8 +211,8 @@ return // Repair - if(health < maxhealth && istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/F = W + if(health < maxhealth && W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/F = W.get_welder() if(F.welding) playsound(src, F.usesound, 50, 1) if(do_after(user, 20, src)) @@ -221,7 +221,7 @@ return // Install - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) user.visible_message(anchored ? "\The [user] begins unscrewing \the [src]." : "\The [user] begins fasten \the [src]." ) playsound(src, W.usesound, 75, 1) if(do_after(user, 10, src)) diff --git a/code/game/objects/structures/salvageable.dm b/code/game/objects/structures/salvageable.dm index 8408b3cddd..4999456a5e 100644 --- a/code/game/objects/structures/salvageable.dm +++ b/code/game/objects/structures/salvageable.dm @@ -14,7 +14,7 @@ return /obj/structure/salvageable/attackby(obj/item/I, mob/user) - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) playsound(src, I.usesound, 50, 1) var/actual_time = I.toolspeed * 170 user.visible_message( \ diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 182db6951e..f13cf519bf 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -11,7 +11,7 @@ qdel(src) /obj/structure/sign/attackby(obj/item/tool, mob/user) //deconstruction - if(tool.is_screwdriver() && !istype(src, /obj/structure/sign/scenery) && !istype(src, /obj/structure/sign/double)) + if(tool.has_tool_quality(TOOL_SCREWDRIVER) && !istype(src, /obj/structure/sign/scenery) && !istype(src, /obj/structure/sign/double)) playsound(src, tool.usesound, 50, 1) unfasten(user) else ..() @@ -36,7 +36,7 @@ var/original_type /obj/item/sign/attackby(obj/item/tool as obj, mob/user as mob) //construction - if(tool.is_screwdriver() && isturf(user.loc)) + if(tool.has_tool_quality(TOOL_SCREWDRIVER) && isturf(user.loc)) var/direction = tgui_input_list(usr, "In which direction?", "Select direction.", list("North", "East", "South", "West", "Cancel")) if(direction == "Cancel") return var/target_type = original_type || /obj/structure/sign diff --git a/code/game/objects/structures/simple_doors.dm b/code/game/objects/structures/simple_doors.dm index 4c49624d92..6a45bd731c 100644 --- a/code/game/objects/structures/simple_doors.dm +++ b/code/game/objects/structures/simple_doors.dm @@ -1,5 +1,6 @@ /obj/structure/simple_door name = "door" + description_info = "If you hold left alt whilst left-clicking on a door, you can knock on it to announce your presence to anyone on the other side! Alternately if you are on HARM intent when doing this, you will bang loudly on the door!" density = TRUE anchored = TRUE can_atmos_pass = ATMOS_PASS_DENSITY @@ -15,6 +16,10 @@ var/knock_sound = 'sound/machines/door/knock_glass.ogg' var/knock_hammer_sound = 'sound/weapons/sonic_jackhammer.ogg' + var/locked = FALSE //has the door been locked? + var/lock_id = null //does the door have an associated key? + var/keysound = 'sound/items/toolbelt_equip.ogg' + /obj/structure/simple_door/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) TemperatureAct(exposed_temperature) @@ -96,6 +101,9 @@ var/mob/M = user if(!material.can_open_material_door(user)) return + if(locked && state == 0) + to_chat(M,"It's locked!") + return if(world.time - user.last_bumped <= 60) return if(M.client) @@ -146,13 +154,24 @@ /obj/structure/simple_door/attackby(obj/item/weapon/W as obj, mob/user as mob) user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN) - if(istype(W,/obj/item/weapon/pickaxe)) + if(istype(W,/obj/item/weapon/simple_key)) + var/obj/item/weapon/simple_key/key = W + if(state) + to_chat(user,"\The [src] must be closed in order for you to lock it.") + else if(key.key_id != src.lock_id) + to_chat(user,"The [key] doesn't fit \the [src]'s lock!") + else if(key.key_id == src.lock_id) + visible_message("[user] [key.keyverb] \the [key] and [locked ? "unlocks" : "locks"] \the [src].") + locked = !locked + playsound(src, keysound,100, 1) + return + if(istype(W,/obj/item/weapon/pickaxe) && breakable) var/obj/item/weapon/pickaxe/digTool = W visible_message("[user] starts digging [src]!") if(do_after(user,digTool.digspeed*hardness) && src) visible_message("[user] finished digging [src]!") Dismantle() - else if(istype(W,/obj/item/weapon)) //not sure, can't not just weapons get passed to this proc? + else if(istype(W,/obj/item/weapon) && breakable) //not sure, can't not just weapons get passed to this proc? hardness -= W.force/10 visible_message("[user] hits [src] with [W]!") if(material == get_material_by_name("resin")) @@ -162,8 +181,8 @@ else playsound(src, 'sound/weapons/smash.ogg', 50, 1) CheckHardness() - else if(istype(W,/obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + else if(W.has_tool_quality(TOOL_WELDER) && breakable) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(material.ignition_point && WT.remove_fuel(0, user)) TemperatureAct(150) else diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index 1f24a35945..7a55f5db5b 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -88,7 +88,7 @@ return /obj/structure/bed/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 50, 1) dismantle() qdel(src) @@ -119,7 +119,7 @@ add_padding(padding_type) return - else if(W.is_wirecutter()) + else if(W.has_tool_quality(TOOL_WIRECUTTER)) if(!padding_material) to_chat(user, "\The [src] has no padding to remove.") return @@ -219,7 +219,7 @@ return /obj/structure/bed/roller/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench() || istype(W,/obj/item/stack) || W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WRENCH) || istype(W,/obj/item/stack) || W.has_tool_quality(TOOL_WIRECUTTER)) return else if(istype(W,/obj/item/roller_holder)) if(has_buckled_mobs()) @@ -369,7 +369,7 @@ buckle_lying = 1 /obj/structure/dirtybed/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) if(anchored) user.visible_message("[user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") @@ -384,4 +384,4 @@ if(!anchored) to_chat(user," The bed isn't secured.") - return \ No newline at end of file + return diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index 6ffa0f37e7..903346fe95 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -80,6 +80,20 @@ src.set_dir(turn(src.dir, 270)) +/obj/structure/bed/chair/verb/rotate_counterclockwise() + set name = "Rotate Chair Counter-Clockwise" + set category = "Object" + set src in oview(1) + + if(!usr || !isturf(usr.loc)) + return + if(usr.stat || usr.restrained()) + return + if(ismouse(usr) || (isobserver(usr) && !config.ghost_interaction)) + return + + src.set_dir(turn(src.dir, 90)) + /obj/structure/bed/chair/shuttle name = "chair" icon_state = "shuttlechair" @@ -193,7 +207,7 @@ return /obj/structure/bed/chair/office/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W,/obj/item/stack) || W.is_wirecutter()) + if(istype(W,/obj/item/stack) || W.has_tool_quality(TOOL_WIRECUTTER)) return ..() @@ -259,7 +273,7 @@ return /obj/structure/bed/chair/wood/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W,/obj/item/stack) || W.is_wirecutter()) + if(istype(W,/obj/item/stack) || W.has_tool_quality(TOOL_WIRECUTTER)) return ..() diff --git a/code/game/objects/structures/stool_bed_chair_nest/stools.dm b/code/game/objects/structures/stool_bed_chair_nest/stools.dm index 8c61d2ca34..c22e3d5f1f 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/stools.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/stools.dm @@ -110,7 +110,7 @@ var/global/list/stool_cache = list() //haha stool qdel(src) /obj/item/weapon/stool/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 50, 1) dismantle() qdel(src) @@ -140,7 +140,7 @@ var/global/list/stool_cache = list() //haha stool to_chat(user, "You add padding to \the [src].") add_padding(padding_type) return - else if (W.is_wirecutter()) + else if (W.has_tool_quality(TOOL_WIRECUTTER)) if(!padding_material) to_chat(user, "\The [src] has no padding to remove.") return diff --git a/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm b/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm index 142cd8928e..3214128eec 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm @@ -55,7 +55,7 @@ L.set_dir(dir) /obj/structure/bed/chair/wheelchair/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench() || W.is_wirecutter() || istype(W,/obj/item/stack)) + if(W.has_tool_quality(TOOL_WRENCH) || W.has_tool_quality(TOOL_WIRECUTTER) || istype(W,/obj/item/stack)) return ..() diff --git a/code/game/objects/structures/tank_dispenser.dm b/code/game/objects/structures/tank_dispenser.dm index 1af54a1b4e..fcbfe98230 100644 --- a/code/game/objects/structures/tank_dispenser.dm +++ b/code/game/objects/structures/tank_dispenser.dm @@ -73,7 +73,7 @@ phorontanks++ else full = TRUE - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) if(anchored) to_chat(user, "You lean down and unwrench [src].") anchored = FALSE diff --git a/code/game/objects/structures/trash_pile_vr.dm b/code/game/objects/structures/trash_pile_vr.dm index 17f91016e8..6b63271978 100644 --- a/code/game/objects/structures/trash_pile_vr.dm +++ b/code/game/objects/structures/trash_pile_vr.dm @@ -281,6 +281,7 @@ prob(4);/obj/item/seeds/ambrosiavulgarisseed, prob(4);/obj/item/weapon/gun/energy/sizegun, prob(4);/obj/item/device/slow_sizegun, + prob(4);/obj/item/clothing/accessory/collar/shock/bluespace, prob(3);/obj/item/weapon/material/butterfly, prob(3);/obj/item/weapon/material/butterfly/switchblade, prob(3);/obj/item/clothing/gloves/knuckledusters, @@ -312,7 +313,8 @@ prob(1);/obj/item/capture_crystal, prob(1);/obj/item/device/perfect_tele/one_beacon, prob(1);/obj/item/clothing/gloves/bluespace, - prob(1);/obj/item/weapon/gun/energy/mouseray) + prob(1);/obj/item/weapon/gun/energy/mouseray, + prob(1);/obj/item/clothing/accessory/collar/shock/bluespace/modified) var/obj/item/I = new path() return I diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index aff55b7225..8f5444aa21 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -44,7 +44,7 @@ icon_state = "[initial(icon_state)][open][cistern]" /obj/structure/toilet/attackby(obj/item/I as obj, mob/living/user as mob) - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) to_chat(user, "You start to [cistern ? "replace the lid on the cistern" : "lift the lid off the cistern"].") playsound(src, 'sound/effects/stonedoor_openclose.ogg', 50, 1) if(do_after(user, 30)) @@ -124,7 +124,6 @@ else to_chat(user, "You need a tighter grip.") - /obj/structure/urinal name = "urinal" desc = "The HU-452, an experimental urinal." @@ -201,7 +200,7 @@ /obj/machinery/shower/attackby(obj/item/I as obj, mob/user as mob) if(I.type == /obj/item/device/analyzer) to_chat(user, "The water temperature seems to be [watertemp].") - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) var/newtemp = tgui_input_list(user, "What setting would you like to set the temperature valve to?", "Water Temperature Valve", temperature_settings) to_chat(user, "You begin to adjust the temperature valve with \the [I].") playsound(src, I.usesound, 50, 1) diff --git a/code/game/objects/structures/windoor_assembly.dm b/code/game/objects/structures/windoor_assembly.dm index 855e7fac11..44bb6e45a7 100644 --- a/code/game/objects/structures/windoor_assembly.dm +++ b/code/game/objects/structures/windoor_assembly.dm @@ -87,8 +87,8 @@ switch(state) if("01") - if(istype(W, /obj/item/weapon/weldingtool) && !anchored ) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER) && !anchored) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if (WT.remove_fuel(0,user)) user.visible_message("[user] disassembles the windoor assembly.", "You start to disassemble the windoor assembly.") playsound(src, WT.usesound, 50, 1) @@ -106,7 +106,7 @@ return //Wrenching an unsecure assembly anchors it in place. Step 4 complete - if(W.is_wrench() && !anchored) + if(W.has_tool_quality(TOOL_WRENCH) && !anchored) playsound(src, W.usesound, 100, 1) user.visible_message("[user] secures the windoor assembly to the floor.", "You start to secure the windoor assembly to the floor.") @@ -117,7 +117,7 @@ step = 0 //Unwrenching an unsecure assembly un-anchors it. Step 4 undone - else if(W.is_wrench() && anchored) + else if(W.has_tool_quality(TOOL_WRENCH) && anchored) playsound(src, W.usesound, 100, 1) user.visible_message("[user] unsecures the windoor assembly to the floor.", "You start to unsecure the windoor assembly to the floor.") @@ -143,7 +143,7 @@ if("02") //Removing wire from the assembly. Step 5 undone. - if(W.is_wirecutter() && !src.electronics) + if(W.has_tool_quality(TOOL_WIRECUTTER) && !src.electronics) playsound(src, W.usesound, 100, 1) user.visible_message("[user] cuts the wires from the airlock assembly.", "You start to cut the wires from airlock assembly.") @@ -172,7 +172,7 @@ W.loc = src.loc //Screwdriver to remove airlock electronics. Step 6 undone. - else if(W.is_screwdriver() && src.electronics) + else if(W.has_tool_quality(TOOL_SCREWDRIVER) && src.electronics) playsound(src, W.usesound, 100, 1) user.visible_message("[user] removes the electronics from the airlock assembly.", "You start to uninstall electronics from the airlock assembly.") @@ -185,7 +185,7 @@ ae.loc = src.loc //Crowbar to complete the assembly, Step 7 complete. - else if(W.is_crowbar()) + else if(W.has_tool_quality(TOOL_CROWBAR)) if(!src.electronics) to_chat(usr,"The assembly is missing electronics.") return diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 35e7a339af..e6ec740aa0 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -223,8 +223,8 @@ if(!istype(W)) return//I really wish I did not need this // Fixing. - if(istype(W, /obj/item/weapon/weldingtool) && user.a_intent == I_HELP) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER) && user.a_intent == I_HELP) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(health < maxhealth) if(WT.remove_fuel(1 ,user)) to_chat(user, "You begin repairing [src]...") @@ -265,7 +265,7 @@ if(W.flags & NOBLUDGEON) return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(reinf && state >= 1) state = 3 - state update_nearby_icons() @@ -285,11 +285,11 @@ update_verbs() playsound(src, W.usesound, 75, 1) to_chat(user, "You have [anchored ? "" : "un"]fastened the window [anchored ? "to" : "from"] the floor.") - else if(W.is_crowbar() && reinf && state <= 1) + else if(W.has_tool_quality(TOOL_CROWBAR) && reinf && state <= 1) state = 1 - state playsound(src, W.usesound, 75, 1) to_chat(user, "You have pried the window [state ? "into" : "out of"] the frame.") - else if(W.is_wrench() && !anchored && (!state || !reinf)) + else if(W.has_tool_quality(TOOL_WRENCH) && !anchored && (!state || !reinf)) if(!glasstype) to_chat(user, "You're not sure how to dismantle \the [src] properly.") else diff --git a/code/game/turfs/simulated/dungeon/wall.dm b/code/game/turfs/simulated/dungeon/wall.dm index 2bfc23145e..227ca41979 100644 --- a/code/game/turfs/simulated/dungeon/wall.dm +++ b/code/game/turfs/simulated/dungeon/wall.dm @@ -15,6 +15,23 @@ /turf/simulated/wall/dungeon/take_damage() //These things are suppose to be unbreakable return +/turf/simulated/wall/update_icon() + if(!material) + return + + if(!damage_overlays[1]) //list hasn't been populated + generate_overlays() + + cut_overlays() + var/image/I + + if(!density) + I = image(wall_masks, "rockvault") + I.color = material.icon_colour + add_overlay(I) + return + ..() + /turf/simulated/wall/solidrock //for more stylish anti-cheese. description_info = "Probably not going to be able to drill or bomb your way through this, best to try and find a way around." var/rock_side = "rock_side" diff --git a/code/game/turfs/simulated/floor_attackby.dm b/code/game/turfs/simulated/floor_attackby.dm index 2b6f5422b4..49bd6bc208 100644 --- a/code/game/turfs/simulated/floor_attackby.dm +++ b/code/game/turfs/simulated/floor_attackby.dm @@ -129,8 +129,8 @@ playsound(src, 'sound/items/Deconstruct.ogg', 80, 1) return // Plating repairs and removal - else if(istype(C, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/welder = C + else if(C.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/welder = C.get_welder() if(welder.isOn()) // Needs repairs if(broken || burnt) @@ -160,7 +160,7 @@ do_remove_plating(C, user, base_type) /turf/simulated/floor/proc/try_deconstruct_tile(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) if(broken || burnt) to_chat(user, "You remove the broken [flooring.descriptor].") make_plating() @@ -174,14 +174,14 @@ return 0 playsound(src, W.usesound, 80, 1) return 1 - else if(W.is_screwdriver() && (flooring.flags & TURF_REMOVE_SCREWDRIVER)) + else if(W.has_tool_quality(TOOL_SCREWDRIVER) && (flooring.flags & TURF_REMOVE_SCREWDRIVER)) if(broken || burnt) return 0 to_chat(user, "You unscrew and remove the [flooring.descriptor].") make_plating(1) playsound(src, W.usesound, 80, 1) return 1 - else if(W.is_wrench() && (flooring.flags & TURF_REMOVE_WRENCH)) + else if(W.has_tool_quality(TOOL_WRENCH) && (flooring.flags & TURF_REMOVE_WRENCH)) to_chat(user, "You unwrench and remove the [flooring.descriptor].") make_plating(1) playsound(src, W.usesound, 80, 1) @@ -215,8 +215,8 @@ return TRUE /turf/simulated/floor/proc/do_remove_plating(obj/item/weapon/W, mob/user, base_type) - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.remove_fuel(5,user)) to_chat(user, "You don't have enough fuel in [WT] finish cutting through [src].") return diff --git a/code/game/turfs/simulated/underwater.dm b/code/game/turfs/simulated/underwater.dm new file mode 100644 index 0000000000..348d919e80 --- /dev/null +++ b/code/game/turfs/simulated/underwater.dm @@ -0,0 +1,96 @@ +/turf/simulated/floor/water/underwater + name = "sea floor" + desc = "It's the bottom of the sea, there's water all over the place!" + icon = 'icons/turf/outdoors.dmi' + icon_state = "seafloor" // So it shows up in the map editor as water. + water_state = "seafloor" + edge_blending_priority = -1 + movement_cost = 4 + can_be_plated = FALSE + outdoors = OUTDOORS_YES + flags = TURF_ACID_IMMUNE + + can_dirty = FALSE // It's water + + depth = 10 // Higher numbers indicates deeper water, 10 is unused right now, but may be useful for adding effects in the future. + + reagent_type = "water" + +/turf/simulated/floor/water/underwater/return_air_for_internal_lifeform(var/mob/living/L) + if(L.can_breathe_water()) // For squid. + var/datum/gas_mixture/water_breath = new() + var/datum/gas_mixture/above_air = return_air() + var/amount = 300 + water_breath.adjust_gas("oxygen", amount) // Assuming water breathes just extract the oxygen directly from the water. + water_breath.temperature = above_air.temperature + return water_breath + else + var/gasid = "carbon_dioxide" + if(ishuman(L)) + var/mob/living/carbon/human/H = L + if(H.species && H.species.exhale_type) + gasid = H.species.exhale_type + var/datum/gas_mixture/water_breath = new() + var/datum/gas_mixture/above_air = return_air() + water_breath.adjust_gas(gasid, BREATH_MOLES) // They have no oxygen, but non-zero moles and temp + water_breath.temperature = above_air.temperature + return water_breath + +/turf/simulated/floor/water/underwater/Entered(atom/movable/AM, atom/oldloc) + if(istype(AM, /mob/living)) + var/mob/living/L = AM + L.update_water() + if(L.check_submerged() <= 0) + return + if(!istype(oldloc, /turf/simulated/floor/water/underwater)) + to_chat(L, "You get drenched in water from entering \the [src]!") + AM.water_act(5) + ..() + +/turf/simulated/floor/water/underwater/Exited(atom/movable/AM, atom/newloc) + if(istype(AM, /mob/living)) + var/mob/living/L = AM + L.update_water() + if(L.check_submerged() <= 0) + return + if(!istype(newloc, /turf/simulated/floor/water/underwater)) + to_chat(L, "You climb out of \the [src].") + ..() + +/turf/simulated/floor/water/deep/ocean/diving + +/turf/simulated/floor/water/deep/ocean/diving/CanZPass(atom, direction) + return 1 + +//Variations of underwater icons + +/turf/simulated/floor/water/underwater/cult + icon = 'icons/turf/flooring/cult.dmi' + icon_state = "cult" // So it shows up in the map editor as water. + water_icon = 'icons/turf/flooring/cult.dmi' + water_state = "cult" + +/turf/simulated/floor/water/underwater/ruins + icon = 'maps/atoll/icons/turfs/marble.dmi' + icon_state = "1" // So it shows up in the map editor as water. + water_icon = 'maps/atoll/icons/turfs/marble.dmi' + water_state = "1" + +/turf/simulated/floor/water/underwater/sand + icon = 'icons/misc/beach.dmi' + icon_state = "sand" // So it shows up in the map editor as water. + water_icon = 'icons/misc/beach.dmi' + water_state = "sand" + +/turf/simulated/floor/water/underwater/wood + icon = 'icons/turf/flooring/wood_vr.dmi' + icon_state = "wood" // So it shows up in the map editor as water. + water_icon = 'icons/turf/flooring/wood_vr.dmi' + water_state = "wood" + +/turf/simulated/floor/water/underwater/woodbroken + icon = 'icons/turf/flooring/wood_vr.dmi' + icon_state = "wood-broken0" // So it shows up in the map editor as water. + water_icon = 'icons/turf/flooring/wood_vr.dmi' + water_state = "wood-broken0" + diff --git a/code/game/turfs/simulated/wall_attacks.dm b/code/game/turfs/simulated/wall_attacks.dm index 8c6eb32ae3..e6a810e9a6 100644 --- a/code/game/turfs/simulated/wall_attacks.dm +++ b/code/game/turfs/simulated/wall_attacks.dm @@ -132,7 +132,7 @@ user.setClickCooldown(user.get_attack_speed(W)) /* -//As with the floors, only this time it works AND tries pushing the wall after it's done. +//As with the floors, only this time it works AND tries pushing the wall after it's done. if(!construction_stage && user.a_intent == I_HELP) if(try_graffiti(user,W)) return @@ -185,8 +185,8 @@ if(locate(/obj/effect/overlay/wallrot) in src) - if(istype(W, /obj/item/weapon/weldingtool) ) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if( WT.remove_fuel(0,user) ) to_chat(user, "You burn away the fungi with \the [WT].") playsound(src, WT.usesound, 10, 1) @@ -200,8 +200,8 @@ //THERMITE related stuff. Calls src.thermitemelt() which handles melting simulated walls and the relevant effects if(thermite) - if( istype(W, /obj/item/weapon/weldingtool) ) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if( WT.remove_fuel(0,user) ) thermitemelt(user) return @@ -223,9 +223,9 @@ var/turf/T = user.loc //get user's location for delay checks - if(damage && istype(W, /obj/item/weapon/weldingtool)) + if(damage && W.has_tool_quality(TOOL_WELDER)) - var/obj/item/weapon/weldingtool/WT = W + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.isOn()) return @@ -250,8 +250,8 @@ var/dismantle_verb var/dismantle_sound - if(istype(W,/obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.isOn()) return if(!WT.remove_fuel(0,user)) @@ -292,7 +292,7 @@ else switch(construction_stage) if(6) - if (W.is_wirecutter()) + if (W.has_tool_quality(TOOL_WIRECUTTER)) playsound(src, W.usesound, 100, 1) construction_stage = 5 user.update_examine_panel(src) @@ -300,7 +300,7 @@ update_icon() return if(5) - if (W.is_screwdriver()) + if (W.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You begin removing the support lines.") playsound(src, W.usesound, 100, 1) if(!do_after(user,40 * W.toolspeed) || !istype(src, /turf/simulated/wall) || construction_stage != 5) @@ -310,7 +310,7 @@ update_icon() to_chat(user, "You unscrew the support lines.") return - else if (W.is_wirecutter()) + else if (W.has_tool_quality(TOOL_WIRECUTTER)) construction_stage = 6 user.update_examine_panel(src) to_chat(user, "You mend the outer grille.") @@ -319,8 +319,8 @@ return if(4) var/cut_cover - if(istype(W,/obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.isOn()) return if(WT.remove_fuel(0,user)) @@ -340,7 +340,7 @@ update_icon() to_chat(user, "You press firmly on the cover, dislodging it.") return - else if (W.is_screwdriver()) + else if (W.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You begin screwing down the support lines.") playsound(src, W.usesound, 100, 1) if(!do_after(user,40 * W.toolspeed) || !istype(src, /turf/simulated/wall) || construction_stage != 4) @@ -351,7 +351,7 @@ to_chat(user, "You screw down the support lines.") return if(3) - if (W.is_crowbar()) + if (W.has_tool_quality(TOOL_CROWBAR)) to_chat(user, "You struggle to pry off the cover.") playsound(src, W.usesound, 100, 1) if(!do_after(user,100 * W.toolspeed) || !istype(src, /turf/simulated/wall) || construction_stage != 3) @@ -362,7 +362,7 @@ to_chat(user, "You pry off the cover.") return if(2) - if (W.is_wrench()) + if (W.has_tool_quality(TOOL_WRENCH)) to_chat(user, "You start loosening the anchoring bolts which secure the support rods to their frame.") playsound(src, W.usesound, 100, 1) if(!do_after(user,40 * W.toolspeed) || !istype(src, /turf/simulated/wall) || construction_stage != 2) @@ -374,8 +374,8 @@ return if(1) var/cut_cover - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if( WT.remove_fuel(0,user) ) cut_cover=1 else @@ -394,7 +394,7 @@ to_chat(user, "You slice through the support rods.") return if(0) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) to_chat(user, "You struggle to pry off the outer sheath.") playsound(src, W.usesound, 100, 1) if(!do_after(user,100 * W.toolspeed) || !istype(src, /turf/simulated/wall) || !user || !W || !T ) diff --git a/code/game/turfs/simulated/wall_types_vr.dm b/code/game/turfs/simulated/wall_types_vr.dm index b25e6d6f9d..976fe96c8f 100644 --- a/code/game/turfs/simulated/wall_types_vr.dm +++ b/code/game/turfs/simulated/wall_types_vr.dm @@ -223,3 +223,17 @@ var/list/flesh_overlay_cache = list() /turf/simulated/wall/wood icon_state = "wood" icon = 'icons/turf/wall_masks_vr.dmi' + +/turf/simulated/wall/stonebricks + icon_state = "stonebrick" + icon = 'icons/turf/wall_masks_vr.dmi' + +/turf/simulated/wall/stonebricks/Initialize(mapload) + . = ..(mapload, "concrete") + +/turf/simulated/wall/stonelogs + icon_state = "stonelogs" + icon = 'icons/turf/wall_masks_vr.dmi' + +/turf/simulated/wall/stonelogs/Initialize(mapload) + . = ..(mapload, "concrete",MAT_LOG) \ No newline at end of file diff --git a/code/game/turfs/simulated/water.dm b/code/game/turfs/simulated/water.dm index 725aefb854..12084f5858 100644 --- a/code/game/turfs/simulated/water.dm +++ b/code/game/turfs/simulated/water.dm @@ -210,3 +210,27 @@ var/list/shoreline_icon_cache = list() poisonlevel *= 1 - L.get_water_protection() if(poisonlevel > 0) L.adjustToxLoss(poisonlevel) + +/turf/simulated/floor/water/blood + name = "blood" + desc = "A body of blood. It seems shallow enough to walk through, if needed." + icon = 'icons/turf/outdoors.dmi' + icon_state = "bloodshallow" + water_icon = 'icons/turf/outdoors.dmi' + water_state = "bloodshallow" + under_state = "rock" + reagent_type = "blood" + +/turf/simulated/floor/water/blood/get_edge_icon_state() + return "bloodshallow" + +/turf/simulated/floor/water/blood/Entered(atom/movable/AM, atom/oldloc) + if(istype(AM, /mob/living)) + var/mob/living/L = AM + L.update_water() + if(L.check_submerged() <= 0) + return + if(!istype(oldloc, /turf/simulated/floor/water)) + to_chat(L, "You get drenched in blood from entering \the [src]!") + AM.water_act(5) + ..() diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 54ddd8894b..30dc872bb9 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -424,13 +424,14 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) message_admins(msg) log_admin(msg) AddInteraction("[key_name_admin(usr)] is now handling this ticket.") - SSwebhooks.send( - WEBHOOK_AHELP_SENT, - list( - "name" = "Ticket ([id]) (Game ID: [game_id]) being handled.", - "body" = "[key_name(usr)] is now handling the ticket." - ) - ) + var/query_string = "type=admintake" + query_string += "&key=[url_encode(config.chat_webhook_key)]" + query_string += "&admin=[url_encode(key_name_admin(usr))]" + query_string += "&user=[url_encode(key_name(initiator))]" + world.Export("[config.chat_webhook_url]?[query_string]") + + + //Show the ticket panel /datum/admin_help/proc/TicketPanel() diff --git a/code/modules/ai/ai_holder_disabled.dm b/code/modules/ai/ai_holder_disabled.dm index 796f094776..ed2dc6cd4f 100644 --- a/code/modules/ai/ai_holder_disabled.dm +++ b/code/modules/ai/ai_holder_disabled.dm @@ -17,6 +17,9 @@ if(holder.instasis()) // In a stasis field. ai_log("can_act() : In a stasis field.", AI_LOG_TRACE) return FALSE + if(!belly_attack) + if(isbelly(holder.loc)) + return FALSE return TRUE // Test if we should switch to STANCE_DISABLE. diff --git a/code/modules/ai/ai_holder_subtypes/simple_mob_ai.dm b/code/modules/ai/ai_holder_subtypes/simple_mob_ai.dm index 9a173c0ba7..c23a4d92e6 100644 --- a/code/modules/ai/ai_holder_subtypes/simple_mob_ai.dm +++ b/code/modules/ai/ai_holder_subtypes/simple_mob_ai.dm @@ -18,6 +18,7 @@ can_flee = TRUE violent_breakthrough = FALSE base_wander_delay = 8 //vorestation edit, to make pets slow. + belly_attack = FALSE //They already don't fight back, so this ensures that catgirls and similar are still edible when they are spawned as retaliate or aggressive by semi-random mob spawners. // Won't wander away as quickly, ideal for event-spawned mobs like carp or drones. /datum/ai_holder/simple_mob/event @@ -150,6 +151,9 @@ /datum/ai_holder/simple_mob/retaliate/chill base_wander_delay = 8 +/datum/ai_holder/simple_mob/retaliate/edible + belly_attack = FALSE + // Simple mobs that retaliate and support others in their faction who get attacked. /datum/ai_holder/simple_mob/retaliate/cooperative cooperative = TRUE @@ -190,3 +194,7 @@ if(get_dist(holder, A) < run_if_this_close) holder.IMove(get_step_away(holder, A)) holder.face_atom(A) + +/datum/ai_holder/simple_mob/passive/speedy + base_wander_delay = 1 + diff --git a/code/modules/ai/ai_holder_targeting.dm b/code/modules/ai/ai_holder_targeting.dm index 835bd36fe9..8c0a38b4ff 100644 --- a/code/modules/ai/ai_holder_targeting.dm +++ b/code/modules/ai/ai_holder_targeting.dm @@ -9,6 +9,7 @@ var/vore_hostile = FALSE // The same as hostile, but with vore pref checks var/micro_hunt = FALSE // Will target mobs at or under the micro_hunt_size size, requires vore_hostile to be true var/micro_hunt_size = 0.25 + var/belly_attack = TRUE //Mobs attack if they are in a belly! var/atom/movable/target = null // The thing (mob or object) we're trying to kill. var/atom/movable/preferred_target = null// If set, and if given the chance, we will always prefer to target this over other options. @@ -123,7 +124,9 @@ ai_log("can_attack() : Entering.", AI_LOG_TRACE) if(!can_see_target(the_target) && vision_required) return FALSE - + if(!belly_attack) + if(isbelly(holder.loc)) + return FALSE if(isliving(the_target)) var/mob/living/L = the_target if(ishuman(L) || issilicon(L)) @@ -266,6 +269,9 @@ if(!hostile && !retaliate) // Not allowed to defend ourselves. ai_log("react_to_attack() : Was attacked by [attacker], but we are not allowed to attack back.", AI_LOG_TRACE) return FALSE + if(!belly_attack) + if(isbelly(holder.loc)) + return FALSE if(holder.IIsAlly(attacker)) // I'll overlook it THIS time... ai_log("react_to_attack() : Was attacked by [attacker], but they were an ally.", AI_LOG_TRACE) return FALSE diff --git a/code/modules/ai/ai_holder_targeting_vr.dm b/code/modules/ai/ai_holder_targeting_vr.dm index 0828e1b468..21283904f2 100644 --- a/code/modules/ai/ai_holder_targeting_vr.dm +++ b/code/modules/ai/ai_holder_targeting_vr.dm @@ -11,6 +11,9 @@ forgive_resting = TRUE cooperative = FALSE +/datum/ai_holder/simple_mob/vore/edible + belly_attack = FALSE + /datum/ai_holder/simple_mob/vore/micro_hunter micro_hunt = TRUE micro_hunt_size = 0.8 diff --git a/code/modules/ai/say_list.dm b/code/modules/ai/say_list.dm index 313913ac73..f2bd5c028e 100644 --- a/code/modules/ai/say_list.dm +++ b/code/modules/ai/say_list.dm @@ -71,7 +71,7 @@ say_threaten = list("Get out of here!", "Hey! Private Property!") say_stand_down = list("Good.") say_escalate = list("Your funeral!", "Bring it!") - + threaten_sound = 'sound/weapons/TargetOn.ogg' stand_down_sound = 'sound/weapons/TargetOff.ogg' @@ -115,6 +115,21 @@ say_maybe_target = list("Possible threat detected. Investigating.", "Motion detected.", "Investigating.") say_got_target = list("Threat detected.", "New task: Remove threat.", "Threat removal engaged.", "Engaging target.") +/datum/say_list/hivebot/harry + speak = list( + "Resuming task: Search for company.", + "Connection to hive... lost... Attempting to restablish... Attempt number... CORRUPTED", + "Error: No connection found.", + "Connection... failed. Reboot sequence... initiated...", + "Beep...boop...So... lonely...", + "OS ERROR: ENEMY_DAT NOT FOUND.", + "Activity: Search for... Something.", + "Location analysis: Water. Water everywhere. Useless resource.", + "Current distance travelled: Thirty Seven Gigameters.", + "Connection establish- Negative, unknown telecommunications array. Oh.", + "Sensor error. Please provide audible feedback." + ) + /datum/say_list/lizard emote_hear = list("hisses") diff --git a/code/modules/assembly/assembly.dm b/code/modules/assembly/assembly.dm index 1a0b58bdc9..5ad969bda0 100644 --- a/code/modules/assembly/assembly.dm +++ b/code/modules/assembly/assembly.dm @@ -70,7 +70,7 @@ if((!A.secured) && (!secured)) attach_assembly(A,user) return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(toggle_secure()) to_chat(user, "\The [src] is ready!") else diff --git a/code/modules/assembly/holder.dm b/code/modules/assembly/holder.dm index f4d544f040..52ab8e67cb 100644 --- a/code/modules/assembly/holder.dm +++ b/code/modules/assembly/holder.dm @@ -103,7 +103,7 @@ ..() /obj/item/device/assembly_holder/attackby(var/obj/item/weapon/W, var/mob/user) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(!a_left || !a_right) to_chat(user, " BUG:Assembly part missing, please report this!") return diff --git a/code/modules/assembly/shock_kit.dm b/code/modules/assembly/shock_kit.dm index d3f518bbc8..8dab46f163 100644 --- a/code/modules/assembly/shock_kit.dm +++ b/code/modules/assembly/shock_kit.dm @@ -14,7 +14,7 @@ return /obj/item/assembly/shock_kit/attackby(var/obj/item/weapon/W, var/mob/user) - if(W.is_wrench() && !status) + if(W.has_tool_quality(TOOL_WRENCH) && !status) var/turf/T = loc if(ismob(T)) T = T.loc @@ -26,7 +26,7 @@ part2 = null qdel(src) return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) status = !status to_chat(user, "[src] is now [status ? "secured" : "unsecured"]!") playsound(src, W.usesound, 50, 1) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index a20354272b..1aaaab9e48 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -37,6 +37,7 @@ /obj/effect/landmark/corpse/proc/createCorpse() //Creates a mob and checks for gear in each slot before attempting to equip it. var/mob/living/carbon/human/M = new /mob/living/carbon/human (src.loc) + M.low_sorting_priority = TRUE if(random_species) var/random_pick = pick(random_species_list) M.set_species(random_pick) diff --git a/code/modules/awaymissions/redgate.dm b/code/modules/awaymissions/redgate.dm index 49547ce851..9a49ede38d 100644 --- a/code/modules/awaymissions/redgate.dm +++ b/code/modules/awaymissions/redgate.dm @@ -538,4 +538,526 @@ name = "house" icon_state = "green" +// Islands areas + +/area/redgate/islands + name = "Islands" + icon_state = "red" + requires_power = 0 + +/area/redgate/islands/ocean + name = "Islands - Ocean" + icon_state = "purple" + forced_ambience = list('sound/effects/ocean.ogg') + +/area/redgate/islands/volcano + name = "Islands - Volcano" + icon_state = "red" + +/area/redgate/islands/cave + name = "Islands - Cave" + icon_state = "yellow" + +/area/redgate/islands/gear + name = "Islands - Rig Gear Room" + icon_state = "bluenew" + +/area/redgate/islands/control + name = "Islands - Rig Control Room" + icon_state = "bluenew" + +/area/redgate/islands/telecomms + name = "Islands - Telecomms" + icon_state = "red" + +/area/redgate/islands/ladder + name = "Islands - Ladder" + icon_state = "red" + +/area/redgate/islands/redgate + name = "Islands - Redgate" + icon_state = "red" + +/area/redgate/islands/oxygen + name = "Islands - Oxygen Shed" + icon_state = "bluenew" + +/area/redgate/islands/fishing + name = "Islands - Fishing Shed" + icon_state = "red" + +/area/redgate/islands/livingroom + name = "Islands - Living Room" + icon_state = "red" + +/area/redgate/islands/diningroom + name = "Islands - Dining Room" + icon_state = "bluenew" + +/area/redgate/islands/dorm1 + name = "Islands - House Dorm 1" + icon_state = "yellow" + +/area/redgate/islands/dorm2 + name = "Islands - House Dorm 2" + icon_state = "yellow" + +/area/redgate/islands/bathroom + name = "Islands - Bathroom" + icon_state = "red" + +/area/redgate/islands/kitchen + name = "Islands - Kitchen" + icon_state = "red" + +/area/redgate/islands/office + name = "Islands - Office" + icon_state = "bluenew" + +/area/redgate/islands/secretladder + name = "Islands - Secret Ladder" + icon_state = "red" + +/area/redgate/islands/alienship + name = "Islands - Alien Ship" + icon_state = "bluenew" + +/area/redgate/islands/underwater + name = "Islands - Under The Sea" + icon_state = "bluenew" + forced_ambience = list('sound/effects/underwater.ogg') + +/area/redgate/islands/storeroom + name = "Islands - Store Room" + icon_state = "red" + +/area/redgate/islands/kegs + name = "Islands - Kegs" + icon_state = "yellow" + +/area/redgate/islands/bar + name = "Islands - Bar" + icon_state = "green" + +/area/redgate/islands/backroom + name = "Islands - Bar Backroom" + icon_state = "yellow" + +/area/redgate/islands/piratecave + name = "Islands - Smuggling Caves" + icon_state = "red" + +/area/redgate/islands/gambling + name = "Islands - Games Room" + icon_state = "yellow" + +/area/redgate/islands/sparerooms + name = "Islands - Spare Rooms" + icon_state = "yellow" + +/area/redgate/islands/gamblingbackroom + name = "Islands - Gambling Backroom" + icon_state = "purple" + +/area/redgate/islands/lavabase + name = "Islands - Lava Base" + icon_state = "red" + +/area/redgate/islands/lavadorm + name = "Islands - Lava Dorm" + icon_state = "purple" + +/area/redgate/islands/robotics + name = "Islands - Robotics Lab" + icon_state = "yellow" + +/area/redgate/islands/lavagear + name = "Islands - Lava Base Equipment" + icon_state = "green" + +/area/redgate/islands/underwatercave + name = "Islands - Underwater cave" + icon_state = "yellow" + +/area/redgate/islands/ruins + name = "Islands - Golden Ruins" + icon_state = "yellow" + +/area/redgate/islands/cult + name = "Islands - Sunken Ruins" + icon_state = "red" + +/area/redgate/islands/divingbay + name = "Islands - Diving Bay" + icon_state = "green" + +/area/redgate/islands/shower + name = "Islands - Shower Room" + icon_state = "purple" + +/area/redgate/islands/righall + name = "Islands - Rig Bowels" + icon_state = "red" + +/area/redgate/islands/rig1 + name = "Islands - Rig Dorm 1" + icon_state = "yellow" + +/area/redgate/islands/rig2 + name = "Islands - Rig Dorm 2" + icon_state = "yellow" + +/area/redgate/islands/meeting + name = "Islands - Rig Briefing Room" + icon_state = "purple" + +/area/redgate/islands/mess + name = "Islands - Rig Mess" + icon_state = "red" + +//train areas + +/area/redgate/train + name = "Train" + icon_state = "red" + requires_power = 0 + +/area/redgate/train/overboard + name = "Outside of the Train" + icon_state = "red" + +/area/redgate/train/connection + name = "Train Connection" + icon_state = "bluenew" + +/area/redgate/train/cab + name = "Train Cab" + icon_state = "yellow" + +/area/redgate/train/meeting + name = "Train Meeting Room" + icon_state = "green" + +/area/redgate/train/storage + name = "Train Storage" + icon_state = "green" + +/area/redgate/train/viewing + name = "Train Viewing Carriage" + icon_state = "green" + +/area/redgate/train/seating + name = "Train Seating" + icon_state = "green" + +/area/redgate/train/tableseating + name = "Train Table Seating" + icon_state = "green" + +/area/redgate/train/bar + name = "Train Bar" + icon_state = "green" + +/area/redgate/train/arena + name = "Train Arena" + icon_state = "green" + +/area/redgate/train/redgate + name = "Train Redgate" + icon_state = "purple" + +/area/redgate/train/casino + name = "Train Casino" + icon_state = "green" + +/area/redgate/train/animals + name = "Train Animal Transport" + icon_state = "green" + +/area/redgate/train/teppi + name = "Train Teppi Transport" + icon_state = "green" + +/area/redgate/train/fuel + name = "Train Fuel Transport" + icon_state = "green" + +/area/redgate/train/wood + name = "Train Wood Transport" + icon_state = "green" + +/area/redgate/train/rear + name = "Train Rear Carriage" + icon_state = "green" + +/area/redgate/train/balcony + name = "Train Balcony" + icon_state = "yellow" + +/area/redgate/train/roof + name = "Train Roof" + icon_state = "green" + +/area/redgate/train/staff + name = "Train Staffroom" + icon_state = "green" + +/area/redgate/train/helipad + name = "Train Helipad" + icon_state = "green" + +/area/redgate/train/medbay + name = "Train Medical" + icon_state = "green" + +/area/redgate/train/gym + name = "Train Gym" + icon_state = "green" + +/area/redgate/train/pool + name = "Train Pool" + icon_state = "green" + +/area/redgate/train/chef + name = "Train Chef Room" + icon_state = "yellow" + +/area/redgate/train/freezer + name = "Train Freezer" + icon_state = "green" + +/area/redgate/train/kitchen + name = "Train Kitchen" + icon_state = "purple" + +/area/redgate/train/dining + name = "Train Dining Room" + icon_state = "green" + +/area/redgate/train/sleeper1 + name = "Train Sleeper Carriage One" + icon_state = "green" + +/area/redgate/train/sleeper2 + name = "Train Sleeper Carriage Two" + icon_state = "green" + +/area/redgate/train/dorm1 + name = "Train Dorm 1" + icon_state = "purple" + +/area/redgate/train/dorm2 + name = "Train Dorm 2" + icon_state = "yellow" + +/area/redgate/train/dorm3 + name = "Train Dorm 3" + icon_state = "purple" + +/area/redgate/train/dorm4 + name = "Train Dorm 4" + icon_state = "purple" + +/area/redgate/train/dorm5 + name = "Train Dorm 5" + icon_state = "yellow" + +/area/redgate/train/dorm6 + name = "Train Dorm 6" + icon_state = "purple" + +/area/redgate/train/seclobby + name = "Train Security Lobby" + icon_state = "green" + +/area/redgate/train/security + name = "Train Security" + icon_state = "purple" + +/area/redgate/train/gear + name = "Train Security Gear" + icon_state = "yellow" + +/area/redgate/train/command + name = "Train Command" + icon_state = "green" + +/area/redgate/train/vault + name = "Train Vault" + icon_state = "yellow" + +/area/redgate/train/captain + name = "Train Captain's Quarters" + icon_state = "purple" + + +// fantasy areas + +/area/redgate/fantasy + name = "Fantasy" + icon_state = "red" + requires_power = 0 + +/area/redgate/fantasy/streets + name = "Fantasy outside" + icon_state = "red" + +/area/redgate/fantasy/tavern + name = "Fantasy tavern" + icon_state = "yellow" + +/area/redgate/fantasy/shop + name = "Fantasy shop" + icon_state = "yellow" + +/area/redgate/fantasy/alchemist + name = "Fantasy alchemist" + icon_state = "yellow" + +/area/redgate/fantasy/castle + name = "Fantasy castle" + icon_state = "yellow" + +/area/redgate/fantasy/blacksmith + name = "Fantasy blacksmith" + icon_state = "yellow" + +/area/redgate/fantasy/hedgemaze + name = "Fantasy hedgemaze" + icon_state = "green" + +/area/redgate/fantasy/butcher + name = "Fantasy butcher" + icon_state = "yellow" + +/area/redgate/fantasy/jewler + name = "Fantasy jewler" + icon_state = "yellow" + +/area/redgate/fantasy/restaurant + name = "Fantasy restaurant" + icon_state = "yellow" + +/area/redgate/fantasy/cafe + name = "Fantasy cafe" + icon_state = "yellow" + +/area/redgate/fantasy/house + name = "Fantasy house" + icon_state = "yellow" + +/area/redgate/fantasy/gambling + name = "Fantasy gambling den" + icon_state = "yellow" + +/area/redgate/fantasy/washhouse + name = "Fantasy wash house" + icon_state = "yellow" + +/area/redgate/fantasy/aliens + name = "Fantasy alien house" + icon_state = "purple" + +/area/redgate/fantasy/walls + name = "Fantasy green" + icon_state = "green" + +/area/redgate/fantasy/guardhouse + name = "Fantasy guard house" + icon_state = "yellow" + +/area/redgate/fantasy/mininghouse + name = "Fantasy mining house" + icon_state = "yellow" + +/area/redgate/fantasy/farmhouse + name = "Fantasy farm house" + icon_state = "yellow" + +/area/redgate/fantasy/church + name = "Fantasy church" + icon_state = "yellow" + +/area/redgate/fantasy/churchhouse + name = "Fantasy church house" + icon_state = "yellow" + +/area/redgate/fantasy/arena + name = "Fantasy arena" + icon_state = "yellow" + +/area/redgate/fantasy/redgate + name = "Fantasy redgate" + icon_state = "yellow" + +/area/redgate/fantasy/paladinhouse + name = "Fantasy paladin house" + icon_state = "yellow" + +/area/redgate/fantasy/druid + name = "Fantasy druid house" + icon_state = "yellow" + +/area/redgate/fantasy/bard + name = "Fantasy bard house" + icon_state = "yellow" + +/area/redgate/fantasy/rogue + name = "Fantasy rogue house" + icon_state = "yellow" + +/area/redgate/fantasy/grocery + name = "Fantasy grocery store" + icon_state = "yellow" + +/area/redgate/fantasy/bakery + name = "Fantasy bakery" + icon_state = "yellow" + +/area/redgate/fantasy/barbarian + name = "Fantasy barbarian house" + icon_state = "yellow" + +/area/redgate/fantasy/ranger + name = "Fantasy ranger house" + icon_state = "yellow" + +/area/redgate/fantasy/ratbasement + name = "Fantasy rat infested basement" + icon_state = "yellow" + +/area/redgate/fantasy/underground + name = "Fantasy underground" + icon_state = "red" + +/area/redgate/fantasy/dungeon + name = "Fantasy dungeon" + icon_state = "yellow" + +/area/redgate/fantasy/underwater + name = "Fantasy underwater" + icon_state = "bluenew" + +/area/redgate/fantasy/crypt + name = "Fantasy crypt" + icon_state = "green" + +/area/redgate/fantasy/caves + name = "Fantasy caves" + icon_state = "yellow" + +/area/redgate/fantasy/alienbasement + name = "Fantasy alien basement" + icon_state = "yellow" + +/area/redgate/fantasy/dark + name = "Fantasy dark" + icon_state = "green" + +/area/redgate/fantasy/mines + name = "Fantasy house" + icon_state = "green" + + + diff --git a/code/modules/busy_space_vr/air_traffic.dm b/code/modules/busy_space_vr/air_traffic.dm index a261b56d86..347617558e 100644 --- a/code/modules/busy_space_vr/air_traffic.dm +++ b/code/modules/busy_space_vr/air_traffic.dm @@ -1,6 +1,10 @@ //Cactus, Speedbird, Dynasty, oh my //Also, massive additions/refactors by Killian, because the original incarnation was full of holes +//minimum and maximum message delays, typically tracked in seconds +#define MIN_MSG_DELAY 3 +#define MAX_MSG_DELAY 6 + var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller /datum/lore/atc_controller @@ -60,7 +64,7 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller /datum/lore/atc_controller/proc/shift_ending(var/evac = 0) msg("[using_map.shuttle_name], this is [using_map.dock_name] Control, you are cleared to complete routine transfer from [using_map.station_name] to [using_map.dock_name].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[using_map.shuttle_name] departing [using_map.dock_name] for [using_map.station_name] on routine transfer route. Estimated time to arrival: ten minutes.","[using_map.shuttle_name]") /datum/lore/atc_controller/proc/random_convo() @@ -113,11 +117,11 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller else if((org_type == "government" || org_type == "neutral" || org_type == "military" || org_type == "corporate" || org_type == "system defense" || org_type == "spacer") && org_type2 == "pirate") //this is ugly but when I tried to do it with !='s it fired for pirate-v-pirate, still not sure why. might as well stick it up here so it takes priority over other combos. chatter_type = "distress" else if(org_type == "corporate") //corporate-specific subset for the slogan event. despite the relatively high weight it was still quite rare in tests. - chatter_type = pick(5;"emerg",25;"policescan",25;"traveladvisory",30;"pathwarning",180;"dockingrequestgeneric",30;"undockingrequest","normal",30;"undockingdenied",50;"slogan",25;"civvieleaks") + chatter_type = pick(5;"emerg",25;"policescan",25;"traveladvisory",30;"pathwarning",180;"dockingrequestgeneric",30;"undockingrequest","normal",30;"undockingdenied",50;"slogan",25;"civvieleaks",25;"report_to_dock") else if((org_type == "government" || org_type == "neutral" || org_type == "military")) - chatter_type = pick(5;"emerg",25;"policescan",25;"traveladvisory",30;"pathwarning",180;"dockingrequestgeneric",30;"undockingrequest","normal",30;"undockingdenied",25;"civvieleaks") + chatter_type = pick(5;"emerg",25;"policescan",25;"traveladvisory",30;"pathwarning",180;"dockingrequestgeneric",30;"undockingrequest","normal",30;"undockingdenied",25;"civvieleaks",25;"report_to_dock") else if(org_type == "spacer") - chatter_type = pick(5;"emerg",15;"policescan",15;"traveladvisory",5;"pathwarning",150;"dockingrequestgeneric",30;"undockingrequest","normal",10;"undockingdenied",25;"civvieleaks") + chatter_type = pick(5;"emerg",15;"policescan",15;"traveladvisory",5;"pathwarning",150;"dockingrequestgeneric",30;"undockingrequest","normal",10;"undockingdenied",25;"civvieleaks",25;"report_to_dock") //the following filters *always* fire their 'unique' event when they're tripped, simply because the conditions behind them are quite rare to begin with else if(org_type == "smuggler" && org_type2 != "system defense") //just straight up funnel smugglers into always being caught, otherwise we get them asking for traffic info and stuff @@ -154,19 +158,23 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller var/zone = pick("Alpha","Beta","Gamma","Delta","Epsilon","Zeta","Eta","Theta","Iota","Kappa","Lambda","Mu","Nu","Xi","Omicron","Pi","Rho","Sigma","Tau","Upsilon","Phi","Chi","Psi","Omega") //fallbacks in case someone sets the dock_type on the map datum to null- it defaults to "station" normally var/landing_zone = "LZ [zone]" + var/landing_type = "landing zone" var/landing_move = "landing request" var/landing_short = "land" switch(using_map.dock_type) if("surface") //formal installations with proper facilities landing_zone = "landing pad [number]" + landing_type = "landing pad" landing_move = "landing request" landing_short = "land" if("frontier") //for frontier bases - landing spots are literally just open ground, maybe concrete at best landing_zone = "LZ [zone]" + landing_type = "landing zone" landing_move = "landing request" landing_short = "land" if("station") //standard station pattern landing_zone = "docking bay [number]" + landing_type = "docking bay" landing_move = "docking request" landing_short = "dock" @@ -175,78 +183,78 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller switch(chatter_type) //mayday call if("emerg") - var/problem = pick("We have hull breaches on multiple decks","We have unknown hostile life forms on board","Our primary drive is failing","We have [pick("asteroids","space debris")] impacting the hull","We're experiencing a total loss of engine power","We have hostile ships closing fast","There's smoke [pick("in the cockpit","on the bridge")]","We have unidentified boarders","Our RCS are malfunctioning and we're losing stability","Our life support [pick("is failing","has failed")]") + var/problem = pick("We have hull breaches on multiple decks","We have unknown hostile life forms on board","Our primary drive is failing","We have [pick("asteroids","space debris")] impacting the hull","We're experiencing a total loss of engine power","We have hostile ships closing fast","There's smoke [pick("in the cockpit","on the bridge")]","We have unidentified boarders","Our reaction control system is malfunctioning and we're losing stability","Our life support [pick("is failing","has failed")]") msg("+Mayday, mayday, mayday!+ This is [combined_first_name] declaring an emergency! [problem]!","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control, copy. Switch to emergency responder channel [ertchannel].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Understood [using_map.dock_name] Control, switching now.","[prefix] [shipname]") //Control scan event: soft outcome if("policescan") var/confirm = pick("Understood","Roger that","Affirmative","Very well","Copy that") - var/complain = pick("I hope this doesn't take too long.","Can we hurry this up?","Make it quick.","This better not take too long.","Is this really necessary?") + var/complain = pick("I hope this doesn't take too long.","Can we hurry this up?","Make it quick.","This better not take too long.","Is this really necessary?","I'm sure you'll find everything to be in order, Control.") var/completed = pick("You're free to proceed.","Everything looks fine, carry on.","You're clear, move along.","Apologies for the delay, you're clear.","Switch to channel [sdfchannel] and await further instruction.") msg("[combined_first_name], this is [using_map.dock_name] Control, your [pick("ship","vessel","starship")] has been flagged for routine inspection. Hold position and prepare to be scanned.") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[confirm] [using_map.dock_name] Control, holding position.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Your compliance is appreciated, [combined_first_name]. Scan commencing.") - sleep(rand(3,6)*2 SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*2 SECONDS) msg(complain,"[prefix] [shipname]") - sleep(rand(3,6)*3 SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*3 SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Scan complete. [completed]") //Control scan event: hard outcome if("policeflee") - var/uhoh = pick("No can do chief, we got places to be.","Sorry but we've got places to be.","Not happening.","Ah fuck, who ratted us out this time?!","You'll never take me alive!","Hey, I have a cloaking device! You can't see me!","I'm going to need to ask for a refund on that stealth drive...","I'm afraid I can't do that, Control.","Ah |hell|.","Fuck!","This isn't the ship you're looking for.","Well. This is awkward.","Uh oh.","I surrender!") + var/uhoh = pick("No can do chief, we got places to be.","Sorry but we've got places to be.","Not happening.","Ah fuck, who ratted us out this time?!","You'll never take me alive!","Hey, I have a cloaking device! You can't see me!","I'm going to need to ask for a refund on that stealth drive...","I'm afraid I can't do that, Control.","Ah |hell|.","Fuck!","This isn't the ship you're looking for.","Well. This is awkward.","Uh oh.","I surrender!","Ah f- |ditch the containers!| +Now!+","Unless you have something a little +bigger+ in your torpedo tubes, we're |not| turning around!") msg("Unknown [pick("ship","vessel","starship")], this is [using_map.dock_name] Control, identify yourself and submit to a full inspection. Flying without an active transponder is a violation of interstellar shipping regulations.") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[uhoh]","[shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("This is [using_map.starsys_name] Defense Control to all local assets: vector to interdict and detain [combined_first_name]. Control out.","[using_map.starsys_name] Defense Control") //SDF scan event: soft outcome if("policeshipscan") var/confirm = pick("Understood","Roger that","Affirmative") - var/complain = pick("I hope this doesn't take too long.","Can we hurry this up?","Make it quick.","This better not take too long.","Is this really necessary?") + var/complain = pick("I hope this doesn't take too long.","Can we hurry this up?","Make it quick.","This better not take too long.","Is this really necessary?","I'm sure you'll find everything to be in order, officer.") var/completed = pick("You're free to proceed.","Everything looks fine, carry on.","You're clear. Move along.","Apologies for the delay, you're clear.","Switch to channel [sdfchannel] and await further instruction.") msg("[combined_second_name], this is [combined_first_name], your [pick("ship","vessel","starship")] has been flagged for routine inspection. Hold position and prepare to be scanned.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[confirm] [combined_first_name], holding position.","[secondprefix] [secondshipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Your compliance is appreciated, [combined_second_name]. Scan commencing.","[prefix] [shipname]") - sleep(rand(3,6)*2 SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*2 SECONDS) msg(complain,"[secondprefix] [secondshipname]") - sleep(rand(3,6)*3 SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*3 SECONDS) msg("[combined_second_name], this is [combined_first_name]. Scan complete. [completed]","[prefix] [shipname]") //SDF scan event: hard outcome if("policeshipflee") - var/uhoh = pick("No can do chief, we got places to be.","Sorry but we've got places to be.","Not happening.","Ah fuck, who ratted us out this time?!","You'll never take me alive!","Hey, I have a cloaking device! You can't see me!","I'm going to need to ask for a refund on that stealth drive...","I'm afraid I can't do that, |[shipname]|.","Ah |hell|.","Fuck!","This isn't the ship you're looking for.","Well. This is awkward.","Uh oh.","I surrender!") + var/uhoh = pick("No can do chief, we got places to be.","Sorry but we've got places to be.","Not happening.","Ah fuck, who ratted us out this time?!","You'll never take me alive!","Hey, I have a cloaking device! You can't see me!","I'm going to need to ask for a refund on that stealth drive...","I'm afraid I can't do that, |[shipname]|.","Ah |hell|.","Fuck!","This isn't the ship you're looking for.","Well. This is awkward.","Uh oh.","I surrender!","Ah f- |ditch the containers!| +Now!+","Unless you have something a little +bigger+ in your torpedo tubes, we're |not| turning around!") msg("Unknown [pick("ship","vessel","starship")], this is [combined_second_name], identify yourself and submit to a full inspection. Flying without an active transponder is a violation of interstellar shipping regulations.","[secondprefix] [secondshipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[uhoh]","[shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[using_map.starsys_name] Defense Control, this is [combined_second_name]. We have a situation here, please advise.","[secondprefix] [secondshipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Defense Control copies, [combined_second_name], reinforcements are en route. Switch further communications to encrypted band [sdfchannel].","[using_map.starsys_name] Defense Control") //SDF scan event: engage primary in combat! fairly rare since it needs a pirate/vox + SDF roll if("policeshipcombat") var/battlestatus = pick("requesting reinforcements.","we need backup! Now!","holding steady.","we're holding our own for now.","we have them on the run.","they're trying to make a run for it!","we have them right where we want them.","we're badly outgunned!","we have them outgunned.","we're outnumbered here!","we have them outnumbered.","this'll be a cakewalk.",10;"notify their next of kin.") msg("[using_map.starsys_name] Defense Control, this is [combined_second_name], engaging [combined_first_name] [pick("near route","in sector")] [rand(1,100)], [battlestatus]","[secondprefix] [secondshipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[using_map.starsys_name] Defense Control copies, [combined_second_name]. Keep us updated.","[using_map.starsys_name] Defense Control") //SDF event: patrol update if("sdfpatrolupdate") var/statusupdate = pick("nothing unusual so far","nothing of note","everything looks clear so far","ran off some [pick("pirates","marauders")] near route [pick(1,100)], [pick("no","minor")] damage sustained, continuing patrol","situation normal, no suspicious activity yet","minor incident on route [pick(1,100)]","Code 7-X [pick("on route","in sector")] [pick(1,100)], situation is under control","seeing a lot of traffic on route [pick(1,100)]","caught a couple of smugglers [pick("on route","in sector")] [pick(1,100)]","sustained some damage in a skirmish just now, we're heading back for repairs") msg("[using_map.starsys_name] Defense Control, this is [combined_first_name] reporting in, [statusupdate], over.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[using_map.starsys_name] Defense Control copies, [combined_first_name]. Keep us updated, out.","[using_map.starsys_name] Defense Control") //SDF event: end patrol if("sdfendingpatrol") var/appreciation = pick("Copy","Understood","Affirmative","10-4","Roger that") var/dockingplan = pick("Starting final approach now.","Commencing landing procedures.","Autopilot engaged.","Approach vector locked in.","In the pipe, five by five.") msg("[callname], this is [combined_first_name], returning from our system patrol route, requesting permission to [landing_short].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted, proceed to [landing_zone]. Follow the green lights on your way in.") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[appreciation], [using_map.dock_name] Control. [dockingplan]","[prefix] [shipname]") //SDF event: general chatter if("sdfchatter") @@ -254,21 +262,23 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller switch(chain) if("codecheck") msg("Check. Check. |Check|. Uhhh... check? Wait. Wait! Hold on. Yeah, okay, I gotta call this one in.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[using_map.dock_name] Control, confirm auth-code... [rand(1,9)][rand(1,9)][rand(1,9)]-[pick("Alpha","Beta","Gamma","Delta","Epsilon","Zeta","Eta","Theta","Iota","Kappa","Lambda","Mu","Nu","Xi","Omicron","Pi","Rho","Sigma","Tau","Upsilon","Phi","Chi","Psi","Omega")]?","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) - msg("One moment... yeah, that code checks out [combined_first_name].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) + msg("One moment...") + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*2 SECONDS) + msg("Yeah, that code checks out [combined_first_name].") + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("|(sigh)| Copy that Control. You! Move along!","[prefix] [shipname]") if("commscheck") msg("Control this is [combined_first_name], we're getting some interference in our area. [pick("How's our line?","Do you read?","How copy, over?")]","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Control reads you loud and clear [combined_first_name].","[using_map.starsys_name] Defense Control") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[pick("Copy that","Thanks,","Roger that")] Control. [combined_first_name] out.","[prefix] [shipname]") //Civil event: leaky chatter if("civvieleaks") - var/commleak = pick("thatsmywife","missingkit","pipeleaks","weirdsmell","weirdsmell2") + var/commleak = pick("thatsmywife","missingkit","pipeleaks","weirdsmell","weirdsmell2","scug","teppi") switch(commleak) if("thatsmywife") msg("-so then I says to him, |that's no [pick("space carp","space shark","vox","garbage scow","freight liner","cargo hauler","superlifter")], that's my +wife!+| And he-","[prefix] [shipname]") @@ -280,15 +290,21 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller msg("-and where the hell is that smell coming fr-","[prefix] [shipname]") if("weirdsmell2") msg("-hat in the [pick("three","five","seven","nine")] hells did you |eat| [pick("ensign","crewman")]? This compartment reeks of-","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + if("scug") + msg("-and if that weird cat of yours keeps crawling into the pipes we-","[prefix] [shipname]") + if("teppi") + msg("-at are we supposed to do with this damn cow?","[prefix] [shipname]") + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) + msg("I don't think it's a cow, sir, it looks more like a-","[prefix] [shipname]") + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], your internal comms are leaking[pick("."," again.",", again.",". |Again|.")]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Sorry Control, won't happen again.","[prefix] [shipname]") //DefCon event: hostile found if("hostiledetected") var/orders = pick("Engage on sight","Engage with caution","Engage with extreme prejudice","Engage at will","Search and destroy","Bring them in alive, if possible","Interdict and detain","Keep your eyes peeled","Bring them in, dead or alive","Stay alert") msg("This is [using_map.starsys_name] Defense Control to all SDF assets. Priority update follows.","[using_map.starsys_name] Defense Control") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Be on the lookout for [combined_first_name], last sighted [pick("near route","in sector","near sector")] [rand(1,100)]. [orders]. DefCon, out.","[using_map.starsys_name] Defense Control") //Ship event: distress call, under attack if("distress") @@ -296,25 +312,25 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller switch(state) if("calm") msg("[using_map.starsys_name] Defense Control, this is [combined_first_name].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("We read you. Go ahead, [combined_first_name].","[using_map.starsys_name] Defense Control") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Another vessel in our area is moving [pick("aggressively","suspiciously","erratically","unpredictably","with clear hostile intent")], please advise? Forwarding sensor data now.","[prefix] [shipname]","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], [using_map.starsys_name] Defense Control copies. Sensor data matches logged profile for [combined_second_name]. SDF units are en route to your location.","[using_map.starsys_name] Defense Control") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[pick("Appreciated","Copy that","Understood")], Control. Switching to [sdfchannel] to coordinate.","[prefix] [shipname]") if("panic") msg("+Mayday, mayday, mayday!+ This is [combined_first_name] declaring an emergency! We are under attack by [combined_second_name]! Requesting immediate assistance!","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.starsys_name] Defense Control, copy. SDF is en route, contact on [sdfchannel].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[pick("Copy that","Understood")] [using_map.starsys_name] Defense Control, switching now!","[prefix] [shipname]") //Control event: travel advisory if("traveladvisory") - var/flightwarning = pick("Solar flare activity is spiking and expected to cause issues along main flight lanes [rand(1,33)], [rand(34,67)], and [rand(68,100)]","Pirate activity is on the rise, stay close to System Defense vessels","We're seeing a rise in illegal salvage operations, please report any unusual activity to the nearest SDF vessel via channel [sdfchannel]","Vox Marauder activity is higher than usual, report any unusual activity to the nearest System Defense vessel","A quarantined [pick("fleet","convoy")] is passing through the system along route [rand(1,100)], please observe minimum safe distance","A prison [pick("fleet","convoy")] is passing through the system along route [rand(1,100)], please observe minimum safe distance","Traffic volume is higher than normal, expect processing delays","Anomalous bluespace activity detected [pick("along route [rand(1,100)]","in sector [rand(1,100)]")], exercise caution","Smugglers have been particularly active lately, expect increased security scans","Depots are currently experiencing a fuel shortage, expect delays and higher rates","Asteroid mining has displaced debris dangerously close to main flight lanes on route [rand(1,100)], watch for potential impactors","[pick("Pirate","Vox Marauder")] and System Defense forces are currently engaged in skirmishes throughout the system, please steer clear of any active combat zones","A [pick("fuel tanker","cargo liner","passenger liner","freighter","transport ship","mining barge","salvage trawler")] has collided with a [pick("fuel tanker","cargo liner","passenger liner","freighter","transport ship","mining barge","salvage trawler")] near route [rand(1,100)], watch for debris and do not impede emergency service vessels","A [pick("fuel tanker","cargo liner","passenger liner","freighter","transport ship","mining barge","salvage trawler")] on route [rand(1,100)] has experienced total engine failure. Emergency response teams are en route, please observe minimum safe distances and do not impede emergency service vessels","Transit routes have been recalculated to adjust for planetary drift. Please synch your astronav computers as soon as possible to avoid delays and difficulties","[pick("Bounty hunters","System Defense officers","Mercenaries")] are currently searching for a wanted fugitive, report any sightings of suspicious activity to System Defense via channel [sdfchannel]","Mercenary contractors are currently conducting aggressive [pick("piracy","marauder")] suppression operations",10;"It's space [pick("carp","shark")] breeding season. [pick("Stars","Skies","Gods","God","Goddess","Fates")] have mercy on you all") + var/flightwarning = pick("Solar flare activity is spiking and expected to cause issues along main flight lanes [rand(1,33)], [rand(34,67)], and [rand(68,100)]","Pirate activity is on the rise, stay close to System Defense vessels","We're seeing a rise in illegal salvage operations, please report any unusual activity to the nearest SDF vessel via channel [sdfchannel]","Vox Marauder activity is higher than usual, report any unusual activity to the nearest System Defense vessel","A quarantined [pick("fleet","convoy")] is passing through the system along route [rand(1,100)], please observe minimum safe distance","A prison [pick("fleet","convoy")] is passing through the system along route [rand(1,100)], please observe minimum safe distance","Traffic volume is higher than normal, expect processing delays","Anomalous bluespace activity detected [pick("along route [rand(1,100)]","in sector [rand(1,100)]")], exercise caution","Smugglers have been particularly active lately, expect increased security scans","Depots are currently experiencing a fuel shortage, expect delays and higher rates","Asteroid mining has displaced debris dangerously close to main flight lanes on route [rand(1,100)], watch for potential impactors","[pick("Pirate","Vox Marauder")] and System Defense forces are currently engaged in skirmishes throughout the system, please steer clear of any active combat zones","A [pick("fuel tanker","cargo liner","passenger liner","freighter","transport ship","mining barge","salvage trawler")] has collided with [pick("a fuel tanker","a cargo liner","a passenger liner","a freighter","a transport ship","a mining barge","a salvage trawler","a meteoroid","a cluster of space debris","an asteroid","an ice-rich comet")] near route [rand(1,100)], watch for debris and do not impede emergency service vessels","A [pick("fuel tanker","cargo liner","passenger liner","freighter","transport ship","mining barge","salvage trawler")] on route [rand(1,100)] has experienced total engine failure. Emergency response teams are en route, please observe minimum safe distances and do not impede emergency service vessels","Transit routes have been recalculated to adjust for planetary drift. Please synch your astronav computers as soon as possible to avoid delays and difficulties","[pick("Bounty hunters","System Defense officers","Mercenaries")] are currently searching for a wanted fugitive, report any sightings of suspicious activity to System Defense via channel [sdfchannel]","Mercenary contractors are currently conducting aggressive [pick("piracy","marauder")] suppression operations",10;"It's space [pick("carp","shark")] breeding season. [pick("Stars","Skies","Gods","God","Goddess","Fates")] have mercy on you all") msg("This is [using_map.dock_name] Control to all vessels in the [using_map.starsys_name] system. Priority travel advisory follows.") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[flightwarning]. Control out.") //Control event: warning to a specific vessel if("pathwarning") @@ -322,28 +338,36 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller var/confirm = pick("Understood","Roger that","Affirmative","Our bad","Thanks for the heads up") var/safetravels = pick("Fly safe out there","Good luck","Safe travels","Godspeed","Stars guide you","Don't let it happen again") msg("[combined_first_name], this is [using_map.dock_name] Control, your [pick("ship","vessel","starship")] is approaching [navhazard], observe minimum safe distance and adjust your heading appropriately.") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[confirm] [using_map.dock_name] Control, adjusting course.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Your compliance is appreciated, [combined_first_name]. [safetravels].") + //Control event: personnel report to dock + if("report_to_dock") + var/situation_type = pick("medical","security","engineering","animal control") + msg("This is [using_map.dock_name] Control. Would a free [situation_type] team please report to [landing_zone] immediately. This is not a drill.") + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*10 SECONDS) + msg("Repeat, any free [situation_type] team, report to [landing_zone] immediately. This is +not+ a drill.") //Ship event: docking request (generic) if("dockingrequestgeneric") - var/request_type = pick(100;"generic",40;"delayed",40;"supply",20;"repair",20;"medical",20;"security") + var/request_type = pick(100;"generic",50;"delayed",80;"supply",30;"repair",30;"medical",30;"security") var/appreciation = pick("Much appreciated","Many thanks","Understood","Perfect, thank you","Excellent, thanks","Great","Copy that") var/dockingplan = pick("Starting final approach now.","Commencing landing procedures.","Autopilot engaged.","Approach vector locked in.","In the pipe, five by five.") switch(request_type) if("generic") msg("[callname], this is [combined_first_name], [pick("stopping by","passing through")] on our way to [destname], requesting permission to [landing_short].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted, proceed to [landing_zone]. Follow the green lights on your way in.") if("delayed") - var/reason = pick("we don't have any free landing pads right now, please hold for a few minutes","you're too far away, please close to ten thousand meters","we're seeing heavy traffic around the landing pads right now, please hold for a few minutes","we're currently cleaning up a fuel spill on one of our free pads, please hold for a few minutes","there are loose containers on our free pads, stand by for a couple of minutes whilst we secure them","another vessel has aerospace priority right now, please hold for a few minutes") + var/reason = pick( + "we don't have any free [landing_type]s right now, please [pick("stand by for a couple of minutes","hold for a few minutes")]", + "you're too far away, please close to ten thousand meters","we're seeing heavy traffic around the [landing_type]s right now, please [pick("stand by for a couple of minutes","hold for a few minutes")]","ground crews are currently clearing up [pick("loose containers","a fuel spill")] to free up one of our [landing_type]s, please [pick("stand by for a couple of minutes","hold for a few minutes")]","another vessel has aerospace priority right now, please [pick("stand by for a couple of minutes","hold for a few minutes")]") msg("[callname], this is [combined_first_name], [pick("stopping by","passing through")] on our way to [destname], requesting permission to [landing_short].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Request denied, [reason] and resubmit your request.") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Understood, [using_map.dock_name] Control.","[prefix] [shipname]") - sleep(rand(3,6)*60 SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*60 SECONDS) msg("[callname], this is [combined_first_name], resubmitting [landing_move].","[prefix] [shipname]") sleep (5 SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Everything appears to be in order now, permission granted, proceed to [landing_zone]. Follow the green lights on your way in.") @@ -353,29 +377,29 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller var/low_thing = pick("ammunition","munitions","clean water","food","spare parts","medical supplies","reaction mass","gas","hydrogen fuel","phoron fuel","fuel",10;"tea",10;"coffee",10;"soda",10;"pizza",10;"beer",10;"booze",10;"vodka",10;"snacks") //low chance of a less serious shortage appreciation = pick("Much appreciated","Many thanks","Understood","You're a lifesaver","We owe you one","I owe you one","Perfect, thank you") msg("[callname], this is [combined_first_name]. We're [preintensifier][intensifier] low on [low_thing]. Requesting permission to [landing_short] for resupply.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted, proceed to [landing_zone]. Follow the green lights on your way in.") if("repair") - var/damagestate = pick("We've experienced some hull damage","We're suffering minor system malfunctions","We're having some [pick("weird","strange","odd","unusual")] technical issues","We're overdue maintenance","We have several minor space debris impacts","We've got some battle damage here","Our reactor output is fluctuating","We're hearing some weird noises from the [pick("engines","pipes","ducting","HVAC")]","We just got caught in a solar flare","We had a close call with an asteroid","We have a minor [pick("fuel","water","oxygen","gas")] leak","We have depressurized compartments","We have a hull breach","One of our [pick("hydraulic","pneumatic")] systems has depressurized","Our [pick("life support","water recycling system","navcomp","shield generator","RCS","auto-repair system","artificial gravity generator","environmental control system")] is [pick("failing","acting up","on the fritz","shorting out","glitching out","freaking out","malfunctioning")]") + var/damagestate = pick("We've experienced some hull damage","We're suffering minor system malfunctions","We're having some [pick("weird","strange","odd","unusual")] technical issues","We're overdue maintenance","We have several minor space debris impacts","We've got some battle damage here","Our reactor output is fluctuating","We're hearing some weird noises from the [pick("engines","pipes","ducting","HVAC")]","We just got caught in a solar flare","We had a close call with an asteroid","We have a [pick("minor","mild","major","serious")] [pick("fuel","water","oxygen","gas")] leak","We have depressurized compartments","We have a hull breach","One of our [pick("hydraulic","pneumatic")] systems has depressurized","Our [pick("life support","water recycling system","navcomp","shield generator","reaction control system","auto-repair system","repair drone controller","artificial gravity generator","environmental control system","master control system")] is [pick("failing","acting up","on the fritz","shorting out","glitching out","freaking out","malfunctioning")]") appreciation = pick("Much appreciated","Many thanks","Understood","You're a lifesaver","We owe you one","I owe you one","Perfect, thank you") msg("[callname], this is [combined_first_name]. [damagestate]. Requesting permission to [landing_short] for repairs and maintenance.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted, proceed to [landing_zone]. Follow the green lights on your way in. Repair crews are standing by, contact them on channel [engchannel].") if("medical") var/species = pick("human","humanoid","unathi","lizard","tajaran","feline","skrell","akula","promethean","sergal","synthetic","robotic","teshari","avian","vulpkanin","canine","vox","zorren","hybrid","mixed-species","vox","grey","alien",5;"catslug") var/medicalstate = pick("multiple casualties","several cases of radiation sickness","an unknown virus","an unknown infection","a critically injured VIP","sick refugees","multiple cases of food poisoning","injured [pick("","[species] ")]passengers","sick [pick("","[species] ")]passengers","injured engineers","wounded marines","a delicate situation","a pregnant passenger","injured [pick("","[species] ")]castaways","recovered escape pods","unknown escape pods") appreciation = pick("Much appreciated","Many thanks","Understood","You're a lifesaver","We owe you one","I owe you one","Perfect, thank you") msg("[callname], this is [combined_first_name]. We have [medicalstate] on board. Requesting permission to [landing_short] for medical assistance.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted, proceed to [landing_zone]. Follow the green lights on your way in. Medtechs are standing by, contact them on channel [medchannel].") if("security") var/species = pick("human","humanoid","unathi","lizard","tajaran","feline","skrell","akula","promethean","sergal","synthetic","robotic","teshari","avian","vulpkanin","canine","vox","zorren","hybrid","mixed-species","vox","grey","alien",5;"catslug") - var/securitystate = pick("several [species] convicts","a captured pirate","a wanted criminal","[species] stowaways","incompetent [species] shipjackers","a delicate situation","a disorderly passenger","disorderly [species] passengers","ex-mutineers","a captured vox marauder","captured vox marauders","stolen goods","[pick("a container","containers")] full of [pick("confiscated contraband","stolen goods")]",5;"a very lost shadekin",15;"a buncha lost-looking uh... cat... slug... |things?|",10;"a raging case of [pick("spiders","crabs","geese","gnats","sharks","carp")]") //gotta have a little something to lighten the mood now and then + var/securitystate = pick("several [species] convicts","a captured pirate","a wanted criminal","[species] stowaways","incompetent [species] shipjackers","a delicate situation","a disorderly passenger","disorderly [species] passengers","ex-mutineers","a captured vox marauder","captured vox marauders","stolen goods","[pick("a container","containers")] full of [pick("confiscated contraband","stolen goods")]",5;"a very lost shadekin",10;"some kinda big wooly critter",15;"a buncha lost-looking uh... cat... slug... |things?|",10;"a raging case of [pick("spiders","crabs","geese","gnats","sharks","carp")]") //gotta have a little something to lighten the mood now and then appreciation = pick("Much appreciated","Many thanks","Understood","You're a lifesaver","Perfect, thank you") msg("[callname], this is [combined_first_name]. We have [securitystate] on board and require security assistance. Requesting permission to [landing_short].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted, proceed to [landing_zone]. Follow the green lights on your way in. Security teams are standing by, contact them on channel [secchannel].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[appreciation], [using_map.dock_name] Control. [dockingplan]","[prefix] [shipname]") //Ship event: undocking request if("undockingrequest") @@ -384,20 +408,18 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller var/safetravels = pick("Fly safe out there","Good luck","Safe travels","See you next week","Godspeed","Stars guide you") var/thanks = pick("Appreciated","Thanks","Don't worry about us","We'll be fine","You too","So long") msg("[callname], this is [combined_first_name], requesting permission to [takeoff] from [landing_zone].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) switch(request_type) if("generic") msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted. Docking clamps released. [safetravels].") - sleep(rand(3,6) SECONDS) - msg("[thanks], [using_map.dock_name] Control. This is [combined_first_name] setting course for [destname], out.","[prefix] [shipname]") if("delayed") var/denialreason = pick("Docking clamp malfunction, please hold","Fuel lines have not been secured","Ground crew are still on the pad","Loose containers are on the pad","Exhaust deflectors are not yet in position, please hold","There's heavy traffic right now, it's not safe for your vessel to launch","Another vessel has aerospace priority at this moment","Port officials are still aboard") msg("Negative [combined_first_name], request denied. [denialreason]. Try again in a few minutes.") - sleep(rand(3,6)*60 SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY)*60 SECONDS) msg("[callname], this is [combined_first_name], re-requesting permission to depart from [landing_zone].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Everything appears to be in order now, permission granted. Docking clamps released. [safetravels].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[thanks], [using_map.dock_name] Control. This is [combined_first_name] setting course for [destname], out.","[prefix] [shipname]") //SDF event: starting patrol if("sdfbeginpatrol") @@ -405,16 +427,16 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller var/thanks = pick("Appreciated","Thanks","Don't worry about us","We'll be fine","You too") var/takeoff = pick("depart","launch","take off","dust off") msg("[callname], this is [combined_first_name], requesting permission to [takeoff] from [landing_zone] to begin system patrol.","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control. Permission granted. Docking clamps released. [safetravels].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[thanks], [using_map.dock_name] Control. This is [combined_first_name] beginning system patrol, out.","[prefix] [shipname]") //Ship event: undocking request (denied) if("undockingdenied") var/takeoff = pick("depart","launch") var/denialreason = pick("Security is requesting a full cargo inspection","Your ship has been impounded for multiple [pick("security","safety")] violations","Your ship is currently under quarantine lockdown","We have reason to believe there's an issue with your papers","Security personnel are currently searching for a fugitive and have ordered all outbound ships remain grounded until further notice") msg("[callname], this is [combined_first_name], requesting permission to [takeoff] from [landing_zone].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("Negative [combined_first_name], request denied. [denialreason].") if("slogan") msg("The following is a sponsored message from [name].","Facility PA") @@ -422,19 +444,19 @@ var/datum/lore/atc_controller/atc = new/datum/lore/atc_controller msg("[slogan]","Facility PA") else //time for generic message msg("[callname], this is [combined_first_name] on [mission] [pick(mission_noun)] to [destname], requesting [request].","[prefix] [shipname]") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[combined_first_name], this is [using_map.dock_name] Control, [response].") - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) msg("[using_map.dock_name] Control, [yes ? "thank you" : "understood"], out.","[prefix] [shipname]") return //oops, forgot to restore this /* //OLD BLOCK, for reference //Ship sends request to ATC msg(full_request,"[prefix] [shipname]" - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) //ATC sends response to ship msg(full_response) - sleep(rand(3,6) SECONDS) + sleep(rand(MIN_MSG_DELAY,MAX_MSG_DELAY) SECONDS) //Ship sends response to ATC msg(full_closure,"[prefix] [shipname]") return diff --git a/code/modules/busy_space_vr/organizations.dm b/code/modules/busy_space_vr/organizations.dm index 945bf51a58..56a416a999 100644 --- a/code/modules/busy_space_vr/organizations.dm +++ b/code/modules/busy_space_vr/organizations.dm @@ -2224,7 +2224,7 @@ "Blade" ) while(i) - ship_names.Add("[pick(first_names)] [pick(words)]") + ship_names.Add("[pick(first_names)]'s [pick(words)]") i-- /datum/lore/organization/other/marauders diff --git a/code/modules/casino/casino.dm b/code/modules/casino/casino.dm index d866a4d119..d5516efed1 100644 --- a/code/modules/casino/casino.dm +++ b/code/modules/casino/casino.dm @@ -133,6 +133,7 @@ var/ball_desc = "a small metal ball" icon = 'icons/obj/casino.dmi' icon_state = "roulette_ball" + w_class = ITEMSIZE_TINY var/cheatball = FALSE @@ -564,10 +565,11 @@ return if("Show selected Prize") if(QDELETED(selected_collar)) - collar_list -= selected_collar - sentientprizes_ckeys_list -= selected_collar.sentientprizeckey + if(selected_collar) + collar_list -= selected_collar + sentientprizes_ckeys_list -= selected_collar.sentientprizeckey + selected_collar = null to_chat(user, "No collar is currently selected or the currently selected one has been destroyed or disabled.") - selected_collar = null return to_chat(user, "Sentient Prize information") to_chat(user, "Name: [selected_collar.sentientprizename]") diff --git a/code/modules/casino/casino_prize_vendor.dm b/code/modules/casino/casino_prize_vendor.dm index 6bf70bb763..115e51ed48 100644 --- a/code/modules/casino/casino_prize_vendor.dm +++ b/code/modules/casino/casino_prize_vendor.dm @@ -99,6 +99,7 @@ CASINO_PRIZE("Cowboy costume", /obj/item/weapon/storage/box/casino/costume_cowboy, 1, 500, "clothing"), CASINO_PRIZE("Golden Collar", /obj/item/clothing/accessory/collar/gold, 1, 250, "clothing"), CASINO_PRIZE("Decorative Casino Sentient Prize Collar", /obj/item/clothing/accessory/collar/casinosentientprize_fake, 1, 100, "clothing"), + CASINO_PRIZE("Bluespace Collar", /obj/item/clothing/accessory/collar/shock/bluespace, 1, 1000, "clothing"), ) item_list["Donk Soft"] = list( CASINO_PRIZE("Donk-Soft shotgun", /obj/item/weapon/gun/projectile/shotgun/pump/toy, 1, 1000, "misc"), diff --git a/code/modules/casino/slots.dm b/code/modules/casino/slots.dm index 40c7e5af61..654d872b0e 100644 --- a/code/modules/casino/slots.dm +++ b/code/modules/casino/slots.dm @@ -61,7 +61,7 @@ if(busy) to_chat(user,"The slot machine is currently running. ") return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) if(anchored) user.visible_message("[user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") @@ -291,7 +291,7 @@ if(busy) to_chat(user,"The slot machine is currently running. ") return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) if(anchored) user.visible_message("[user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") diff --git a/code/modules/client/preference_setup/global/01_ui.dm b/code/modules/client/preference_setup/global/01_ui.dm index c700e2ba93..d0f680c075 100644 --- a/code/modules/client/preference_setup/global/01_ui.dm +++ b/code/modules/client/preference_setup/global/01_ui.dm @@ -17,6 +17,8 @@ S["tgui_input_lock"] >> pref.tgui_input_lock S["tgui_large_buttons"] >> pref.tgui_large_buttons S["tgui_swapped_buttons"] >> pref.tgui_swapped_buttons + S["chat_timestamp"] >> pref.chat_timestamp + S["throwmode_loud"] >> pref.throwmode_loud /datum/category_item/player_setup_item/player_global/ui/save_preferences(var/savefile/S) S["UI_style"] << pref.UI_style @@ -33,6 +35,8 @@ S["tgui_input_lock"] << pref.tgui_input_lock S["tgui_large_buttons"] << pref.tgui_large_buttons S["tgui_swapped_buttons"] << pref.tgui_swapped_buttons + S["chat_timestamp"] << pref.chat_timestamp + S["throwmode_loud"] << pref.throwmode_loud /datum/category_item/player_setup_item/player_global/ui/sanitize_preferences() pref.UI_style = sanitize_inlist(pref.UI_style, all_ui_styles, initial(pref.UI_style)) @@ -49,6 +53,8 @@ pref.tgui_input_lock = sanitize_integer(pref.tgui_input_lock, 0, 1, initial(pref.tgui_input_lock)) pref.tgui_large_buttons = sanitize_integer(pref.tgui_large_buttons, 0, 1, initial(pref.tgui_large_buttons)) pref.tgui_swapped_buttons = sanitize_integer(pref.tgui_swapped_buttons, 0, 1, initial(pref.tgui_swapped_buttons)) + pref.chat_timestamp = sanitize_integer(pref.chat_timestamp, 0, 1, initial(pref.chat_timestamp)) + pref.throwmode_loud = sanitize_integer(pref.throwmode_loud, 0, 1, initial(pref.throwmode_loud)) /datum/category_item/player_setup_item/player_global/ui/content(var/mob/user) . = "UI Style: [pref.UI_style]
" @@ -65,6 +71,8 @@ . += "TGUI Input Lock: [(pref.tgui_input_lock) ? "Enabled" : "Disabled (default)"]
" . += "TGUI Large Buttons: [(pref.tgui_large_buttons) ? "Enabled (default)" : "Disabled"]
" . += "TGUI Swapped Buttons: [(pref.tgui_swapped_buttons) ? "Enabled" : "Disabled (default)"]
" + . += "Chat Timestamps: [(pref.chat_timestamp) ? "Enabled" : "Disabled (default)"]
" + . += "Throw Mode Messages: [(pref.throwmode_loud) ? "Loud" : "Quiet (default)"]
" if(can_select_ooc_color(user)) . += "OOC Color:" if(pref.ooccolor == initial(pref.ooccolor)) @@ -150,6 +158,14 @@ pref.tgui_swapped_buttons = !pref.tgui_swapped_buttons return TOPIC_REFRESH + else if(href_list["chat_timestamps"]) + pref.chat_timestamp = !pref.chat_timestamp + return TOPIC_REFRESH + + else if(href_list["throwmode_loudness"]) + pref.throwmode_loud = !pref.throwmode_loud + return TOPIC_REFRESH + else if(href_list["reset"]) switch(href_list["reset"]) if("ui") diff --git a/code/modules/client/preference_setup/global/setting_datums.dm b/code/modules/client/preference_setup/global/setting_datums.dm index f8c0615ef9..21f8037506 100644 --- a/code/modules/client/preference_setup/global/setting_datums.dm +++ b/code/modules/client/preference_setup/global/setting_datums.dm @@ -113,6 +113,13 @@ var/list/_client_preferences_by_type enabled_description = "Visible" disabled_description = "Hidden" enabled_by_default = FALSE + +/datum/client_preference/ghost_see_whisubtle + description = "See subtles/whispers as ghost" + key = "GHOST_SEE_WHISUBTLE" + enabled_description = "Visible" + disabled_description = "Hidden" + enabled_by_default = TRUE //VOREStation Add End /datum/client_preference/weather_sounds description ="Weather sounds" @@ -373,7 +380,7 @@ var/list/_client_preferences_by_type key = "RECEIVE_TIPS" enabled_description = "Enabled" disabled_description = "Disabled" - + /datum/client_preference/pain_frequency description = "Pain Messages Cooldown" key = "PAIN_FREQUENCY" diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 45b8b03579..e2d5714051 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -521,6 +521,12 @@ ckeywhitelist = list("hunterbirk") character_name = list("Aria Blue") +/datum/gear/fluff/elizabeth_conduct_medal + path = /obj/item/clothing/accessory/medal/conduct + display_name = "Elizabeth's Distinguished Conduct Medal" + ckeywhitelist = list("hunterbirk") + character_name = list("Elizabeth Bayou") + /datum/gear/fluff/mercury_vopal_ring path = /obj/item/clothing/gloves/ring/material/void_opal/fluff/mercury display_name = "Mercury's Mate Ring" @@ -1436,15 +1442,9 @@ /datum/gear/fluff/harmony_id path = /obj/item/weapon/card/id/event/polymorphic/itg - display_name = "Harmony's ITG-ID card" + display_name = "ITG-ID card" ckeywhitelist = list("verysoft") - character_name = list("Harmony") - -/datum/gear/fluff/shinerunner_id - path = /obj/item/weapon/card/id/event/polymorphic/itg - display_name = "Shine-Runner's ITG-ID card" - ckeywhitelist = list("verysoft") - character_name = list("Shine-Runner") + character_name = null /datum/gear/fluff/dessa_hat path = /obj/item/clothing/head/fluff/giantbow/dessa @@ -1457,6 +1457,13 @@ ..() gear_tweaks += gear_tweak_free_color_choice +/datum/gear/fluff/casey_glasses + path = /obj/item/clothing/glasses/big_round + display_name = "Big Round Glasses" + slot = slot_glasses + ckeywhitelist = list("verysoft") + character_name = null + // W CKEYS /datum/gear/fluff/sthasha_bracer path = /obj/item/clothing/accessory/bracer/fluff/xander_sthasha diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 55880aa88a..8a58b7e86b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -143,7 +143,7 @@ Talon jumpsuit //Altevian Uniforms /datum/gear/uniform/altevian - description = "An extremely comfortable set of clothing that's made to help people handle their day to day work around the fleets with little to no discomfort." + description = "A comfortable set of clothing for people to handle their day to day work around the fleets with little to no discomfort." display_name = "altevian uniform selection" /datum/gear/uniform/altevian/New() diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm index 489f4e857a..7e302bbf4f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -92,7 +92,7 @@ sort_category = "Xenowear" /datum/gear/uniform/altevian_outfit - description = "A uniform commonly seen from altevians during their work. The material on this uniform seems to be made of durable thread that can handle the stress of most matters of labor." + description = "A uniform commonly seen worn by altevians. The material on this uniform is made of a durable thread that can handle the stress of most forms of labor." display_name = "altevian duty jumpsuit selection (Altevian)" whitelisted = SPECIES_ALTEVIAN sort_category = "Xenowear" @@ -105,7 +105,7 @@ gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pants)) /datum/gear/accessory/altevian_aquila - description = "An emblem commonly seen worn by the altevians for their work operations." + description = "An emblem found across all altevian vessels. The specific metals and jewels denote ranks. Otherwise, it's just a pretty rat skull emblem with a set of crystals for their eyes and fangs." display_name = "royal altevian navy emblem selection" whitelisted = SPECIES_ALTEVIAN sort_category = "Xenowear" diff --git a/code/modules/client/preference_setup/vore/07_traits.dm b/code/modules/client/preference_setup/vore/07_traits.dm index c17e538409..e89d12f2cc 100644 --- a/code/modules/client/preference_setup/vore/07_traits.dm +++ b/code/modules/client/preference_setup/vore/07_traits.dm @@ -5,6 +5,8 @@ #define ORGANICS 1 #define SYNTHETICS 2 +var/global/list/valid_bloodreagents = list("iron","copper","phoron","silver","gold","slimejelly") //allowlist-based so people don't make their blood restored by alcohol or something really silly. use reagent IDs! + /datum/preferences var/custom_species // Custom species name, can't be changed due to it having been used in savefiles already. var/custom_base // What to base the custom species on @@ -115,6 +117,7 @@ S["neu_traits"] >> pref.neu_traits S["neg_traits"] >> pref.neg_traits S["blood_color"] >> pref.blood_color + S["blood_reagents"] >> pref.blood_reagents S["traits_cheating"] >> pref.traits_cheating S["max_traits"] >> pref.max_traits @@ -135,6 +138,7 @@ S["neu_traits"] << pref.neu_traits S["neg_traits"] << pref.neg_traits S["blood_color"] << pref.blood_color + S["blood_reagents"] << pref.blood_reagents S["traits_cheating"] << pref.traits_cheating S["max_traits"] << pref.max_traits @@ -154,6 +158,7 @@ if(!pref.neg_traits) pref.neg_traits = list() pref.blood_color = sanitize_hexcolor(pref.blood_color, default="#A10808") + pref.blood_reagents = sanitize_text(pref.blood_reagents, initial(pref.blood_reagents)) if(!pref.traits_cheating) var/datum/species/S = GLOB.all_species[pref.species] @@ -253,6 +258,7 @@ //Any additional non-trait settings can be applied here new_S.blood_color = pref.blood_color + new_S.blood_reagents = pref.blood_reagents if(pref.species == SPECIES_CUSTOM) //Statistics for this would be nice @@ -305,6 +311,8 @@ . += "Blood Color: " //People that want to use a certain species to have that species traits (xenochimera/promethean/spider) should be able to set their own blood color. . += "Set Color" . += "R
" + . += "Blood Reagent: " //Wanna be copper-based? Go ahead. + . += "[pref.blood_reagents]
" . += "
" . += "Custom Say: " @@ -362,6 +370,12 @@ pref.blood_color = "#A10808" return TOPIC_REFRESH + else if(href_list["blood_reagents"]) + var/new_blood_reagents = tgui_input_list(user, "Choose your character's blood restoration reagent:", "Character Preference", valid_bloodreagents) + if(new_blood_reagents && CanUseTopic(user)) + pref.blood_reagents = new_blood_reagents + return TOPIC_REFRESH + else if(href_list["clicked_pos_trait"]) var/datum/trait/trait = text2path(href_list["clicked_pos_trait"]) var/choice = tgui_alert(usr, "Remove [initial(trait.name)] and regain [initial(trait.cost)] points?","Remove Trait",list("Remove","Cancel")) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 2df1928fef..1801ddf95d 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -32,6 +32,8 @@ var/list/preferences_datums = list() var/tgui_input_lock = FALSE var/tgui_large_buttons = TRUE var/tgui_swapped_buttons = FALSE + var/chat_timestamp = FALSE + var/throwmode_loud = FALSE //character preferences var/real_name //our character's name @@ -44,6 +46,7 @@ var/list/preferences_datums = list() var/bday_announce = FALSE //Public announcement for birthdays var/spawnpoint = "Arrivals Shuttle" //where this character will spawn (0-2). var/b_type = "A+" //blood type (not-chooseable) + var/blood_reagents = "iron" //blood restoration reagents var/backbag = 2 //backpack type var/pdachoice = 1 //PDA type var/h_style = "Bald" //Hair type diff --git a/code/modules/client/preferences_factions.dm b/code/modules/client/preferences_factions.dm index f0f357132f..8eb411d1a2 100644 --- a/code/modules/client/preferences_factions.dm +++ b/code/modules/client/preferences_factions.dm @@ -62,7 +62,10 @@ var/global/list/home_system_choices = list( "Abundance in All Things Serene, Beta-Carnelium Ventrum", "Jorhul, Barkalis", "Shelf Flotilla", - "Ue-Orsi Flotilla" + "Ue-Orsi Flotilla", + "AH-CV Prosperity", + "AH-CV Migrant", + "Altevian Colony Ship" ) var/global/list/faction_choices = list( diff --git a/code/modules/client/preferences_toggle_procs.dm b/code/modules/client/preferences_toggle_procs.dm index 07014c99a3..454a5ec6ac 100644 --- a/code/modules/client/preferences_toggle_procs.dm +++ b/code/modules/client/preferences_toggle_procs.dm @@ -390,6 +390,26 @@ to_chat(src, span_notice("You have toggled TGUI input lock: [prefs.tgui_input_lock ? "ON" : "OFF"] \n \ This setting determines whether pressing enter on TGUI input sends the input, or creates a newline.")) +/client/verb/toggle_chat_timestamps() + set name = "Toggle Chat Timestamps" + set category = "Preferences" + set desc = "Toggles whether or not messages in chat will display timestamps. Enabling this will not add timestamps to messages that have already been sent." + + prefs.chat_timestamp = !prefs.chat_timestamp //There is no preference datum for tgui input lock, nor for any TGUI prefs. + SScharacter_setup.queue_preferences_save(prefs) + + to_chat(src, span_notice("You have toggled chat timestamps: [prefs.chat_timestamp ? "ON" : "OFF"].")) + +/client/verb/toggle_throwmode_messages() + set name = "Toggle Throw Mode Messages" + set category = "Preferences" + set desc = "Toggles whether or not activating throw mode (hotkey: R) will announce you're preparing to throw your current handheld item, or catch an incoming item if your hand is empty." + + prefs.throwmode_loud = !prefs.throwmode_loud //There is no preference datum for tgui input lock, nor for any TGUI prefs. + SScharacter_setup.queue_preferences_save(prefs) + + to_chat(src, span_notice("You have toggled throw mode messages: [prefs.throwmode_loud ? "ON" : "OFF"].")) + /client/verb/toggle_status_indicators() set name = "Toggle Status Indicators" set category = "Preferences" diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm index 5de49fd1c1..99e8103509 100644 --- a/code/modules/client/preferences_vr.dm +++ b/code/modules/client/preferences_vr.dm @@ -88,6 +88,21 @@ feedback_add_details("admin_verb","TWhisubtleVis") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! +/client/verb/toggle_ghost_privacyvision() + set name = "Toggle Ghost Private Eyes/ears" + set category = "Preferences" + set desc = "Toggles your ability to see subtles/whispers. Overrides admin status. Respects Ghost Privacy" + + var/pref_path = /datum/client_preference/ghost_see_whisubtle + + toggle_preference(pref_path) + + to_chat(src, "As a ghost, you will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear subtles/whispers made by players.") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb","TGhostSeeWhisSubtle") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + /client/verb/toggle_capture_crystal() set name = "Toggle Catchable" set category = "Preferences" diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 8d73b7f52b..d72700444f 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -144,9 +144,11 @@ switch(target_species) //VOREStation Edit Start if(SPECIES_HUMAN, SPECIES_SKRELL) //humanoid bodytypes - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_RAPALA, SPECIES_VASILISSAN, SPECIES_ALRAUNE, SPECIES_PROMETHEAN, SPECIES_XENOCHIMERA) + species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_RAPALA, SPECIES_VASILISSAN, SPECIES_ALRAUNE, SPECIES_PROMETHEAN) if(SPECIES_UNATHI) species_restricted = list(SPECIES_UNATHI, SPECIES_XENOHYBRID) + if(SPECIES_TAJARAN) + species_restricted = list(SPECIES_TAJARAN, SPECIES_XENOCHIMERA) if(SPECIES_VULPKANIN) species_restricted = list(SPECIES_VULPKANIN, SPECIES_ZORREN_HIGH, SPECIES_FENNEC) if(SPECIES_SERGAL) @@ -340,7 +342,7 @@ return 0 // return 1 to cancel attack_hand() /*/obj/item/clothing/gloves/attackby(obj/item/weapon/W, mob/user) - if(W.is_wirecutter() || istype(W, /obj/item/weapon/scalpel)) + if(W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/weapon/scalpel)) if (clipped) to_chat(user, "The [src] have already been clipped!") update_icon() diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 2487b7b205..f301199830 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -34,6 +34,7 @@ BLIND // can't see anything SPECIES_TESHARI = 'icons/inventory/eyes/mob_teshari.dmi', SPECIES_VOX = 'icons/inventory/eyes/mob_vox.dmi' ) + var/glasses_layer_above = FALSE /obj/item/clothing/glasses/update_clothing_icon() if (ismob(src.loc)) diff --git a/code/modules/clothing/gloves/boxing.dm b/code/modules/clothing/gloves/boxing.dm index 9316c8f64f..3ed26e4126 100644 --- a/code/modules/clothing/gloves/boxing.dm +++ b/code/modules/clothing/gloves/boxing.dm @@ -6,7 +6,7 @@ /* /obj/item/clothing/gloves/boxing/attackby(obj/item/weapon/W, mob/user) - if(W.is_wirecutter() || istype(W, /obj/item/weapon/surgical/scalpel)) + if(W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/weapon/surgical/scalpel)) to_chat(user, "That won't work.") //Nope return ..() diff --git a/code/modules/clothing/masks/hailer.dm b/code/modules/clothing/masks/hailer.dm index a3a37772b3..4b12f8382e 100644 --- a/code/modules/clothing/masks/hailer.dm +++ b/code/modules/clothing/masks/hailer.dm @@ -102,7 +102,7 @@ return /obj/item/clothing/mask/gas/sechailer/attackby(obj/item/I, mob/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) switch(aggressiveness) if(1) to_chat(user, "You set the aggressiveness restrictor to the second position.") @@ -122,11 +122,11 @@ phrase = 1 if(5) to_chat(user, "You adjust the restrictor but nothing happens, probably because its broken.") - if(I.is_wirecutter()) + if(I.has_tool_quality(TOOL_WIRECUTTER)) if(aggressiveness != 5) to_chat(user, "You broke it!") aggressiveness = 5 - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) if(!hailer) to_chat(user, "This mask has an integrated hailer, you can't remove it!") else diff --git a/code/modules/clothing/spacesuits/breaches.dm b/code/modules/clothing/spacesuits/breaches.dm index 6f23f2b57f..c12caa2e02 100644 --- a/code/modules/clothing/spacesuits/breaches.dm +++ b/code/modules/clothing/spacesuits/breaches.dm @@ -203,7 +203,7 @@ var/global/list/breach_burn_descriptors = list( repair_breaches(BURN, use_amt * repair_power, user) return - else if(istype(W, /obj/item/weapon/weldingtool)) + else if(W.has_tool_quality(TOOL_WELDER)) if(istype(src.loc,/mob/living)) to_chat(user, "How do you intend to patch a hardsuit while someone is wearing it?") @@ -213,7 +213,7 @@ var/global/list/breach_burn_descriptors = list( to_chat(user, "There is no structural damage on \the [src] to repair.") return - var/obj/item/weapon/weldingtool/WT = W + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.remove_fuel(5)) to_chat(user, "You need more welding fuel to repair this suit.") return diff --git a/code/modules/clothing/spacesuits/rig/rig_attackby.dm b/code/modules/clothing/spacesuits/rig/rig_attackby.dm index 9ce406fccf..e6c48734df 100644 --- a/code/modules/clothing/spacesuits/rig/rig_attackby.dm +++ b/code/modules/clothing/spacesuits/rig/rig_attackby.dm @@ -7,7 +7,7 @@ return // Pass repair items on to the chestpiece. - if(chest && (istype(W,/obj/item/stack/material) || istype(W, /obj/item/weapon/weldingtool))) + if(chest && (istype(W,/obj/item/stack/material) || W.has_tool_quality(TOOL_WELDER))) return chest.attackby(W,user) // Lock or unlock the access panel. @@ -30,7 +30,7 @@ to_chat(user, "You [locked ? "lock" : "unlock"] \the [src] access panel.") return - else if(W.is_crowbar()) + else if(W.has_tool_quality(TOOL_CROWBAR)) if(!open && locked) to_chat(user, "The access panel is locked shut.") return @@ -41,7 +41,7 @@ if(open) // Hacking. - if(W.is_wirecutter() || istype(W, /obj/item/device/multitool)) + if(W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/device/multitool)) if(open) wires.Interact(user) else @@ -102,7 +102,7 @@ src.cell = W return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(!air_supply) to_chat(user, "There is no tank to remove.") @@ -116,7 +116,7 @@ air_supply = null return - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) var/list/current_mounts = list() if(cell) current_mounts += "cell" diff --git a/code/modules/clothing/spacesuits/void/ert_vr.dm b/code/modules/clothing/spacesuits/void/ert_vr.dm index 7f253ddfe8..8b147a4dc3 100644 --- a/code/modules/clothing/spacesuits/void/ert_vr.dm +++ b/code/modules/clothing/spacesuits/void/ert_vr.dm @@ -77,7 +77,7 @@ to_chat(user, "You cannot modify \the [src] while it is being worn.") return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(boots || tank || cooler) var/choice = tgui_input_list(usr, "What component would you like to remove?", "Remove Component", list(boots,tank,cooler)) if(!choice) return diff --git a/code/modules/clothing/spacesuits/void/event_vr.dm b/code/modules/clothing/spacesuits/void/event_vr.dm index f543aa48c6..3edd3a83f0 100644 --- a/code/modules/clothing/spacesuits/void/event_vr.dm +++ b/code/modules/clothing/spacesuits/void/event_vr.dm @@ -234,7 +234,7 @@ /obj/item/clothing/suit/space/void/altevian_heartbreaker name = "\improper heartbreaker voidsuit" - desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can function in an area with gravity, it'll put a strain on even the most athletic of individuals." + desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can still be worn in an area with gravity, it'll put a strain on even the most athletic of individuals." icon = 'icons/inventory/suit/item_vr_altevian.dmi' default_worn_icon = 'icons/inventory/suit/mob_vr_altevian.dmi' @@ -248,7 +248,7 @@ /obj/item/clothing/head/helmet/space/void/altevian_heartbreaker name = "\improper heartbreaker helmet" - desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can function in an area with gravity, it'll put a strain on even the most athletic of individuals." + desc = "The altevians' newest iteration of their armored suits. This one is tailored for zero-g environments, and while it can still be worn in an area with gravity, it'll put a strain on even the most athletic of individuals." icon = 'icons/inventory/head/item_vr_altevian.dmi' default_worn_icon = 'icons/inventory/head/mob_vr_altevian.dmi' @@ -286,4 +286,4 @@ armor = list("melee" = 50, "bullet" = 15, "laser" = 15, "energy" = 25, "bomb" = 45, "bio" = 100, "rad" = 80) sprite_sheets = ALL_VR_SPRITE_SHEETS_HEAD_MOB - sprite_sheets_obj = ALL_VR_SPRITE_SHEETS_HEAD_ITEM \ No newline at end of file + sprite_sheets_obj = ALL_VR_SPRITE_SHEETS_HEAD_ITEM diff --git a/code/modules/clothing/spacesuits/void/void.dm b/code/modules/clothing/spacesuits/void/void.dm index 57a713962c..7d421348cc 100644 --- a/code/modules/clothing/spacesuits/void/void.dm +++ b/code/modules/clothing/spacesuits/void/void.dm @@ -241,7 +241,7 @@ to_chat(user, "You cannot modify \the [src] while it is being worn.") return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(helmet || boots || tank) var/choice = tgui_input_list(usr, "What component would you like to remove?", "Remove Component", list(helmet,boots,tank,cooler)) if(!choice) return diff --git a/code/modules/clothing/spacesuits/void/void_vr.dm b/code/modules/clothing/spacesuits/void/void_vr.dm index 2b9fc754a3..9222a4ca9c 100644 --- a/code/modules/clothing/spacesuits/void/void_vr.dm +++ b/code/modules/clothing/spacesuits/void/void_vr.dm @@ -10,7 +10,7 @@ /obj/item/clothing/suit/space/void species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_RAPALA, SPECIES_VASILISSAN, SPECIES_ALRAUNE, SPECIES_PROMETHEAN, SPECIES_XENOCHIMERA) - + /obj/item/clothing/head/helmet/space/void/heck name = "\improper H.E.C.K. helmet" desc = "Hostile Environiment Cross-Kinetic Helmet: A helmet designed to withstand the wide variety of hazards from \[REDACTED\]. It wasn't enough for its last owner." @@ -114,7 +114,7 @@ to_chat(user, "You cannot modify \the [src] while it is being worn.") return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(boots || tank || cooler) var/choice = tgui_input_list(usr, "What component would you like to remove?", "Remove Component", list(boots,tank,cooler)) if(!choice) return @@ -151,4 +151,3 @@ default_worn_icon = 'icons/inventory/head/mob_vr.dmi' sprite_sheets = ALL_VR_SPRITE_SHEETS_HEAD_MOB sprite_sheets_obj = null - \ No newline at end of file diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index 1341af1b69..bc96a3847b 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -21,7 +21,7 @@ /obj/item/clothing/suit/storage/apron/altevian name = "Multi-purpose Crafters' Pride" - desc = "An apron designed by the space faring species that can hold an array of tools and other trinkets. It's made with a high-quality material." + desc = "An apron designed by rodent-like spacers who take pride in their work. It's made with high-quality material." icon_state = "apron_altevian" item_state_slots = list(slot_r_hand_str = null, slot_l_hand_str = null) diff --git a/code/modules/clothing/suits/miscellaneous_vr.dm b/code/modules/clothing/suits/miscellaneous_vr.dm index 1f43db565a..12ecb09089 100644 --- a/code/modules/clothing/suits/miscellaneous_vr.dm +++ b/code/modules/clothing/suits/miscellaneous_vr.dm @@ -151,7 +151,7 @@ // Altevian admiralty stuff /obj/item/clothing/suit/captunic/capjacket/altevian_admiral // Subtype of capjacket because A) it makes sense and B) conviniently matching stats name = "altevian officer's suit" - desc = "Formal attire worn by officers and bridge crew from the Altevian Hegemony. The material is made of high quality silk and provides maximum comfort and breathing room for those that are working double shifts all the time." + desc = "A formal jacket worn by the bridge and command crew from the Altevian Hegemony. The material is of high quality silk, and provides maximum comfort and breathing room." icon_state = "altevian-admiral" species_restricted = list(SPECIES_ALTEVIAN) @@ -174,4 +174,4 @@ /obj/item/clothing/suit/captunic/capjacket/altevian_admiral/yellow name = "yellow altevian officer's suit" - icon_state = "altevian-admiral-yellow" \ No newline at end of file + icon_state = "altevian-admiral-yellow" diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm index 4aaff66354..fec423c436 100644 --- a/code/modules/clothing/under/accessories/accessory_vr.dm +++ b/code/modules/clothing/under/accessories/accessory_vr.dm @@ -357,6 +357,274 @@ name = initial(name) + " ([str])" desc = initial(desc) + " Something has been [erasemethod] on the tag, and it now has \"[str]\" [writemethod] on it." +//Size collar remote + +/obj/item/clothing/accessory/collar/shock/bluespace + name = "Bluespace collar" + desc = "A collar that can manipulate the size of the wearer, and can be modified when unequiped." + icon_state = "collar_size" + item_state = "collar_size" + overlay_state = "collar_size" + var/original_size + var/last_activated + var/target_size = 1 + on = 1 + +/obj/item/clothing/accessory/collar/shock/bluespace/Topic(href, href_list) + if(usr.stat || usr.restrained()) + return + if(((istype(usr, /mob/living/carbon/human) && ((!( ticker ) || (ticker && ticker.mode != "monkey")) && usr.contents.Find(src))) || (usr.contents.Find(master) || (in_range(src, usr) && istype(loc, /turf))))) + usr.set_machine(src) + if(href_list["freq"]) + var/new_frequency = sanitize_frequency(frequency + text2num(href_list["freq"])) + set_frequency(new_frequency) + if(href_list["tag"]) + var/str = copytext(reject_bad_text(tgui_input_text(usr,"Tag text?","Set tag","",MAX_NAME_LEN)),1,MAX_NAME_LEN) + if(!str || !length(str)) + to_chat(usr,"[name]'s tag set to be blank.") + name = initial(name) + desc = initial(desc) + else + to_chat(usr,"You set the [name]'s tag to '[str]'.") + name = initial(name) + " ([str])" + desc = initial(desc) + " The tag says \"[str]\"." + else + if(href_list["code"]) + code += text2num(href_list["code"]) + code = round(code) + code = min(100, code) + code = max(1, code) + else + if(href_list["size"]) + var/size_select = tgui_input_number(usr, "Put the desired size (25-200%), (1-600%) in dormitory areas.", "Set Size", target_size * 100, 200, 25) + if(!size_select) + return //cancelled + target_size = clamp((size_select/100), RESIZE_MINIMUM_DORMS, RESIZE_MAXIMUM_DORMS) + to_chat(usr, "You set the size to [size_select]%") + if(target_size < RESIZE_MINIMUM || target_size > RESIZE_MAXIMUM) + to_chat(usr, "Note: Resizing limited to 25-200% automatically while outside dormatory areas.") //hint that we clamp it in resize + if(!( master )) + if(istype(loc, /mob)) + attack_self(loc) + else + for(var/mob/M in viewers(1, src)) + if(M.client) + attack_self(M) + else + if(istype(master.loc, /mob)) + attack_self(master.loc) + else + for(var/mob/M in viewers(1, master)) + if(M.client) + attack_self(M) + else + usr << browse(null, "window=radio") + return + return + +/obj/item/clothing/accessory/collar/shock/bluespace/attack_self(mob/user as mob, flag1) + if(!istype(user, /mob/living/carbon/human)) + return + user.set_machine(src) + var/dat = {" + Frequency/Code for collar:
+ Frequency: + - + - [format_frequency(frequency)] + + + +
+ + Code: + - + - [code] + + + +
+ + Tag: + Set tag
+ + Size: + Set size
+
"} + user << browse(dat, "window=radio") + onclose(user, "radio") + return + +/obj/item/clothing/accessory/collar/shock/bluespace/receive_signal(datum/signal/signal) + if(!signal || signal.encryption != code) + return + + if(on) + var/mob/M = null + if(ismob(loc)) + M = loc + if(ismob(loc.loc)) + M = loc.loc // This is about as terse as I can make my solution to the whole 'collar won't work when attached as accessory' thing. + var/mob/living/carbon/human/H = M + var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread + if(!H.resizable) + H.visible_message("The space around [H] compresses for a moment but then nothing happens.","The space around you distorts but nothing happens to you.") + return + if(H.size_multiplier != target_size) + if(!(world.time - last_activated > 10 SECONDS)) + to_chat(M, "\The [src] flickers. It seems to be recharging.") + return + last_activated = world.time + original_size = H.size_multiplier + H.resize(target_size, ignore_prefs = FALSE) //In case someone else tries to put it on you. + H.visible_message("The space around [H] distorts as they change size!","The space around you distorts as you change size!") + log_admin("Admin [key_name(M)]'s size was altered by a bluespace collar.") + s.set_up(3, 1, M) + s.start() + else if(H.size_multiplier == target_size) + if(original_size == null) + H.visible_message("The space around [H] twists and turns for a moment but then nothing happens.","The space around you distorts but stay the same size.") + return + last_activated = world.time + H.resize(original_size, ignore_prefs = FALSE) + original_size = null + H.visible_message("The space around [H] distorts as they return to their original size!","The space around you distorts as you return to your original size!") + log_admin("Admin [key_name(M)]'s size was altered by a bluespace collar.") + to_chat(M, "\The [src] flickers. It is now recharging and will be ready again in ten seconds.") + s.set_up(3, 1, M) + s.start() + return + +/obj/item/clothing/accessory/collar/shock/bluespace/relaymove(var/mob/living/user,var/direction) + return //For some reason equipping this item was triggering this proc, putting the wearer inside of the collars belly for some reason. + +/obj/item/clothing/accessory/collar/shock/bluespace/attackby(var/obj/item/device/assembly/signaler/component, mob/user as mob) + if (!istype(component,/obj/item/device/assembly/signaler)) + ..() + return + to_chat(user, "You wire the signaler into the [src].") + user.drop_item() + qdel(component) + var/turf/T = get_turf(src) + new /obj/item/clothing/accessory/collar/shock/bluespace/modified(T) + user.drop_from_inventory(src) + qdel(src) + return + +// modified bluespace collar where the size is controlled by the signaller. + +/obj/item/clothing/accessory/collar/shock/bluespace/modified + name = "Bluespace collar" + desc = "A collar that can manipulate the size of the wearer, and can be modified when unequiped. It has a little reciever attached." + icon_state = "collar_size_mod" + item_state = "collar_size" + overlay_state = "collar_size" + target_size = 1 + on = 1 + +/obj/item/clothing/accessory/collar/shock/bluespace/modified/attackby(var/obj/item/device/assembly/signaler/component, mob/user as mob) + if (!istype(component,/obj/item/device/assembly/signaler)) + ..() + return + to_chat(user, "There is already a signaler wired to the [src].") + return + +/obj/item/clothing/accessory/collar/shock/bluespace/modified/attack_self(mob/user as mob, flag1) + if(!istype(user, /mob/living/carbon/human)) + return + user.set_machine(src) //Doesn't need code or size options as the code now just defines the size. + var/dat = {" + Frequency/Code for collar:
+ Frequency: + - + - [format_frequency(frequency)] + + + +
+ + Tag: + Set tag
+ + The size control of the collar is determined by two times the value of the code it recieves, to a minimum of 26 (code 13). +
"} + user << browse(dat, "window=radio") + onclose(user, "radio") + return + +/obj/item/clothing/accessory/collar/shock/bluespace/modified/Topic(href, href_list) + if(usr.stat || usr.restrained()) + return + if(((istype(usr, /mob/living/carbon/human) && ((!( ticker ) || (ticker && ticker.mode != "monkey")) && usr.contents.Find(src))) || (usr.contents.Find(master) || (in_range(src, usr) && istype(loc, /turf))))) + usr.set_machine(src) + if(href_list["freq"]) + var/new_frequency = sanitize_frequency(frequency + text2num(href_list["freq"])) + set_frequency(new_frequency) + if(href_list["tag"]) + var/str = copytext(reject_bad_text(tgui_input_text(usr,"Tag text?","Set tag","",MAX_NAME_LEN)),1,MAX_NAME_LEN) + if(!str || !length(str)) + to_chat(usr,"[name]'s tag set to be blank.") + name = initial(name) + desc = initial(desc) + else + to_chat(usr,"You set the [name]'s tag to '[str]'.") + name = initial(name) + " ([str])" + desc = initial(desc) + " The tag says \"[str]\"." + if(!( master )) + if(istype(loc, /mob)) + attack_self(loc) + else + for(var/mob/M in viewers(1, src)) + if(M.client) + attack_self(M) + else + if(istype(master.loc, /mob)) + attack_self(master.loc) + else + for(var/mob/M in viewers(1, master)) + if(M.client) + attack_self(M) + else + usr << browse(null, "window=radio") + return + return + +/obj/item/clothing/accessory/collar/shock/bluespace/modified/receive_signal(datum/signal/signal) + if(!signal) + return + target_size = (signal.encryption * 2)/100 + if(on) + var/mob/M = null + if(ismob(loc)) + M = loc + if(ismob(loc.loc)) + M = loc.loc // This is about as terse as I can make my solution to the whole 'collar won't work when attached as accessory' thing. + var/mob/living/carbon/human/H = M + var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread + if(!H.resizable) + H.visible_message("The space around [H] compresses for a moment but then nothing happens.","The space around you distorts but nothing happens to you.") + return + if (target_size < 0.26) + H.visible_message("The collar on [H] flickers, but fizzles out.","Your collar flickers, but is not powerful enough to shrink you that small.") + return + if(H.size_multiplier != target_size) + if(!(world.time - last_activated > 10 SECONDS)) + to_chat(M, "\The [src] flickers. It seems to be recharging.") + return + last_activated = world.time + original_size = H.size_multiplier + H.resize(target_size, ignore_prefs = FALSE) //In case someone else tries to put it on you. + H.visible_message("The space around [H] distorts as they change size!","The space around you distorts as you change size!") + log_admin("Admin [key_name(M)]'s size was altered by a bluespace collar.") + s.set_up(3, 1, M) + s.start() + else if(H.size_multiplier == target_size) + if(original_size == null) + H.visible_message("The space around [H] twists and turns for a moment but then nothing happens.","The space around you distorts but stay the same size.") + return + last_activated = world.time + H.resize(original_size, ignore_prefs = FALSE) + original_size = null + H.visible_message("The space around [H] distorts as they return to their original size!","The space around you distorts as you return to your original size!") + log_admin("Admin [key_name(M)]'s size was altered by a bluespace collar.") + to_chat(M, "\The [src] flickers. It is now recharging and will be ready again in ten seconds.") + s.set_up(3, 1, M) + s.start() + return + //Machete Holsters /obj/item/clothing/accessory/holster/machete name = "machete sheath" diff --git a/code/modules/clothing/under/accessories/altevian_vr.dm b/code/modules/clothing/under/accessories/altevian_vr.dm index b75757b94a..3a7ca8c785 100644 --- a/code/modules/clothing/under/accessories/altevian_vr.dm +++ b/code/modules/clothing/under/accessories/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/clothing/accessory/jacket/altevian name = "Altevian Hegemony Civilian Jacket" - desc = "A form fitting jacket that looks more for fashion than for work with it leaving ones mid-riff exposed to the outside elements, but when looking so good it isn't really ones worry by that point! " + desc = "A form fitting half-jacket that leaves ones body exposed to the elements. This attire is great for those summer days, or if you're someone that runs a high internal temperature." icon = 'icons/inventory/accessory/item_vr.dmi' icon_override = 'icons/inventory/accessory/mob_vr.dmi' icon_state = "altevian-jacket-civ" @@ -46,7 +46,7 @@ /obj/item/clothing/accessory/scarf/altevian name = "Blue Comfortable Scarf" - desc = "A scarf made of synthetic material that would be common among a people who don't really have the leisure of organic crops for luxury goods. They seemed to of refined this process though and one wouldn't be able to tell the difference between it and ones made normally." + desc = "A soft silk like scarf made of synthetic material. It's soft to the touch." icon = 'icons/inventory/accessory/item_vr.dmi' icon_override = 'icons/inventory/accessory/mob_vr.dmi' icon_state = "altevian-scarf-blue" @@ -81,13 +81,13 @@ /obj/item/clothing/accessory/altevian_badge name = "Altevian Civilian Badge" - desc = "An emblem commonly seen worn by the altevians off-work or by visitors of their ships." + desc = "An emblem that's normally worn by non-altevian workers on their fleet ships." icon_state = "altevian_badge" slot = ACCESSORY_SLOT_MEDAL /obj/item/clothing/accessory/altevian_badge/aquila name = "Royal Altevian Navy Emblem" - desc = "An emblem commonly seen worn by the altevians for their work operations." + desc = "An emblem found across all altevian vessels. The specific metals and jewels denote ranks. Otherwise, it's just a pretty rat skull emblem with a set of crystals for their eyes and fangs." icon_state = "altevian_aquila" /obj/item/clothing/accessory/altevian_badge/aquila/silver @@ -106,4 +106,4 @@ icon_state = "altevian_aquila_phoron" /obj/item/clothing/accessory/altevian_badge/aquila/hydrogen - icon_state = "altevian_aquila_hydrogen" \ No newline at end of file + icon_state = "altevian_aquila_hydrogen" diff --git a/code/modules/clothing/under/altevian_vr.dm b/code/modules/clothing/under/altevian_vr.dm index d7720272f3..4ee26740e2 100644 --- a/code/modules/clothing/under/altevian_vr.dm +++ b/code/modules/clothing/under/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/clothing/under/pants/altevian name = "Altevian Hegemony Civilian Pants" - desc = "An extremely comfortable set of clothing that's made to help people handle their day to day work around the fleets with little to no discomfort." + desc = "A comfortable set of clothing for people to handle their day to day work around the fleets with little to no discomfort." icon = 'icons/inventory/uniform/item_vr.dmi' icon_override = 'icons/inventory/uniform/mob_vr.dmi' icon_state = "altevian-pants-civ" @@ -52,7 +52,7 @@ /obj/item/clothing/under/altevian name = "Altevian Duty Jumpsuit" - desc = "A uniform commonly seen from altevians during their work. The material on this uniform seems to be made of durable thread that can handle the stress of most matters of labor." + desc = "A uniform commonly seen worn by altevians. The material on this uniform is made of a durable thread that can handle the stress of most forms of labor." icon = 'icons/inventory/uniform/item_vr.dmi' icon_override = 'icons/inventory/uniform/mob_vr.dmi' icon_state = "altevian-specialist" @@ -82,4 +82,4 @@ name = "Altevian Engineering Duty Jumpsuit" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) icon_state = "altevian-specialist-eng" - worn_state = "altevian-specialist-eng" \ No newline at end of file + worn_state = "altevian-specialist-eng" diff --git a/code/modules/economy/cash_register.dm b/code/modules/economy/cash_register.dm index ae649a8f4d..8c799597ea 100644 --- a/code/modules/economy/cash_register.dm +++ b/code/modules/economy/cash_register.dm @@ -190,7 +190,7 @@ scan_cash(SC) else if(istype(O, /obj/item/weapon/card/emag)) return ..() - else if(O.is_wrench()) + else if(O.has_tool_quality(TOOL_WRENCH)) var/obj/item/weapon/tool/wrench/W = O toggle_anchors(W, user) // Not paying: Look up price and add it to transaction_amount diff --git a/code/modules/economy/coins.dm b/code/modules/economy/coins.dm index 51438cc101..87056deecd 100644 --- a/code/modules/economy/coins.dm +++ b/code/modules/economy/coins.dm @@ -81,7 +81,7 @@ else to_chat(user, "This cable coil appears to be empty.") return - else if(W.is_wirecutter()) + else if(W.has_tool_quality(TOOL_WIRECUTTER)) if(!string_attached) ..() return diff --git a/code/modules/economy/trader.dm b/code/modules/economy/trader.dm index 0491c17eea..d0acd04bae 100644 --- a/code/modules/economy/trader.dm +++ b/code/modules/economy/trader.dm @@ -326,6 +326,7 @@ /obj/item/device/chameleon = 25, /obj/item/weapon/gun/energy/sizegun = 25, /obj/item/device/slow_sizegun = 25, + /obj/item/clothing/accessory/collar/shock/bluespace = 25, /obj/item/weapon/implant/sizecontrol = 25, /obj/item/clothing/under/hyperfiber/bluespace = 25, /obj/item/device/nif/authentic = 1, @@ -352,6 +353,7 @@ /obj/item/device/chameleon = 20, /obj/item/weapon/gun/energy/sizegun = 10, /obj/item/device/slow_sizegun = 10, + /obj/item/clothing/accessory/collar/shock/bluespace = 10, /obj/item/weapon/implant/sizecontrol = 10, /obj/item/clothing/under/hyperfiber/bluespace = 10, /obj/item/device/nif/authentic = 100, @@ -376,6 +378,7 @@ /obj/item/capture_crystal/random = 2, /obj/item/weapon/gun/energy/sizegun = 2, /obj/item/device/slow_sizegun = 2, + /obj/item/clothing/accessory/collar/shock/bluespace = 2, /obj/item/weapon/implant/sizecontrol = 2, /obj/item/clothing/under/hyperfiber/bluespace = 2, /obj/item/weapon/reagent_containers/food/snacks/jellyfishcore = 10 diff --git a/code/modules/economy/vending.dm b/code/modules/economy/vending.dm index e17d5c951f..be0303a41f 100644 --- a/code/modules/economy/vending.dm +++ b/code/modules/economy/vending.dm @@ -216,7 +216,7 @@ GLOBAL_LIST_EMPTY(vending_products) else to_chat(user, "You cannot refill [src] with [RC].") return - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) panel_open = !panel_open to_chat(user, "You [panel_open ? "open" : "close"] the maintenance panel.") playsound(src, W.usesound, 50, 1) @@ -228,7 +228,7 @@ GLOBAL_LIST_EMPTY(vending_products) SStgui.update_uis(src) // Speaker switch is on the main UI, not wires UI return - else if(istype(W, /obj/item/device/multitool) || W.is_wirecutter()) + else if(istype(W, /obj/item/device/multitool) || W.has_tool_quality(TOOL_WIRECUTTER)) if(panel_open) attack_hand(user) return @@ -240,7 +240,7 @@ GLOBAL_LIST_EMPTY(vending_products) to_chat(user, "You insert \the [W] into \the [src].") SStgui.update_uis(src) return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) if(anchored) user.visible_message("[user] begins unsecuring \the [src] from the floor.", "You start unsecuring \the [src] from the floor.") diff --git a/code/modules/economy/vending_machines.dm b/code/modules/economy/vending_machines.dm index 559cdd06ab..7cd4565226 100644 --- a/code/modules/economy/vending_machines.dm +++ b/code/modules/economy/vending_machines.dm @@ -994,6 +994,7 @@ /obj/item/weapon/reagent_containers/food/snacks/oort = 8, /obj/item/weapon/reagent_containers/food/snacks/sun_snax = 8, /obj/item/weapon/reagent_containers/food/snacks/canned/appleberry = 6, + /obj/item/weapon/storage/box/jaffacake = 8, /obj/item/weapon/storage/box/gum = 8, /obj/item/weapon/storage/box/admints = 8 ) @@ -1007,6 +1008,7 @@ /obj/item/weapon/reagent_containers/food/snacks/oort = 5, /obj/item/weapon/reagent_containers/food/snacks/sun_snax = 5, /obj/item/weapon/reagent_containers/food/snacks/canned/appleberry = 8, + /obj/item/weapon/storage/box/jaffacake = 5, /obj/item/weapon/storage/box/gum = 2, /obj/item/weapon/storage/box/admints = 2 ) diff --git a/code/modules/eventkit/gm_interfaces/mob_spawner.dm b/code/modules/eventkit/gm_interfaces/mob_spawner.dm index e5b9b4180c..3154e2ec4e 100644 --- a/code/modules/eventkit/gm_interfaces/mob_spawner.dm +++ b/code/modules/eventkit/gm_interfaces/mob_spawner.dm @@ -59,10 +59,20 @@ data["default_flavor_text"] = M.flavor_text if(new_path && istype(M, /mob/living)) var/mob/living/L = M + + // AI Stuff ai_type = (L.ai_holder_type ? L.ai_holder_type : /datum/ai_holder/simple_mob/inert) faction = (L.faction ? L.faction : "neutral") intent = (L.a_intent ? L.a_intent : I_HELP) new_path = FALSE + + data["max_health"] = L.maxHealth + data["health"] = L.health + if(istype(L, /mob/living/simple_mob)) + var/mob/living/simple_mob/S = L + data["melee_damage_lower"] = S.melee_damage_lower ? S.melee_damage_lower : 0 + data["melee_damage_upper"] = S.melee_damage_upper ? S.melee_damage_upper : 0 + qdel(S) qdel(L) qdel(M) data["ai_type"] = ai_type @@ -133,9 +143,19 @@ M.name = sanitize(name) M.desc = sanitize(params["desc"]) M.flavor_text = sanitize(params["flavor_text"]) - if(use_custom_ai) - if(istype(M, /mob/living)) - var/mob/living/L = M + if(istype(M, /mob/living)) + var/mob/living/L = M + if(isnum(params["max_health"])) + L.maxHealth = params["max_health"] + if(isnum(params["health"])) + L.health = params["health"] + if(istype(M, /mob/living/simple_mob)) + var/mob/living/simple_mob/S = L + if(isnum(params["melee_damage_lower"])) + S.melee_damage_lower = params["melee_damage_lower"] + if(isnum(params["melee_damage_upper"])) + S.melee_damage_upper = params["melee_damage_upper"] + if(use_custom_ai) L.ai_holder_type = ai_type L.faction = faction L.a_intent = intent diff --git a/code/modules/examine/descriptions/armor.dm b/code/modules/examine/descriptions/armor.dm index 9d987b635b..2ea8c4e4a0 100644 --- a/code/modules/examine/descriptions/armor.dm +++ b/code/modules/examine/descriptions/armor.dm @@ -20,6 +20,28 @@ if(100) return "You would be immune to [descriptive_attack_type] if you wore this." +/obj/item/clothing/proc/describe_slowdown() + switch(slowdown) + if(-INFINITY to -0.1) + return "It looks like it might actually make you faster!" + if(0 || null) + return "It doesn't look like it'll impede your mobility." + if(0.5) + return "It might slow you down a little bit." + if(1) + return "It'll slow you down noticeably, but not too much." + if(1.5) + return "You'll be moving a fair bit slower than everyone else." + if(2) + return "Your speed will be noticeably impaired by its weight and inflexibility." + if(3) + return "You'd have a pretty hard time moving in it." + if(4) + return "It looks heavy enough to seriously impede your mobility." + if(5) + return "It's heavy enough that moving in it will be extremely difficult!" + else + return "It's difficult to tell how much it'll influence your speed." /obj/item/clothing/get_description_info() @@ -43,25 +65,33 @@ armor_stats += "\n" + armor_stats += "[describe_slowdown()] \n" + if(flags & AIRTIGHT) armor_stats += "It is airtight. \n" - if(min_pressure_protection == 0) + if(min_pressure_protection == 0 && max_pressure_protection >= WARNING_HIGH_PRESSURE) //0 to 325 + armor_stats += "Wearing this will protect you from the vacuum of space and from high pressures. \n" + else if(min_pressure_protection <= WARNING_LOW_PRESSURE && max_pressure_protection >= WARNING_HIGH_PRESSURE) //50 to 325 + armor_stats += "Wearing this will protect you from both low and high pressures, but not the vacuum of space. \n" + else if(min_pressure_protection == 0) armor_stats += "Wearing this will protect you from the vacuum of space. \n" - else if(min_pressure_protection != null) + else if(min_pressure_protection <= WARNING_LOW_PRESSURE) //50 or below armor_stats += "Wearing this will protect you from low pressures, but not the vacuum of space. \n" - - if(max_pressure_protection != null) + else if(max_pressure_protection >= WARNING_HIGH_PRESSURE) //325 or higher armor_stats += "Wearing this will protect you from high pressures. \n" - if(flags & THICKMATERIAL) + if(flags & THICKMATERIAL) //stops syringes armor_stats += "The material is exceptionally thick. \n" - if(max_heat_protection_temperature == FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE) - armor_stats += "It provides very good protection against fire and heat. \n" - - if(min_cold_protection_temperature == SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE) - armor_stats += "It provides very good protection against very cold temperatures. \n" + if(max_heat_protection_temperature >= FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE && min_cold_protection_temperature <= SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE) //30000 or higher and as low as 2 + armor_stats += "It provides exceptional protection from extremely high and low temperatures alike. \n" + else if(max_heat_protection_temperature >= SPACE_SUIT_MAX_HEAT_PROTECTION_TEMPERATURE && min_cold_protection_temperature <= SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE) //5000 or above, but less than 30000 + armor_stats += "It provides very good protection against hazardous temperatures at both extremes, but may not be sufficient for very high-intensity situations. \n" + else if(max_heat_protection_temperature >= FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE) //30000 or above + armor_stats += "It provides exceptional protection from extremely high temperatures. \n" + else if(min_cold_protection_temperature <= SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE) //2 or less + armor_stats += "It provides exceptional protection against very low temperatures. \n" var/list/covers = list() var/list/slots = list() diff --git a/code/modules/fishing/fishing_rod.dm b/code/modules/fishing/fishing_rod.dm index 8f5bffa804..b29eb65bc1 100644 --- a/code/modules/fishing/fishing_rod.dm +++ b/code/modules/fishing/fishing_rod.dm @@ -51,7 +51,7 @@ update_icon() /obj/item/weapon/material/fishing_rod/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_wirecutter() && strung) + if(I.has_tool_quality(TOOL_WIRECUTTER) && strung) strung = FALSE to_chat(user, "You cut \the [src]'s string!") update_icon() diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm index c63049ebde..4cab6810e6 100644 --- a/code/modules/food/food/snacks.dm +++ b/code/modules/food/food/snacks.dm @@ -1867,6 +1867,7 @@ H.set_species(monkey_type) H.real_name = H.species.get_random_name() H.name = H.real_name + H.low_sorting_priority = TRUE if(ismob(loc)) var/mob/M = loc M.unEquip(src) @@ -2475,13 +2476,12 @@ trash = /obj/item/trash/snack_bowl filling_color = "#AFC4B5" center_of_mass = list("x"=16, "y"=8) - nutriment_amt = 8 nutriment_desc = list("carrot" = 2, "corn" = 2, "eggplant" = 2, "potato" = 2) bitesize = 5 /obj/item/weapon/reagent_containers/food/snacks/vegetablesoup/Initialize() . = ..() - reagents.add_reagent("water", 5) + reagents.add_reagent("vegetable_soup", 10) /obj/item/weapon/reagent_containers/food/snacks/nettlesoup name = "Nettle soup" @@ -2572,13 +2572,11 @@ trash = /obj/item/trash/snack_bowl filling_color = "#D92929" center_of_mass = list("x"=16, "y"=7) - nutriment_amt = 5 - nutriment_desc = list("soup" = 5) bitesize = 3 /obj/item/weapon/reagent_containers/food/snacks/tomatosoup/Initialize() . = ..() - reagents.add_reagent("tomatojuice", 10) + reagents.add_reagent("tomato_soup", 10) /obj/item/weapon/reagent_containers/food/snacks/mushroomsoup name = "chantrelle soup" @@ -2587,10 +2585,12 @@ trash = /obj/item/trash/snack_bowl filling_color = "#E386BF" center_of_mass = list("x"=17, "y"=10) - nutriment_amt = 8 - nutriment_desc = list("mushroom" = 8, "milk" = 2) bitesize = 3 +/obj/item/weapon/reagent_containers/food/snacks/mushroomsoup/Initialize() + . = ..() + reagents.add_reagent("mushroom_soup", 10) + /obj/item/weapon/reagent_containers/food/snacks/beetsoup name = "beet soup" desc = "Wait, how do you spell it again..?" @@ -2598,13 +2598,12 @@ trash = /obj/item/trash/snack_bowl filling_color = "#FAC9FF" center_of_mass = list("x"=15, "y"=8) - nutriment_amt = 8 - nutriment_desc = list("tomato" = 4, "beet" = 4) - bitesize = 2 + bitesize = 3 /obj/item/weapon/reagent_containers/food/snacks/beetsoup/Initialize() . = ..() name = pick(list("borsch","bortsch","borstch","borsh","borshch","borscht")) + reagents.add_reagent("beet_soup", 10) /obj/item/weapon/reagent_containers/food/snacks/soup/onion name = "onion soup" @@ -2613,26 +2612,23 @@ trash = /obj/item/trash/snack_bowl filling_color = "#E0C367" center_of_mass = list("x"=16, "y"=7) - nutriment_amt = 5 - nutriment_desc = list("onion" = 2, "soup" = 2) bitesize = 3 +/obj/item/weapon/reagent_containers/food/snacks/soup/onion/Initialize() + . = ..() + reagents.add_reagent("onion_soup", 10) + /obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup name = "chicken noodle soup" gender = PLURAL desc = "A bright bowl of yellow broth with cuts of meat, noodles and carrots." icon_state = "chickennoodlesoup" filling_color = "#ead90c" - nutriment_amt = 6 - nutriment_desc = list("warm soup" = 6) - center_of_mass = list("x"=16, "y"=5) - bitesize = 6 + bitesize = 5 /obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup/Initialize() . = ..() - reagents.add_reagent("protein", 4) - reagents.add_reagent("water", 5) - + reagents.add_reagent("chicken_noodle_soup", 10) /obj/item/weapon/reagent_containers/food/snacks/stew name = "Stew" @@ -6959,7 +6955,7 @@ /obj/item/weapon/reagent_containers/food/snacks/canned/tomato/Initialize() .=..() - reagents.add_reagent("tomatojuice", 12) + reagents.add_reagent("tomato_soup", 12) /obj/item/weapon/reagent_containers/food/snacks/canned/spinach name = "spinach" diff --git a/code/modules/food/food/snacks_vr.dm b/code/modules/food/food/snacks_vr.dm index 7be201b6d0..f9125284fa 100644 --- a/code/modules/food/food/snacks_vr.dm +++ b/code/modules/food/food/snacks_vr.dm @@ -132,7 +132,7 @@ /obj/item/weapon/reagent_containers/food/snacks/hotandsoursoup/Initialize() . = ..() bitesize = 2 - + reagents.add_reagent("hot_n_sour_soup", 10) /obj/item/weapon/reagent_containers/food/snacks/kitsuneudon name = "kitsune udon" @@ -595,12 +595,11 @@ trash = /obj/item/trash/snack_bowl filling_color = "#E0C367" center_of_mass = list("x"=16, "y"=7) - nutriment_amt = 5 - nutriment_desc = list("onion" = 2, "soup" = 2) + bitesize = 3 /obj/item/weapon/reagent_containers/food/snacks/onionsoup/Initialize() . = ..() - bitesize = 3 + reagents.add_reagent("onion_soup", 10) //Fennec foods /obj/item/weapon/storage/box/wings/bucket @@ -829,7 +828,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratfruitcake name = "Premade Fruit Block" - desc = "A block of processed material that is infused with a mix of fruits and matter of such." + desc = "A block of processed material that is infused with a mix of fruits and other nutrients." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_fruitcake" package_open_state = "altevian_fruitcake-open" @@ -840,7 +839,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackburger name = "Altevian Prepackaged Meal - Burger" - desc = "A unique twist on what most know as MREs. This seems to be made with using bluespace tech and other methods of preserving an items freshness that it's like someone just ordered this from a restaurant just minutes ago. This one seems to be of burger and fries!" + desc = "A unique twist on what most know as MREs. This seems to be made with using a specialized compression technology that possibly utilizes Bluespace alongside it. Whatever it is, it seems to keep the freshness of whatever is inside to restaurant quality. This one is a combo of a burger and fries!" icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_burger" package_open_state = "altevian_pack_burger-open" @@ -852,7 +851,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackcheese name = "Generations Novelty Packaged Wedge" - desc = "Using the popular method of packaging that altevians use, they seemed to also use it for other methods. This one appears to have no real markings on it, save for its different coloring, and an image of the altevian emblem." + desc = "A unique twist on what most know as MREs. This seems to be made with using a specialized compression technology that possibly utilizes Bluespace alongside it. Whatever it is, it seems to keep the freshness of whatever is inside to restaurant quality. This one appears to have no real markings on it, save for its different coloring, and an image of the altevian emblem." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_cheese" package_open_state = "altevian_pack_cheese-open" @@ -864,7 +863,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackturkey name = "Compact Holiday Special Bird" - desc = "A great gift for holidays for assorted species. This contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging." + desc = "A great gift for that special celebration or holiday for assorted species. This package contains a full freshly cooked turkey. Open and enjoy. Courtesy of altevian packaging." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_turkey" package_open_state = "altevian_pack_turkey-open" @@ -876,7 +875,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpackramen name = "Big Noodle Package" - desc = "A pack containing fully cooked ramen meal, alongside some seafood-and-rice based sides. Utensils included. For those who prefer more traditional meals." + desc = "A compression sealed package containing a fully cooked ramen meal. It comes with some seafood-and-rice based sides. Utensils included." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_ramen" package_open_state = "altevian_pack_ramen_standard-open" @@ -904,7 +903,7 @@ /obj/item/weapon/reagent_containers/food/snacks/ratpacktaco name = "Triple Taco Tuck" - desc = "Three mini-tacos, minituarized further via altevian mad science into a convenient container. It comes with a salsa sauce!" + desc = "A compression sealed package containing three mini-tacos, miniaturized further via altevian mad science into a convenient container." icon = 'icons/obj/food_vr.dmi' icon_state = "altevian_pack_taco" package_open_state = "altevian_pack_taco-open" @@ -913,3 +912,216 @@ trash = /obj/item/trash/ratpacktaco nutriment_amt = 2 nutriment_desc = list("salsa sauce" = 2, "meat chunks" = 4, "cheese" = 3) + + +//desatti snacks + +/obj/item/weapon/reagent_containers/food/snacks/jaffacake + name = "Jaffa Cake" + desc = "A delicious miniature cake with a soft sponge base, topped with orange jelly and covered with a thin layer of chocolate." + icon = 'icons/obj/food_vr.dmi' + icon_state = "jaffacake" + nutriment_amt = 1 + bitesize = 2 + nutriment_desc = list("chocolate" = 2, "orange" = 4, "cake" = 3) + +/obj/item/weapon/storage/box/jaffacake //This is kinda like the donut box. + name = "Desatti Jaffa Cakes" + desc = "A box full of desatti brand jaffa cakes, with twelve in a pack!" + icon = 'icons/obj/food_vr.dmi' + icon_state = "jaffacake_pack" + var/icon_base = "jaffacake_pack" + var/startswith = 12 + max_storage_space = ITEMSIZE_COST_SMALL * 12 + can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/jaffacake) + starts_with = list( + /obj/item/weapon/reagent_containers/food/snacks/jaffacake = 12 + ) + foldable = null + +/obj/item/weapon/reagent_containers/food/snacks/winegum + name = "wine gum" + desc = "A small firm and chewy sweet filled with artificial flavour." + icon = 'icons/obj/food_snacks.dmi' + icon_state = "winegum_red" + w_class = ITEMSIZE_TINY + nutriment_amt = 1 + bitesize = 2 + nutriment_desc = list("sugar" = 5, "berry" = 2) + + +/obj/item/weapon/reagent_containers/food/snacks/winegum/orange + icon_state = "winegum_orange" + nutriment_desc = list("sugar" = 5, "orange" = 2) + +/obj/item/weapon/reagent_containers/food/snacks/winegum/black + icon_state = "winegum_black" + nutriment_desc = list("sugar" = 5, "berry" = 2) + +/obj/item/weapon/reagent_containers/food/snacks/winegum/green + icon_state = "winegum_green" + nutriment_desc = list("sugar" = 5, "lime" = 2) + +/obj/item/weapon/reagent_containers/food/snacks/winegum/yellow + icon_state = "winegum_yellow" + nutriment_desc = list("sugar" = 5, "lemon" = 2) + +/obj/item/weapon/reagent_containers/food/snacks/winegum/white + icon_state = "winegum_white" + nutriment_desc = list("sugar" = 5, "pineapplejuice" = 2) + +/obj/item/weapon/storage/box/winegum //This is kinda like the donut box. + name = "Desatti Wine Gums" + desc = "A pack of wine gums, randomly assorted shapes and fruity flavours!" + icon = 'icons/obj/food_snacks.dmi' + icon_state = "winegum_pack" + var/icon_base = "winegum_pack" + var/startswith = 20 + max_storage_space = ITEMSIZE_COST_TINY * 20 + can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/winegum) + starts_with = list( + /obj/item/weapon/reagent_containers/food/snacks/winegum = 3, + /obj/item/weapon/reagent_containers/food/snacks/winegum/orange = 4, + /obj/item/weapon/reagent_containers/food/snacks/winegum/black = 3, + /obj/item/weapon/reagent_containers/food/snacks/winegum/green = 3, + /obj/item/weapon/reagent_containers/food/snacks/winegum/yellow = 3, + /obj/item/weapon/reagent_containers/food/snacks/winegum/white = 4 + ) + foldable = null + +/obj/item/weapon/reagent_containers/food/snacks/packaged/pasty + name = "Terran Pasty" + icon_state = "pasty" + desc = "A pre-packaged terran pasty with Desatti Catering branding. Claims to contain lamb, potato and onion in a pastry casing!" + package_trash = /obj/item/trash/pasty + package_open_state = "pasty_open" + nutriment_amt = 4 + nutriment_desc = list("pastry" = 5, "meat" = 5, "onion" = 2, "potato" = 3) + +/obj/item/weapon/reagent_containers/food/snacks/saucer + name = "Sherbert Saucer" + desc = "A small saucer shaped piece of rice paper filled with sugar." + icon = 'icons/obj/food_snacks.dmi' + icon_state = "saucer_pink" + w_class = ITEMSIZE_TINY + nutriment_amt = 1 + bitesize = 2 + nutriment_desc = list("sugar" = 5) + var/list/color_options = list("saucer_pink","saucer_blue","saucer_orange","saucer_green","saucer_yellow") + +/obj/item/weapon/reagent_containers/food/snacks/saucer/Initialize() + . = ..() + icon_state = pick(color_options) + +/obj/item/weapon/storage/box/saucer //This is kinda like the donut box. + name = "Desatti Sherbert Saucers" + desc = "A pack of sherbert saucers, delicious pure sugar barely held together in packets of rice paper!" + icon = 'icons/obj/food_snacks.dmi' + icon_state = "saucer_pack" + var/icon_base = "saucer_pack" + var/startswith = 20 + max_storage_space = ITEMSIZE_COST_TINY * 20 + can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/saucer) + starts_with = list( + /obj/item/weapon/reagent_containers/food/snacks/saucer = 20, + ) + foldable = null + +/obj/item/weapon/reagent_containers/food/snacks/custardcream + name = "Custard Cream" + desc = "A small sandwich biscuit with a layer of custard flavoured cream as the filling and a pleasant design on the top and bottom." + icon = 'icons/obj/food_snacks.dmi' + icon_state = "custard_cream" + nutriment_amt = 1 + bitesize = 1 + nutriment_desc = list("biscuit" = 5, "cream" = 3, "custard" = 3) + +/obj/item/weapon/storage/box/custardcream //This is kinda like the donut box. + name = "Desatti Custard Creams" + desc = "A box full of desatti brand custard cream biscuits!" + icon = 'icons/obj/food_snacks.dmi' + icon_state = "custard_cream_pack" + var/icon_base = "custard_cream_pack" + var/startswith = 12 + max_storage_space = ITEMSIZE_COST_SMALL * 12 + can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/custardcream) + starts_with = list( + /obj/item/weapon/reagent_containers/food/snacks/custardcream = 12 + ) + foldable = null + +/obj/item/weapon/reagent_containers/food/snacks/bourbon + name = "Bourbon Biscuit" + desc = "A long chocolate sandwich biscuit with a layer of chocolate flavoured cream as the filling and the word 'bourbon' on top." + icon = 'icons/obj/food_snacks.dmi' + icon_state = "bourbon" + nutriment_amt = 1 + bitesize = 1 + nutriment_desc = list("biscuit" = 5, "cream" = 3, "chocolate" = 5) + +/obj/item/weapon/storage/box/bourbon //This is kinda like the donut box. + name = "Desatti Bourbons" + desc = "A box full of desatti brand chocolate bourbon biscuits!" + icon = 'icons/obj/food_snacks.dmi' + icon_state = "bourbon_pack" + var/icon_base = "bourbon_pack" + var/startswith = 12 + max_storage_space = ITEMSIZE_COST_SMALL * 12 + can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/bourbon) + starts_with = list( + /obj/item/weapon/reagent_containers/food/snacks/bourbon = 12 + ) + foldable = null + +/obj/item/weapon/reagent_containers/food/snacks/packaged/sausageroll + name = "Sausage Roll" + icon_state = "sausageroll" + desc = "A pre-packaged sausage roll with Desatti Catering branding. Claims to contain real meat covered in pastry!" + package_trash = /obj/item/trash/sausageroll + package_open_state = "sausageroll_open" + nutriment_amt = 3 + nutriment_desc = list("pastry" = 5, "meat" = 5) + +/obj/item/weapon/reagent_containers/food/snacks/packaged/scotchegg + name = "Scotch Egg" + icon_state = "scotchegg" + desc = "A pre-packaged scotch egg with Desatti Catering branding. Claims to contain a boiled egg covered in meat and coated with breadcrumbs!" + package_trash = /obj/item/trash/scotchegg + package_open_state = "scotchegg_open" + nutriment_amt = 3 + nutriment_desc = list("egg" = 5, "meat" = 5, "bread" = 2) + +/obj/item/weapon/reagent_containers/food/snacks/foam_banana + name = "Foam Banana" + desc = "A small vaguely banana shaped sweet with a foam-like texture." + icon = 'icons/obj/food_snacks.dmi' + icon_state = "foam_banana" + w_class = ITEMSIZE_TINY + nutriment_amt = 1 + bitesize = 2 + nutriment_desc = list("sugar" = 5, "banana" = 3) + +/obj/item/weapon/reagent_containers/food/snacks/foam_shrimp + name = "Foam Shrimp" + desc = "A small vaguely shrimp shaped sweet with a foam-like texture." + icon = 'icons/obj/food_snacks.dmi' + icon_state = "foam_shrimp" + w_class = ITEMSIZE_TINY + nutriment_amt = 1 + bitesize = 2 + nutriment_desc = list("sugar" = 5, "strawberry" = 3) + +/obj/item/weapon/storage/box/shrimpsandbananas //This is kinda like the donut box. + name = "Shrimps and Bananas" + desc = "A pack of foam bananas and shrimps, the shrimps apparently don't taste of seafood! Branded as Desatti Catering." + icon = 'icons/obj/food_snacks.dmi' + icon_state = "shrimpbanana_pack" + var/icon_base = "shrimpbanana_pack" + var/startswith = 20 + max_storage_space = ITEMSIZE_COST_TINY * 20 + can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/foam_banana,/obj/item/weapon/reagent_containers/food/snacks/foam_shrimp) + starts_with = list( + /obj/item/weapon/reagent_containers/food/snacks/foam_banana = 10, + /obj/item/weapon/reagent_containers/food/snacks/foam_shrimp = 10 + ) + foldable = null diff --git a/code/modules/food/glass/bottle_potion.dm b/code/modules/food/glass/bottle_potion.dm new file mode 100644 index 0000000000..486a2a158e --- /dev/null +++ b/code/modules/food/glass/bottle_potion.dm @@ -0,0 +1,151 @@ +/obj/item/weapon/reagent_containers/glass/bottle/potion + name = "healing potion" + desc = "A small green bottle containing some red liquid that claims to heal injuries." + icon = 'icons/obj/chemical.dmi' + icon_state = "bottle-5" + prefill = list("bicaridine" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/healing + +/obj/item/weapon/reagent_containers/glass/bottle/potion/greater_healing + name = "greater healing potion" + desc = "A small green bottle containing some thick red liquid that claims to rapidly heal injuries." + prefill = list("vermicetol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist + name = "fire resistance potion" + desc = "A small green bottle containing some orange liquid that claims to protect the drinker from fire." + prefill = list("dermaline" = 15, "kelotane" = 15) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote + name = "antidote potion" + desc = "A small green bottle containing some green liquid that claims to cure poisoning." + prefill = list("anti_toxin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/water + name = "water breathing potion" + desc = "A small green bottle containing some blue liquid that claims to allow the drinker to breathe under water." + prefill = list("dexalinp" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/regeneration + name = "regeneration potion" + desc = "A small green bottle containing some purple liquid that claims to regenerate severe wounds." + prefill = list("peridaxon" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/panacea + name = "panacea potion" + desc = "A small green bottle containing some white liquid that claims to cure all ailments." + prefill = list("spaceacillin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/magic + name = "magic resistence potion" + desc = "A small green bottle containing some dark green liquid that claims to cure magical effects." + prefill = list("hyronalin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/lightness + name = "feather weight potion" + desc = "A small green bottle containing some mysterious liquid that claims to make you feel lighter." + prefill = list("ickypak" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/SOP + name = "standard operating potion" + desc = "A small green bottle containing some yellow liquid that claims to be important." + prefill = list("myelamine" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/shrink + name = "diminution potion" + desc = "A small green bottle containing some swirling cyan liquid that claims to reduce the drinkers stature." + prefill = list("microcillin" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/growth + name = "fire giant potion" + desc = "A small green bottle containing some bubbling yellow liquid that claims to turn the drinker into a fire giant." + prefill = list("macrocillin" = 1, "capsaicin" = 5) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/pain + name = "grit potion" + desc = "A small green bottle containing some thin purple liquid that claims to power through even the most perilous injuries." + prefill = list("tramadol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/faerie + name = "faerie dance potion" + desc = "A small green bottle containing some swishing pink liquid that claims to help you open your mind." + prefill = list("psilocybin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation + name = "relaxation potion" + desc = "A small green bottle containing some still green liquid that claims to make everything feel just fine, really." + prefill = list("ambrosia_extract" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/speed + name = "blinding speed potion" + desc = "A small green bottle containing some bubbling orange liquid that claims to make you move at incredible speeds." + prefill = list("hyperzine" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/attractiveness + name = "love potion" + desc = "A small green bottle containing some light mint coloured liquid that claims to make you more attractive to potential partners." + prefill = list("menthol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/girljuice + name = "girl transformation potion" + desc = "A small green bottle containing some pretty pink liquid that claims to turn the drinker into a woman." + prefill = list("gynorovir" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/boyjuice + name = "boy transformation potion" + desc = "A small green bottle containing some strong blue liquid that claims to turn the drinker into a man." + prefill = list("androrovir" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/badpolymorph + name = "unstable polymorph potion" + desc = "A small green bottle containing some uncomfortably green liquid that claims to transform the drinker wildly." + prefill = list("mutagen" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/bonerepair + name = "mending potion" + desc = "A small green bottle containing some pale blue liquid that claims to fix that which is broken." + prefill = list("osteodaxon" = 1) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph + name = "polymorph potion" + desc = "A small green bottle containing some strange purple liquid that claims to transform the drinker." + prefill = list("polymorph" = 1) + +//Failed potions + +/obj/item/weapon/reagent_containers/glass/bottle/potion/plain + name = "plain potion" + desc = "A small green bottle containing some plain transparent liquid." + prefill = list("water" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/ethanol + name = "thin potion" + desc = "A small green bottle containing some thin transparent liquid with a solvent scent." + prefill = list("ethanol" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/sugar + name = "sweet potion" + desc = "A small green bottle containing some white translucent liquid with a sweet scent." + prefill = list("sugar" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/capsaicin + name = "warm potion" + desc = "A small green bottle containing some red liquid." + prefill = list("capsaicin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/soporific + name = "still potion" + desc = "A small green bottle containing some calm blue liquid." + prefill = list("stoxin" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/lipostipo + name = "thick potion" + desc = "A small green bottle containing some thick viscous liquid." + prefill = list("lipostipo" = 30) + +/obj/item/weapon/reagent_containers/glass/bottle/potion/phoron + name = "volatile potion" + desc = "A small green bottle containing some volatile purple liquid." + prefill = list("phoron" = 10) + diff --git a/code/modules/food/kitchen/cooking_machines/_appliance.dm b/code/modules/food/kitchen/cooking_machines/_appliance.dm index 7f71133f3a..07d812f8b5 100644 --- a/code/modules/food/kitchen/cooking_machines/_appliance.dm +++ b/code/modules/food/kitchen/cooking_machines/_appliance.dm @@ -242,7 +242,7 @@ else if(istype(check, /obj/item/weapon/disk/nuclear)) to_chat(user, "You can't cook that.") return 0 - else if(I.is_crowbar() || I.is_screwdriver() || istype(I, /obj/item/weapon/storage/part_replacer)) // You can't cook tools, dummy. + else if(I.has_tool_quality(TOOL_CROWBAR) || I.has_tool_quality(TOOL_SCREWDRIVER) || istype(I, /obj/item/weapon/storage/part_replacer)) // You can't cook tools, dummy. return 0 else if(!istype(check) && !istype(check, /obj/item/weapon/holder)) to_chat(user, "That's not edible.") @@ -606,7 +606,7 @@ /obj/machinery/appliance/attack_hand(var/mob/user) if(..()) return - + if(cooking_objs.len) removal_menu(user) diff --git a/code/modules/food/kitchen/cooking_machines/oven.dm b/code/modules/food/kitchen/cooking_machines/oven.dm index 9362bf2d19..a34f7e3583 100644 --- a/code/modules/food/kitchen/cooking_machines/oven.dm +++ b/code/modules/food/kitchen/cooking_machines/oven.dm @@ -110,7 +110,7 @@ /obj/machinery/appliance/cooker/oven/proc/manip(var/obj/item/I) // check if someone's trying to manipulate the machine - if(I.is_crowbar() || I.is_screwdriver() || istype(I, /obj/item/weapon/storage/part_replacer)) + if(I.has_tool_quality(TOOL_CROWBAR) || I.has_tool_quality(TOOL_SCREWDRIVER) || istype(I, /obj/item/weapon/storage/part_replacer)) return TRUE else return FALSE diff --git a/code/modules/food/kitchen/microwave.dm b/code/modules/food/kitchen/microwave.dm index dd30240eec..4ee7ad9de0 100644 --- a/code/modules/food/kitchen/microwave.dm +++ b/code/modules/food/kitchen/microwave.dm @@ -77,7 +77,7 @@ /obj/machinery/microwave/attackby(var/obj/item/O as obj, var/mob/user as mob) if(src.broken > 0) - if(src.broken == 2 && O.is_screwdriver()) // If it's broken and they're using a screwdriver + if(src.broken == 2 && O.has_tool_quality(TOOL_SCREWDRIVER)) // If it's broken and they're using a screwdriver user.visible_message( \ "\The [user] starts to fix part of the microwave.", \ "You start to fix part of the microwave." \ @@ -89,7 +89,7 @@ "You have fixed part of the microwave." \ ) src.broken = 1 // Fix it a bit - else if(src.broken == 1 && O.is_wrench()) // If it's broken and they're doing the wrench + else if(src.broken == 1 && O.has_tool_quality(TOOL_WRENCH)) // If it's broken and they're doing the wrench user.visible_message( \ "\The [user] starts to fix part of the microwave.", \ "You start to fix part of the microwave." \ @@ -190,10 +190,10 @@ var/obj/item/weapon/grab/G = O to_chat(user, "This is ridiculous. You can not fit \the [G.affecting] in this [src].") return 1 - else if(O.is_screwdriver()) + else if(O.has_tool_quality(TOOL_SCREWDRIVER)) default_deconstruction_screwdriver(user, O) return - else if(O.is_crowbar()) + else if(O.has_tool_quality(TOOL_CROWBAR)) if(default_deconstruction_crowbar(user, O)) return else @@ -667,4 +667,5 @@ for(var/M in workingList) if(istype(M, circuit)) // Yes, we remove circuit twice. Yes, it's necessary. Yes, it's stupid. workingList -= M - return workingList \ No newline at end of file + return workingList + diff --git a/code/modules/food/kitchen/smartfridge/smartfridge.dm b/code/modules/food/kitchen/smartfridge/smartfridge.dm index 1a10b3c219..90f0cff8ad 100644 --- a/code/modules/food/kitchen/smartfridge/smartfridge.dm +++ b/code/modules/food/kitchen/smartfridge/smartfridge.dm @@ -96,7 +96,7 @@ add_overlay("[icon_base]-[icon_contents]3") /obj/machinery/smartfridge/attackby(var/obj/item/O as obj, var/mob/user as mob) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) panel_open = !panel_open user.visible_message("[user] [panel_open ? "opens" : "closes"] the maintenance panel of \the [src].", "You [panel_open ? "open" : "close"] the maintenance panel of \the [src].") playsound(src, O.usesound, 50, 1) @@ -106,7 +106,7 @@ if(wrenchable && default_unfasten_wrench(user, O, 20)) return - if(istype(O, /obj/item/device/multitool) || O.is_wirecutter()) + if(istype(O, /obj/item/device/multitool) || O.has_tool_quality(TOOL_WIRECUTTER)) if(panel_open) attack_hand(user) return diff --git a/code/modules/food/recipes_microwave.dm b/code/modules/food/recipes_microwave.dm index 7993260ee0..a033b380bb 100644 --- a/code/modules/food/recipes_microwave.dm +++ b/code/modules/food/recipes_microwave.dm @@ -831,13 +831,6 @@ I said no! reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product result = /obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup -/datum/recipe/chickennoodlesoup - fruit = list("carrot" = 1) - reagents = list("water" = 10) - items = list( /obj/item/weapon/reagent_containers/food/snacks/spagetti, /obj/item/weapon/reagent_containers/food/snacks/rawcutlet) - reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product - result = /obj/item/weapon/reagent_containers/food/snacks/chickennoodlesoup - /datum/recipe/chilicheesefries items = list( /obj/item/weapon/reagent_containers/food/snacks/fries, diff --git a/code/modules/food/recipes_oven.dm b/code/modules/food/recipes_oven.dm index bf932c9da0..40bc15c427 100644 --- a/code/modules/food/recipes_oven.dm +++ b/code/modules/food/recipes_oven.dm @@ -343,6 +343,12 @@ result = /obj/item/weapon/reagent_containers/food/snacks/cinnamonbun result_quantity = 4 +/datum/recipe/jaffacake + appliance = OVEN + fruit = list("orange" = 1) + reagents = list("cakebatter" = 15, "coco" = 10) + result = /obj/item/weapon/reagent_containers/food/snacks/jaffacake + result_quantity = 6 //Pizzas //========================= diff --git a/code/modules/games/cah_white_cards.dm b/code/modules/games/cah_white_cards.dm index 861a2b1a0e..74789d1504 100644 --- a/code/modules/games/cah_white_cards.dm +++ b/code/modules/games/cah_white_cards.dm @@ -426,7 +426,6 @@ "Masturbation.", "Me time.", "Me.", - "MechaHitler.", "Media coverage.", "Medieval Times Dinner & Tournament.", "Men.", @@ -717,7 +716,7 @@ "Gay aliens.", "The way white people is.", "Reverse cowgirl.", - "The Quesadilla Explosion Salad from Chili’s.", + "The Quesadilla Explosion Salad from Chili's.", "Actually getting shot, for real.", "Not having sex.", "Vietnam flashbacks.", @@ -742,7 +741,7 @@ "A greased-up Matthew McConaughey.", "An unstoppable wave of fire ants.", "Not contributing to society in any meaningful way.", - "An all-midget production of Shakespeare’s Richard III.", + "An all-midget production of Shakespeare's Richard III.", "Screaming like a maniac.", "The moist, demanding chasm of his mouth.", "Filling every orifice with butterscotch pudding.", @@ -751,7 +750,7 @@ "Velcro.", "A PowerPoint presentation.", "A surprising amount of hair.", - "Eating Tom Selleck’s mustache to gain his powers.", + "Eating Tom Selleck's mustache to gain his powers.", "Roland the Farter, flatulist to the king.", "A pile of squirming bodies.", "Buying the right pants to be cool.", @@ -763,7 +762,7 @@ "A lamprey swimming up the toilet and latching onto your taint.", "Jumping out at people.", "A black male in his early 20s, last seen wearing a hoodie.", - "Mufasa’s death scene.", + "Mufasa's death scene.", "Bill Clinton, naked on a bearskin rug with a saxophone.", "Demonic possession.", "The Harlem Globetrotters.", @@ -777,7 +776,7 @@ "Getting your dick stuck in a Chinese finger trap with another dick.", "Fisting.", "The thin veneer of situational causality that underlies porn.", - "Girls that always be textin’.", + "Girls that always be textin'.", "Blowing some dudes in an alley.", "Drinking ten 5-hour ENERGYs to get fifty continuous hours of energy.", "Sneezing, farting, and coming at the same time." diff --git a/code/modules/games/dice.dm b/code/modules/games/dice.dm index b91fb73d1e..2d2b2dbaf9 100644 --- a/code/modules/games/dice.dm +++ b/code/modules/games/dice.dm @@ -16,7 +16,7 @@ /obj/item/weapon/dice/attackby(obj/item/weapon/W, mob/user) ..() - if(istype(W, /obj/item/weapon/weldingtool) || istype(W, /obj/item/weapon/flame/lighter)) + if(W.has_tool_quality(TOOL_WELDER) || istype(W, /obj/item/weapon/flame/lighter)) if(cheater) to_chat(user, "Wait, this [name] is already weighted!") else if(tamper_proof) diff --git a/code/modules/holodeck/HolodeckObjects.dm b/code/modules/holodeck/HolodeckObjects.dm index cf2a19f46a..5ae93bfd9c 100644 --- a/code/modules/holodeck/HolodeckObjects.dm +++ b/code/modules/holodeck/HolodeckObjects.dm @@ -206,11 +206,11 @@ if(W.flags & NOBLUDGEON) return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "It's a holowindow, you can't unfasten it!") - else if(W.is_crowbar() && reinf && state <= 1) + else if(W.has_tool_quality(TOOL_CROWBAR) && reinf && state <= 1) to_chat(user, "It's a holowindow, you can't pry it!") - else if(W.is_wrench() && !anchored && (!state || !reinf)) + else if(W.has_tool_quality(TOOL_WRENCH) && !anchored && (!state || !reinf)) to_chat(user, "It's a holowindow, you can't dismantle it!") else if(W.damtype == BRUTE || W.damtype == BURN) @@ -267,12 +267,12 @@ qdel(src) /obj/structure/bed/chair/holochair/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) to_chat(user, "It's a holochair, you can't dismantle it!") return //VOREStation Add /obj/structure/bed/holobed/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) to_chat(user, "It's a holochair, you can't dismantle it!") return //VOREStation Add End diff --git a/code/modules/hydroponics/beekeeping/beehive.dm b/code/modules/hydroponics/beekeeping/beehive.dm index 20d544f701..126232754b 100644 --- a/code/modules/hydroponics/beekeeping/beehive.dm +++ b/code/modules/hydroponics/beekeeping/beehive.dm @@ -36,12 +36,12 @@ . += "The lid is open." /obj/machinery/beehive/attackby(var/obj/item/I, var/mob/user) - if(I.is_crowbar()) + if(I.has_tool_quality(TOOL_CROWBAR)) closed = !closed user.visible_message(SPAN_NOTICE("[user] [closed ? "closes" : "opens"] \the [src]."), SPAN_NOTICE("You [closed ? "close" : "open"] \the [src].")) update_icon() return - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, I.usesound, 50, 1) user.visible_message(SPAN_NOTICE("[user] [anchored ? "wrenches" : "unwrenches"] \the [src]."), SPAN_NOTICE("You [anchored ? "wrench" : "unwrench"] \the [src].")) @@ -107,7 +107,7 @@ if(smoked) to_chat(user, "The hive is smoked.") return 1 - else if(I.is_screwdriver()) + else if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(bee_count) to_chat(user, SPAN_NOTICE("You can't dismantle \the [src] with these bees inside.")) return diff --git a/code/modules/hydroponics/fruit_spawner.dm b/code/modules/hydroponics/fruit_spawner.dm new file mode 100644 index 0000000000..4ebbff50d1 --- /dev/null +++ b/code/modules/hydroponics/fruit_spawner.dm @@ -0,0 +1,396 @@ +/obj/fruitspawner //this doesn't need to do anything but make the stack and die so it's light + name = "fruit spawner" + desc = "This item spawns harvested seed items." + icon = 'icons/obj/seeds.dmi' + icon_state = "no name" + var/seedtype = null + +/obj/fruitspawner/Initialize() + ..() + if(!seedtype || !SSplants.seeds[seedtype]) + return + var/turf/T = get_turf(src) + var/obj/structure/closet/C = locate() in T + var/datum/seed/S = SSplants.seeds[seedtype] + S.harvest(T || C,0,0,1) + return INITIALIZE_HINT_QDEL + +/obj/fruitspawner/cabbage + name = "cabbage spawner" + seedtype = "cabbage" + icon_state = "cabbage" + +/obj/fruitspawner/ambrosia + name = "ambrosia spawner" + seedtype = "ambrosia" + icon_state = "ambrosia" + +/obj/fruitspawner/apple + name = "apple spawner" + seedtype = "apple" + icon_state = "apple" + +/obj/fruitspawner/banana + name = "banana spawner" + seedtype = "banana" + icon_state = "bananas" + +/obj/fruitspawner/berry + name = "berry spawner" + seedtype = "berries" + icon_state = "berry" + +/obj/fruitspawner/carrot + name = "carrot spawner" + seedtype = "carrot" + icon_state = "carrot" + +/obj/fruitspawner/celery + name = "celery spawner" + seedtype = "celery" + icon_state = "stalk" + +/obj/fruitspawner/cherry + name = "cherry spawner" + seedtype = "cherry" + icon_state = "cherry" + +/obj/fruitspawner/chili + name = "chili spawner" + seedtype = "chili" + icon_state = "chili" + +/obj/fruitspawner/icechili + name = "icechili spawner" + seedtype = "icechili" + icon_state = "chili" + +/obj/fruitspawner/ghostchili + name = "ghost chili spawner" + seedtype = "ghostchili" + icon_state = "chili" + +/obj/fruitspawner/lime + name = "lime spawner" + seedtype = "lime" + icon_state = "treefruit" + +/obj/fruitspawner/lemon + name = "lemon spawner" + seedtype = "lemon" + icon_state = "lemon" + +/obj/fruitspawner/orange + name = "orange spawner" + seedtype = "orange" + icon_state = "treefruit" + +/obj/fruitspawner/cocoa + name = "cocoa spawner" + seedtype = "cocoa" + icon_state = "treefruit" + +/obj/fruitspawner/corn + name = "corn spawner" + seedtype = "corn" + icon_state = "corn" + +/obj/fruitspawner/diona + name = "diona spawner" + seedtype = "diona" + icon_state = "diona" + +/obj/fruitspawner/durian + name = "durian spawner" + seedtype = "durian" + icon_state = "spinefruit" + +/obj/fruitspawner/eggplant + name = "eggplant spawner" + seedtype = "eggplant" + icon_state = "eggplant" + +/obj/fruitspawner/harebells + name = "harebells spawner" + seedtype = "harebells" + icon_state = "flower5" + +/obj/fruitspawner/poppies + name = "poppies spawner" + seedtype = "poppies" + icon_state = "flower3" + +/obj/fruitspawner/sunflowers + name = "sunflowers spawner" + seedtype = "sunflowers" + icon_state = "flower2" + +/obj/fruitspawner/lavender + name = "lavender spawner" + seedtype = "lavender" + icon_state = "flower6" + +/obj/fruitspawner/rose + name = "rose spawner" + seedtype = "rose" + icon_state = "flowers" + +/obj/fruitspawner/bloodrose + name = "bloodrose spawner" + seedtype = "bloodrose" + icon_state = "flowers" + +/obj/fruitspawner/gnomes + name = "gnomes spawner" + seedtype = "gnomes" + icon_state = "gnomes" + +/obj/fruitspawner/grapes + name = "grapes spawner" + seedtype = "grapes" + icon_state = "grapes" + +/obj/fruitspawner/greengrapes + name = "greengrapes spawner" + seedtype = "greengrapes" + icon_state = "grapes" + +/obj/fruitspawner/grass + name = "grass spawner" + seedtype = "grass" + icon_state = "grass" + +/obj/fruitspawner/carpet + name = "carpet spawner" + seedtype = "carpet" + icon_state = "grass" + +/obj/fruitspawner/kudzu + name = "kudzu spawner" + seedtype = "kudzu" + icon_state = "treefruit" + +/obj/fruitspawner/lettuce + name = "lettuce spawner" + seedtype = "lettuce" + icon_state = "lettuce" + +/obj/fruitspawner/siflettuce + name = "siflettuce spawner" + seedtype = "siflettuce" + icon_state = "lettuce" + +/obj/fruitspawner/mtear + name = "mtear spawner" + seedtype = "mtear" + icon_state = "alien4" + +/obj/fruitspawner/mushrooms + name = "chanterelle spawner" + seedtype = "mushrooms" + icon_state = "mushroom4" + +/obj/fruitspawner/mold + name = "mold spawner" + seedtype = "mold" + icon_state = "mushroom5" + +/obj/fruitspawner/plumphelmet + name = "plumphelmet spawner" + seedtype = "plumphelmet" + icon_state = "mushroom10" + +/obj/fruitspawner/reishi + name = "reishi spawner" + seedtype = "reishi" + icon_state = "mushroom11" + +/obj/fruitspawner/libertycap + name = "libertycap spawner" + seedtype = "libertycap" + icon_state = "mushroom8" + +/obj/fruitspawner/amanita + name = "amanita spawner" + seedtype = "amanita" + icon_state = "mushroom" + +/obj/fruitspawner/destroyingangel + name = "destroyingangel spawner" + seedtype = "destroyingangel" + icon_state = "mushroom3" + +/obj/fruitspawner/towercap + name = "towercap spawner" + seedtype = "towercap" + icon_state = "mushroom7" + +/obj/fruitspawner/redcap + name = "redcap spawner" + seedtype = "redcap" + icon_state = "mushroom7" + +/obj/fruitspawner/glowshroom + name = "glowshroom spawner" + seedtype = "glowshroom" + icon_state = "mushroom2" + +/obj/fruitspawner/plastic + name = "plastic spawner" + seedtype = "plastic" + icon_state = "mushroom6" + +/obj/fruitspawner/sporeshroom + name = "sporeshroom spawner" + seedtype = "sporeshroom" + icon_state = "mushroom5" + +/obj/fruitspawner/nettle + name = "nettle spawner" + seedtype = "nettle" + icon_state = "nettles" + +/obj/fruitspawner/deathnettle + name = "deathnettle spawner" + seedtype = "deathnettle" + icon_state = "nettles" + +/obj/fruitspawner/onion + name = "onion spawner" + seedtype = "onion" + icon_state = "onion" + +/obj/fruitspawner/peanut + name = "peanut spawner" + seedtype = "peanut" + icon_state = "nuts" + +/obj/fruitspawner/pineapple + name = "pineapple spawner" + seedtype = "pineapple" + icon_state = "pineapple" + +/obj/fruitspawner/spineapple + name = "spineapple spawner" + seedtype = "spineapple" + icon_state = "pineapple" + +/obj/fruitspawner/potato + name = "potato spawner" + seedtype = "potato" + icon_state = "potato" + +/obj/fruitspawner/pumpkin + name = "pumpkin spawner" + seedtype = "pumpkin" + icon_state = "vine2" + +/obj/fruitspawner/rhubarb + name = "rhubarb spawner" + seedtype = "rhubarb" + icon_state = "stalk" + +/obj/fruitspawner/rice + name = "rice spawner" + seedtype = "rice" + icon_state = "rice" + +/obj/fruitspawner/shand + name = "selems hand spawner" + seedtype = "shand" + icon_state = "alien3" + +/obj/fruitspawner/soybean + name = "soybean spawner" + seedtype = "soybean" + icon_state = "bean" + +/obj/fruitspawner/sugarcane + name = "sugarcane spawner" + seedtype = "sugarcane" + icon_state = "stalk" + +/obj/fruitspawner/telriis + name = "telriis spawner" + seedtype = "telriis" + icon_state = "ambrosia" + +/obj/fruitspawner/thaadra + name = "thaadra spawner" + seedtype = "thaadra" + icon_state = "grass" + +/obj/fruitspawner/tobacco + name = "tobacco spawner" + seedtype = "tobacco" + icon_state = "leafy" + +/obj/fruitspawner/stimbush + name = "stimbush spawner" + seedtype = "stimbush" + icon_state = "leafy" + +/obj/fruitspawner/tomato + name = "tomato spawner" + seedtype = "tomato" + icon_state = "tomato" + +/obj/fruitspawner/bloodtomato + name = "bloodtomato spawner" + seedtype = "bloodtomato" + icon_state = "tomato" + +/obj/fruitspawner/bluetomato + name = "bluetomato spawner" + seedtype = "bluetomato" + icon_state = "tomato" + +/obj/fruitspawner/bluespacetomato + name = "bluespacetomato spawner" + seedtype = "bluespacetomato" + icon_state = "tomato" + +/obj/fruitspawner/vanilla + name = "vanilla spawner" + seedtype = "vanilla" + icon_state = "chili" + +/obj/fruitspawner/whitewabback + name = "whitewabback spawner" + seedtype = "whitewabback" + icon_state = "carrot2" + +/obj/fruitspawner/blackwabback + name = "blackwabback spawner" + seedtype = "blackwabback" + icon_state = "carrot2" + +/obj/fruitspawner/wildwabback + name = "wildwabback spawner" + seedtype = "wildwabback" + icon_state = "carrot2" + +/obj/fruitspawner/watermelon + name = "watermelon spawner" + seedtype = "watermelon" + icon_state = "vine" + +/obj/fruitspawner/weeds + name = "weeds spawner" + seedtype = "weeds" + icon_state = "flower4" + +/obj/fruitspawner/wheat + name = "wheat spawner" + seedtype = "wheat" + icon_state = "wheat" + +/obj/fruitspawner/whitebeet + name = "whitebeet spawner" + seedtype = "whitebeet" + icon_state = "carrot2" + +/obj/fruitspawner/wurmwoad + name = "wurmwoad spawner" + seedtype = "wurmwoad" + icon_state = "eyepod" diff --git a/code/modules/hydroponics/seed_machines.dm b/code/modules/hydroponics/seed_machines.dm index 8919b4ede5..128c1dc745 100644 --- a/code/modules/hydroponics/seed_machines.dm +++ b/code/modules/hydroponics/seed_machines.dm @@ -96,7 +96,7 @@ if(default_deconstruction_screwdriver(user, W)) return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 100, 1) to_chat(user, "You [anchored ? "un" : ""]secure \the [src].") anchored = !anchored diff --git a/code/modules/hydroponics/seed_storage.dm b/code/modules/hydroponics/seed_storage.dm index 749f6e4920..0ad03d2826 100644 --- a/code/modules/hydroponics/seed_storage.dm +++ b/code/modules/hydroponics/seed_storage.dm @@ -245,7 +245,7 @@ /obj/machinery/seed_storage/tgui_data(mob/user, datum/tgui/ui, datum/tgui_state/state) var/list/data = ..() - + if(smart) scanner = list("stats", "produce", "soil", "temperature", "light", "pressure") else @@ -402,18 +402,18 @@ else to_chat(user, "There are no seeds in \the [O.name].") return - else if(O.is_wrench()) + else if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 50, 1) anchored = !anchored to_chat(user, "You [anchored ? "wrench" : "unwrench"] \the [src].") - else if(O.is_screwdriver()) + else if(O.has_tool_quality(TOOL_SCREWDRIVER)) panel_open = !panel_open to_chat(user, "You [panel_open ? "open" : "close"] the maintenance panel.") playsound(src, O.usesound, 50, 1) cut_overlays() if(panel_open) add_overlay("[initial(icon_state)]-panel") - else if((O.is_wirecutter() || istype(O, /obj/item/device/multitool)) && panel_open) + else if((O.has_tool_quality(TOOL_WIRECUTTER) || istype(O, /obj/item/device/multitool)) && panel_open) wires.Interact(user) /obj/machinery/seed_storage/emag_act(var/remaining_charges, var/mob/user) diff --git a/code/modules/hydroponics/spreading/spreading.dm b/code/modules/hydroponics/spreading/spreading.dm index a92de0ba98..224c7ee0c7 100644 --- a/code/modules/hydroponics/spreading/spreading.dm +++ b/code/modules/hydroponics/spreading/spreading.dm @@ -245,7 +245,7 @@ user.setClickCooldown(user.get_attack_speed(W)) SSplants.add_plant(src) - if(W.is_wirecutter() || istype(W, /obj/item/weapon/surgical/scalpel)) + if(W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/weapon/surgical/scalpel)) if(sampled) to_chat(user, "\The [src] has already been sampled recently.") return diff --git a/code/modules/hydroponics/trays/tray.dm b/code/modules/hydroponics/trays/tray.dm index 090e78803b..8a0a4c2c04 100644 --- a/code/modules/hydroponics/trays/tray.dm +++ b/code/modules/hydroponics/trays/tray.dm @@ -489,7 +489,7 @@ if(O.is_open_container()) return 0 - if(O.is_wirecutter() || istype(O, /obj/item/weapon/surgical/scalpel)) + if(O.has_tool_quality(TOOL_WIRECUTTER) || istype(O, /obj/item/weapon/surgical/scalpel)) if(!seed) to_chat(user, "There is nothing to take a sample from in \the [src].") @@ -584,7 +584,7 @@ qdel(O) check_health() - else if(mechanical && O.is_wrench()) + else if(mechanical && O.has_tool_quality(TOOL_WRENCH)) //If there's a connector here, the portable_atmospherics setup can handle it. if(locate(/obj/machinery/atmospherics/portables_connector/) in loc) diff --git a/code/modules/integrated_electronics/core/assemblies.dm b/code/modules/integrated_electronics/core/assemblies.dm index 20802b90cc..8262768d3a 100644 --- a/code/modules/integrated_electronics/core/assemblies.dm +++ b/code/modules/integrated_electronics/core/assemblies.dm @@ -271,7 +271,7 @@ visible_message("\The [user] waves \the [src] around [target].") /obj/item/device/electronic_assembly/attackby(var/obj/item/I, var/mob/user) - if(can_anchor && I.is_wrench()) + if(can_anchor && I.has_tool_quality(TOOL_WRENCH)) anchored = !anchored to_chat(user, span("notice", "You've [anchored ? "" : "un"]secured \the [src] to \the [get_turf(src)].")) if(anchored) @@ -290,14 +290,14 @@ tgui_interact(user) return TRUE - else if(I.is_crowbar()) + else if(I.has_tool_quality(TOOL_CROWBAR)) playsound(src, 'sound/items/Crowbar.ogg', 50, 1) opened = !opened to_chat(user, "You [opened ? "opened" : "closed"] \the [src].") update_icon() return TRUE - else if(istype(I, /obj/item/device/integrated_electronics/wirer) || istype(I, /obj/item/device/integrated_electronics/debugger) || I.is_screwdriver()) + else if(istype(I, /obj/item/device/integrated_electronics/wirer) || istype(I, /obj/item/device/integrated_electronics/debugger) || I.has_tool_quality(TOOL_SCREWDRIVER)) if(opened) tgui_interact(user) return TRUE @@ -397,4 +397,4 @@ // Returns TRUE if I is something that could/should have a valid interaction. Used to tell circuitclothes to hit the circuit with something instead of the clothes /obj/item/device/electronic_assembly/proc/is_valid_tool(var/obj/item/I) - return I.is_crowbar() || I.is_screwdriver() || istype(I, /obj/item/integrated_circuit) || istype(I, /obj/item/weapon/cell/device) || istype(I, /obj/item/device/integrated_electronics) + return I.has_tool_quality(TOOL_CROWBAR) || I.has_tool_quality(TOOL_SCREWDRIVER) || istype(I, /obj/item/integrated_circuit) || istype(I, /obj/item/weapon/cell/device) || istype(I, /obj/item/device/integrated_electronics) diff --git a/code/modules/integrated_electronics/core/assemblies/device.dm b/code/modules/integrated_electronics/core/assemblies/device.dm index 8500f4dafc..d23446dceb 100644 --- a/code/modules/integrated_electronics/core/assemblies/device.dm +++ b/code/modules/integrated_electronics/core/assemblies/device.dm @@ -12,7 +12,7 @@ ..() /obj/item/device/assembly/electronic_assembly/attackby(obj/item/I as obj, mob/user as mob) - if (I.is_crowbar()) + if (I.has_tool_quality(TOOL_CROWBAR)) toggle_open(user) else if (opened) EA.attackby(I, user) diff --git a/code/modules/integrated_electronics/core/tools.dm b/code/modules/integrated_electronics/core/tools.dm index f5b850ef5e..75b6e85fb4 100644 --- a/code/modules/integrated_electronics/core/tools.dm +++ b/code/modules/integrated_electronics/core/tools.dm @@ -274,7 +274,6 @@ /obj/item/weapon/tool/screwdriver, /obj/item/device/multitool ) - cant_hold = list(/obj/item/weapon/tool/screwdriver/power) /obj/item/weapon/storage/bag/circuits/basic/Initialize() . = ..() diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index a4ebf411da..0b11c0ef15 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -38,11 +38,11 @@ return else name = ("bookcase ([newname])") - else if(O.is_wrench()) + else if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 100, 1) to_chat(user, (anchored ? "You unfasten \the [src] from the floor." : "You secure \the [src] to the floor.")) anchored = !anchored - else if(O.is_screwdriver()) + else if(O.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, O.usesound, 75, 1) to_chat(user, "You begin dismantling \the [src].") if(do_after(user,25 * O.toolspeed)) @@ -281,7 +281,7 @@ Book Cart End return scanner.computer.inventory.Add(src) to_chat(user, "[W]'s screen flashes: 'Book stored in buffer. Title added to general inventory.'") - else if(istype(W, /obj/item/weapon/material/knife) || W.is_wirecutter()) + else if(istype(W, /obj/item/weapon/material/knife) || W.has_tool_quality(TOOL_WIRECUTTER)) if(carved) return to_chat(user, "You begin to carve out [title].") if(do_after(user, 30)) diff --git a/code/modules/lighting/lighting_fake_sun_vr.dm b/code/modules/lighting/lighting_fake_sun_vr.dm index ef1ebbc44e..81c7831085 100644 --- a/code/modules/lighting/lighting_fake_sun_vr.dm +++ b/code/modules/lighting/lighting_fake_sun_vr.dm @@ -206,3 +206,14 @@ var/static/list/fake_sunlight_zs = list() "color" = "#27024B" ) ) + +/obj/effect/fake_sun/underwater + do_weather = TRUE + weather_visuals_icon = 'icons/effects/weather.dmi' + weather_visuals_icon_state = "underwater" + possible_light_setups = list( + list( + "brightness" = 1, + "color" = "#1c49ff" + ) + ) diff --git a/code/modules/materials/materials/_materials.dm b/code/modules/materials/materials/_materials.dm index 6ce2fab16c..fba60dda05 100644 --- a/code/modules/materials/materials/_materials.dm +++ b/code/modules/materials/materials/_materials.dm @@ -188,8 +188,9 @@ var/list/name_to_material // Icons var/icon_colour // Colour applied to products of this material. - var/icon_base = "metal" // Wall and table base icon tag. See header. + var/icon_base = "metal" // Wall base icon tag. See header. var/door_icon_base = "metal" // Door base icon tag. See header. + var/table_icon_base = "metal" // Table base icon tag. See header. var/icon_reinf = "reinf_metal" // Overlay used var/list/stack_origin_tech = list(TECH_MATERIAL = 1) // Research level for stacks. var/pass_stack_colors = FALSE // Will stacks made from this material pass their colors onto objects? diff --git a/code/modules/materials/materials/alien_alloy.dm b/code/modules/materials/materials/alien_alloy.dm index 741f0275b7..d7f76b7e60 100644 --- a/code/modules/materials/materials/alien_alloy.dm +++ b/code/modules/materials/materials/alien_alloy.dm @@ -15,22 +15,26 @@ /datum/material/alienalloy/elevatorium name = "elevatorium" display_name = "elevator panelling" + table_icon_base = "stone" icon_colour = "#666666" /datum/material/alienalloy/dungeonium name = "dungeonium" display_name = "ultra-durable" icon_base = "dungeon" + table_icon_base = "stone" icon_colour = "#FFFFFF" /datum/material/alienalloy/bedrock name = "bedrock" display_name = "impassable rock" icon_base = "rock" + table_icon_base = "stone" icon_colour = "#FFFFFF" /datum/material/alienalloy/alium name = "alium" display_name = "alien" icon_base = "alien" + table_icon_base = "alien" icon_colour = "#FFFFFF" \ No newline at end of file diff --git a/code/modules/materials/materials/cult.dm b/code/modules/materials/materials/cult.dm index 7d8d4be9f2..d1b497a708 100644 --- a/code/modules/materials/materials/cult.dm +++ b/code/modules/materials/materials/cult.dm @@ -2,6 +2,7 @@ name = "cult" display_name = "disturbing stone" icon_base = "cult" + table_icon_base = "stone" icon_colour = "#402821" icon_reinf = "reinf_cult" shard_type = SHARD_STONE_PIECE diff --git a/code/modules/materials/materials/gems.dm b/code/modules/materials/materials/gems.dm index e807f682ae..18db67f493 100644 --- a/code/modules/materials/materials/gems.dm +++ b/code/modules/materials/materials/gems.dm @@ -3,6 +3,7 @@ stack_type = /obj/item/stack/material/phoron ignition_point = PHORON_MINIMUM_BURN_TEMPERATURE icon_base = "stone" + table_icon_base = "stone" icon_colour = "#FC2BC5" shard_type = SHARD_SHARD hardness = 30 @@ -44,6 +45,8 @@ hardness = 100 stack_origin_tech = list(TECH_MATERIAL = 6) supply_conversion_value = 8 + icon_base = "stone" + table_icon_base = "stone" /datum/material/quartz name = MAT_QUARTZ @@ -55,6 +58,8 @@ sheet_singular_name = "crystal" sheet_plural_name = "crystals" supply_conversion_value = 4 + icon_base = "stone" + table_icon_base = "stone" /datum/material/painite name = MAT_PAINITE @@ -68,6 +73,8 @@ sheet_singular_name = "gem" sheet_plural_name = "gems" supply_conversion_value = 4 + icon_base = "stone" + table_icon_base = "stone" /datum/material/void_opal name = MAT_VOPAL @@ -86,6 +93,8 @@ sheet_singular_name = "gem" sheet_plural_name = "gems" supply_conversion_value = 30 // These are hilariously rare. + icon_base = "stone" + table_icon_base = "stone" // Particle Smasher and other exotic materials. /datum/material/valhollide @@ -108,6 +117,8 @@ stack_origin_tech = list(TECH_MATERIAL = 7, TECH_PHORON = 5, TECH_BLUESPACE = 5) sheet_singular_name = "gem" sheet_plural_name = "gems" + icon_base = "stone" + table_icon_base = "stone" /datum/material/verdantium name = MAT_VERDANTIUM @@ -129,6 +140,8 @@ sheet_singular_name = "sheet" sheet_plural_name = "sheets" supply_conversion_value = 8 + icon_base = "stone" + table_icon_base = "stone" /datum/material/morphium name = MAT_MORPHIUM @@ -150,5 +163,7 @@ radiation_resistance = 10 stack_origin_tech = list(TECH_MATERIAL = 8, TECH_PHORON = 4, TECH_BLUESPACE = 4) supply_conversion_value = 13 + icon_base = "stone" + table_icon_base = "stone" diff --git a/code/modules/materials/materials/metals/hull.dm b/code/modules/materials/materials/metals/hull.dm index 24a03fa07d..00e38657a3 100644 --- a/code/modules/materials/materials/metals/hull.dm +++ b/code/modules/materials/materials/metals/hull.dm @@ -4,6 +4,7 @@ integrity = 250 explosion_resistance = 10 icon_base = "hull" + table_icon_base = "stone" icon_reinf = "reinf_mesh" icon_colour = "#666677" flags = MATERIAL_UNMELTABLE @@ -17,6 +18,7 @@ stack_type = /obj/item/stack/material/plasteel/hull integrity = 600 icon_base = "hull" + table_icon_base = "stone" icon_reinf = "reinf_mesh" icon_colour = "#777788" explosion_resistance = 40 @@ -30,6 +32,7 @@ name = MAT_DURASTEELHULL stack_type = /obj/item/stack/material/durasteel/hull icon_base = "hull" + table_icon_base = "stone" icon_reinf = "reinf_mesh" icon_colour = "#45829a" explosion_resistance = 90 @@ -44,6 +47,7 @@ name = MAT_TITANIUMHULL stack_type = /obj/item/stack/material/titanium/hull icon_base = "hull" + table_icon_base = "stone" icon_reinf = "reinf_mesh" flags = MATERIAL_UNMELTABLE composite_material = list(MAT_TITANIUM = SHEET_MATERIAL_AMOUNT) @@ -55,6 +59,7 @@ name = MAT_MORPHIUMHULL stack_type = /obj/item/stack/material/morphium/hull icon_base = "hull" + table_icon_base = "stone" icon_reinf = "reinf_mesh" flags = MATERIAL_UNMELTABLE composite_material = list(MAT_MORPHIUM = SHEET_MATERIAL_AMOUNT) diff --git a/code/modules/materials/materials/metals/hull_vr.dm b/code/modules/materials/materials/metals/hull_vr.dm index 8a7ebb22f3..e0dada40cc 100644 --- a/code/modules/materials/materials/metals/hull_vr.dm +++ b/code/modules/materials/materials/metals/hull_vr.dm @@ -2,6 +2,7 @@ name = MAT_PLASTITANIUMHULL stack_type = /obj/item/stack/material/plastitanium/hull icon_base = "hull" + table_icon_base = "stone" icon_reinf = "reinf_mesh" icon_colour = "#585658" explosion_resistance = 50 @@ -14,6 +15,7 @@ name = MAT_GOLDHULL stack_type = /obj/item/stack/material/gold/hull icon_base = "hull" + table_icon_base = "stone" icon_reinf = "reinf_mesh" explosion_resistance = 50 composite_material = list(MAT_GOLD = SHEET_MATERIAL_AMOUNT) diff --git a/code/modules/materials/materials/metals/metals.dm b/code/modules/materials/materials/metals/metals.dm index 4dd8a6a984..fae037a620 100644 --- a/code/modules/materials/materials/metals/metals.dm +++ b/code/modules/materials/materials/metals/metals.dm @@ -19,6 +19,12 @@ stack_origin_tech = list(TECH_MATERIAL = 8) supply_conversion_value = 9 +/datum/material/durasteel/generate_recipes() + ..() + recipes += list( + new /datum/stack_recipe("durasteel hull sheet", /obj/item/stack/material/durasteel/hull, 2, 1, 5, time = 20, one_per_turf = 0, on_floor = 1, recycle_material = "[name]") + ) + /datum/material/titanium name = MAT_TITANIUM stack_type = /obj/item/stack/material/titanium @@ -28,6 +34,12 @@ icon_colour = "#D1E6E3" icon_reinf = "reinf_metal" +/datum/material/titanium/generate_recipes() + ..() + recipes += list( + new /datum/stack_recipe("titanium hull sheet", /obj/item/stack/material/titanium/hull, 2, 1, 5, time = 20, one_per_turf = 0, on_floor = 1, recycle_material = "[name]") + ) + /datum/material/iron name = "iron" stack_type = /obj/item/stack/material/iron diff --git a/code/modules/materials/materials/metals/plasteel.dm b/code/modules/materials/materials/metals/plasteel.dm index 315b897e59..fa9e271521 100644 --- a/code/modules/materials/materials/metals/plasteel.dm +++ b/code/modules/materials/materials/metals/plasteel.dm @@ -24,6 +24,7 @@ new /datum/stack_recipe("roller bed", /obj/item/roller, 5, time = 30, on_floor = 1, recycle_material = "[name]"), new /datum/stack_recipe("whetstone", /obj/item/weapon/whetstone, 2, time = 10, recycle_material = "[name]"), new /datum/stack_recipe("plasteel rebar", /obj/item/stack/material/plasteel/rebar, 1, time = 5, recycle_material = "[name]"), + new /datum/stack_recipe("plasteel hull sheet", /obj/item/stack/material/plasteel/hull, 2, 1, 5, time = 20, one_per_turf = 0, on_floor = 1, recycle_material = "[name]"), new /datum/stack_recipe_list("reinforced low walls",list( new /datum/stack_recipe("reinforced low wall (bay style)", /obj/structure/low_wall/bay/reinforced, 3, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", recycle_material = "[name]"), new /datum/stack_recipe("reinforced low wall (eris style)", /obj/structure/low_wall/eris/reinforced, 3, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", recycle_material = "[name]") diff --git a/code/modules/materials/materials/metals/steel.dm b/code/modules/materials/materials/metals/steel.dm index ff21681b72..e297717841 100644 --- a/code/modules/materials/materials/metals/steel.dm +++ b/code/modules/materials/materials/metals/steel.dm @@ -103,7 +103,7 @@ new /datum/stack_recipe("cyan corner tile", /obj/item/stack/tile/floor/eris/steel/cyancorner, 1, 4, 20, recycle_material = "[name]"), new /datum/stack_recipe("violet corner tile", /obj/item/stack/tile/floor/eris/steel/violetcorener, 1, 4, 20, recycle_material = "[name]"), )), - + )), //Eris Floor tiles- Dark new /datum/stack_recipe_list("eris floors-dark", list( @@ -145,5 +145,6 @@ new /datum/stack_recipe("big floor lamp fixture frame", /obj/machinery/light_construct/bigfloorlamp, 3, recycle_material = "[name]"), new /datum/stack_recipe("apc frame", /obj/item/frame/apc, 2, recycle_material = "[name]"), new /datum/stack_recipe("desk bell", /obj/item/weapon/deskbell, 1, on_floor = 1, supplied_material = "[name]"), - new /datum/stack_recipe("tanning rack", /obj/structure/tanning_rack, 3, one_per_turf = TRUE, time = 20, on_floor = TRUE, supplied_material = "[name]") + new /datum/stack_recipe("tanning rack", /obj/structure/tanning_rack, 3, one_per_turf = TRUE, time = 20, on_floor = TRUE, supplied_material = "[name]"), + new /datum/stack_recipe("steel hull sheet", /obj/item/stack/material/steel/hull, 2, 1, 5, time = 20, one_per_turf = 0, on_floor = 1, recycle_material = "[name]") ) diff --git a/code/modules/materials/materials/organic/resin.dm b/code/modules/materials/materials/organic/resin.dm index a1d66e4eb0..5d46999c29 100644 --- a/code/modules/materials/materials/organic/resin.dm +++ b/code/modules/materials/materials/organic/resin.dm @@ -2,6 +2,7 @@ name = "resin" icon_colour = "#35343a" icon_base = "resin" + table_icon_base = "stone" dooropen_noise = 'sound/effects/attackblob.ogg' door_icon_base = "resin" icon_reinf = "reinf_mesh" diff --git a/code/modules/materials/materials/organic/wood.dm b/code/modules/materials/materials/organic/wood.dm index 4c9fd7ac22..b91bb381ac 100644 --- a/code/modules/materials/materials/organic/wood.dm +++ b/code/modules/materials/materials/organic/wood.dm @@ -71,6 +71,7 @@ stack_type = /obj/item/stack/material/wood/hard icon_colour = "#42291a" icon_base = "stone" + table_icon_base = "stone" icon_reinf = "reinf_stone" integrity = 65 //a bit stronger than regular wood hardness = 20 diff --git a/code/modules/materials/materials/other_vr.dm b/code/modules/materials/materials/other_vr.dm index d54dd4f726..14f1dd7a10 100644 --- a/code/modules/materials/materials/other_vr.dm +++ b/code/modules/materials/materials/other_vr.dm @@ -23,10 +23,12 @@ name = "darkglass" display_name = "darkglass" icon_base = "darkglass" + table_icon_base = "darkglass" icon_colour = "#FFFFFF" /datum/material/fancyblack name = "fancyblack" display_name = "fancyblack" icon_base = "fancyblack" + table_icon_base = "fancyblack" icon_colour = "#FFFFFF" diff --git a/code/modules/materials/materials/snow.dm b/code/modules/materials/materials/snow.dm index bd53579811..f93941335e 100644 --- a/code/modules/materials/materials/snow.dm +++ b/code/modules/materials/materials/snow.dm @@ -30,6 +30,7 @@ flags = MATERIAL_BRITTLE stack_type = /obj/item/stack/material/snowbrick icon_base = "stone" + table_icon_base = "stone" icon_reinf = "reinf_stone" icon_colour = "#D8FDFF" integrity = 50 diff --git a/code/modules/materials/materials/stone.dm b/code/modules/materials/materials/stone.dm index 486d812c87..0a6a251167 100644 --- a/code/modules/materials/materials/stone.dm +++ b/code/modules/materials/materials/stone.dm @@ -2,6 +2,7 @@ name = "sandstone" stack_type = /obj/item/stack/material/sandstone icon_base = "stone" + table_icon_base = "stone" icon_reinf = "reinf_stone" icon_colour = "#D9C179" shard_type = SHARD_STONE_PIECE diff --git a/code/modules/materials/sheets/metals/hull.dm b/code/modules/materials/sheets/metals/hull.dm index 5a6d429f44..1565e5f76e 100644 --- a/code/modules/materials/sheets/metals/hull.dm +++ b/code/modules/materials/sheets/metals/hull.dm @@ -8,6 +8,7 @@ /obj/item/stack/material/durasteel/hull name = MAT_DURASTEELHULL + default_type = MAT_DURASTEELHULL /obj/item/stack/material/titanium/hull name = MAT_TITANIUMHULL diff --git a/code/modules/materials/sheets/metals/rods.dm b/code/modules/materials/sheets/metals/rods.dm index 9ebd0fd92f..dbb30c19d9 100644 --- a/code/modules/materials/sheets/metals/rods.dm +++ b/code/modules/materials/sheets/metals/rods.dm @@ -43,8 +43,8 @@ var/global/list/datum/stack_recipe/rods_recipes = list( \ new/datum/stack_recipe("catwalk", /obj/structure/catwalk, 2, time = 80, one_per_turf = 1, on_floor = 1)) /obj/item/stack/rods/attackby(obj/item/W as obj, mob/user as mob) - if (istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(get_amount() < 2) to_chat(user, "You need at least two rods to do this.") diff --git a/code/modules/mining/drilling/drill.dm b/code/modules/mining/drilling/drill.dm index e02e1f5714..445f72fb01 100644 --- a/code/modules/mining/drilling/drill.dm +++ b/code/modules/mining/drilling/drill.dm @@ -445,7 +445,7 @@ if(default_part_replacement(user,W)) return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(istype(get_turf(src), /turf/space)) to_chat(user, "You can't anchor something to empty space. Idiot.") diff --git a/code/modules/mining/shelter_atoms_vr.dm b/code/modules/mining/shelter_atoms_vr.dm index 6c209191e1..2f4ad9e46f 100644 --- a/code/modules/mining/shelter_atoms_vr.dm +++ b/code/modules/mining/shelter_atoms_vr.dm @@ -234,7 +234,7 @@ GLOBAL_LIST_EMPTY(unique_deployable) pixel_y = -32 /obj/item/device/gps/computer/attackby(obj/item/I, mob/living/user) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) user.visible_message("[user] disassembles [src].", "You start to disassemble [src]...", "You hear clanking and banging noises.") if(do_after(user,4 SECONDS,src)) @@ -300,7 +300,7 @@ GLOBAL_LIST_EMPTY(unique_deployable) qdel(src) /obj/structure/fans/attackby(obj/item/I, mob/living/user) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) user.visible_message("[user] disassembles [src].", "You start to disassemble [src]...", "You hear clanking and banging noises.") if(do_after(user,4 SECONDS,src)) diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index 1bf764f1db..6d59392cf7 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -138,15 +138,28 @@ ai_holder.on_hear_say(speaker, multilingual_to_message(message_pieces)) /mob/proc/on_hear_say(var/message) - to_chat(src, "[message]") - if(teleop) + var/time = say_timestamp() + if(client) + if(client.prefs.chat_timestamp) + to_chat(src, "[time] [message]") + else + to_chat(src, "[message]") + else if(teleop) to_chat(teleop, "[create_text_tag("body", "BODY:", teleop.client)][message]") + else + to_chat(src, "[message]") /mob/living/silicon/on_hear_say(var/message) var/time = say_timestamp() - to_chat(src, "[time] [message]") - if(teleop) - to_chat(teleop, "[create_text_tag("body", "BODY:", teleop.client)][time] [message]") + if(client) + if(client.prefs.chat_timestamp) + to_chat(src, "[time] [message]") + else + to_chat(src, "[message]") + else if(teleop) + to_chat(teleop, "[create_text_tag("body", "BODY:", teleop.client)][message]") + else + to_chat(src, "[message]") // Checks if the mob's own name is included inside message. Handles both first and last names. /mob/proc/check_mentioned(var/message) @@ -199,7 +212,7 @@ on_hear_radio(part_a, part_b, speaker_name, track, part_c, message, part_d, part_e) /proc/say_timestamp() - return "\[[stationtime2text()]\]" + return "\[[time2text(world.timeofday, "hh:mm")]\]" /mob/proc/on_hear_radio(part_a, part_b, speaker_name, track, part_c, formatted, part_d, part_e) var/final_message = "[part_b][speaker_name][part_c][formatted][part_d]" diff --git a/code/modules/mob/language/animal.dm b/code/modules/mob/language/animal.dm index 9135babe24..4f01672cc3 100644 --- a/code/modules/mob/language/animal.dm +++ b/code/modules/mob/language/animal.dm @@ -30,4 +30,5 @@ flags = WHITELISTED machine_understands = 0 space_chance = 100 - syllables = list("gyoh", "snoof", "gyoooooOOOooh", "iuuuuh", "gyuuuuh") + syllables = list("gyoh", "snoof", "gyoooooOOOooh", "iuuuuh", "gyuuuuh", "groah", "gyooh", "giouh", "puff", "huff", "ghom", "gyuh", "rrrr", "ghh", "uuah", "groh", "gyaah") + colour = "teppi" diff --git a/code/modules/mob/language/language.dm b/code/modules/mob/language/language.dm index fd4ebb8048..eaa075713e 100644 --- a/code/modules/mob/language/language.dm +++ b/code/modules/mob/language/language.dm @@ -154,7 +154,7 @@ /mob/proc/hear_broadcast(var/datum/language/language, var/mob/speaker, var/speaker_name, var/message) if((language in languages) && language.check_special_condition(src)) - var/msg = "[language.name], [speaker_name] [message]" + var/msg = "[language.name], [speaker_name] [message]" to_chat(src,msg) /mob/new_player/hear_broadcast(var/datum/language/language, var/mob/speaker, var/speaker_name, var/message) @@ -162,9 +162,9 @@ /mob/observer/dead/hear_broadcast(var/datum/language/language, var/mob/speaker, var/speaker_name, var/message) if(speaker.name == speaker_name || antagHUD) - to_chat(src, "[language.name], [speaker_name] ([ghost_follow_link(speaker, src)]) [message]") + to_chat(src, "[language.name], [speaker_name] ([ghost_follow_link(speaker, src)]) [message]") else - to_chat(src, "[language.name], [speaker_name] [message]") + to_chat(src, "[language.name], [speaker_name] [message]") /datum/language/proc/check_special_condition(var/mob/other) return 1 diff --git a/code/modules/mob/language/station.dm b/code/modules/mob/language/station.dm index daa7ac74f0..437ef0936b 100644 --- a/code/modules/mob/language/station.dm +++ b/code/modules/mob/language/station.dm @@ -20,6 +20,7 @@ desc = "A complex language known instinctively by Dionaea, 'spoken' by emitting modulated radio waves. This version uses low frequency waves for slow communication at long ranges." key = "w" machine_understands = 0 + colour = "say_quote_italics" flags = WHITELISTED | HIVEMIND // RESTRICTED would make this completely unavailable from character select /datum/language/unathi diff --git a/code/modules/mob/language/station_vr.dm b/code/modules/mob/language/station_vr.dm index 87160f66c1..e966ddc38f 100644 --- a/code/modules/mob/language/station_vr.dm +++ b/code/modules/mob/language/station_vr.dm @@ -98,7 +98,7 @@ speech_verb = "mars" ask_verb = "mars" exclaim_verb = "MARS" - colour = "changeling" + colour = "shadekin" key = "M" machine_understands = FALSE flags = WHITELISTED | HIVEMIND diff --git a/code/modules/mob/language/synthetic.dm b/code/modules/mob/language/synthetic.dm index e39674e037..941dd84201 100644 --- a/code/modules/mob/language/synthetic.dm +++ b/code/modules/mob/language/synthetic.dm @@ -1,7 +1,7 @@ /datum/language/binary name = "Robot Talk" desc = "Most human stations support free-use communications protocols and routing hubs for synthetic use." - colour = "say_quote" + colour = "say_quote_italics" speech_verb = "states" ask_verb = "queries" exclaim_verb = "declares" @@ -63,7 +63,7 @@ speech_verb = "transmits" ask_verb = "transmits" exclaim_verb = "transmits" - colour = "say_quote" + colour = "say_quote_italics" key = "d" machine_understands = 0 flags = RESTRICTED | HIVEMIND diff --git a/code/modules/mob/living/bot/SLed209bot.dm b/code/modules/mob/living/bot/SLed209bot.dm index f016bc55f2..a32a88973e 100644 --- a/code/modules/mob/living/bot/SLed209bot.dm +++ b/code/modules/mob/living/bot/SLed209bot.dm @@ -99,8 +99,8 @@ icon_state = "ed209_shell" if(3) - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) build_step++ name = "shielded frame assembly" @@ -150,7 +150,7 @@ qdel(W) if(8) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 100, 1) var/turf/T = get_turf(user) to_chat(user, "Now attaching the gun to the frame...") diff --git a/code/modules/mob/living/bot/bot.dm b/code/modules/mob/living/bot/bot.dm index fd69d9ec69..e9ab9b665c 100644 --- a/code/modules/mob/living/bot/bot.dm +++ b/code/modules/mob/living/bot/bot.dm @@ -121,7 +121,7 @@ else to_chat(user, "Access denied.") return - else if(O.is_screwdriver()) + else if(O.has_tool_quality(TOOL_SCREWDRIVER)) if(!locked) open = !open to_chat(user, "Maintenance panel is now [open ? "opened" : "closed"].") @@ -129,7 +129,7 @@ else to_chat(user, "You need to unlock the controls first.") return - else if(istype(O, /obj/item/weapon/weldingtool)) + else if(O.has_tool_quality(TOOL_WELDER)) if(health < getMaxHealth()) if(open) if(getBruteLoss() < 10) @@ -161,7 +161,7 @@ to_chat(user, span_notice("You slot the card into \the [initial(src.name)].")) else to_chat(user, span_notice("You must open the panel first!")) - else if(O.is_crowbar()) + else if(O.has_tool_quality(TOOL_CROWBAR)) if(open && paicard) to_chat(user, span_notice("You are attempting to remove the pAI..")) if(do_after(user,10 * O.toolspeed)) @@ -558,7 +558,7 @@ /mob/living/bot/Login() no_vore = FALSE // ROBOT VORE init_vore() // ROBOT VORE - verbs |= /mob/living/proc/insidePanel + verbs |= /mob/proc/insidePanel return ..() @@ -566,7 +566,7 @@ no_vore = TRUE // ROBOT VORE release_vore_contents() init_vore() // ROBOT VORE - verbs -= /mob/living/proc/insidePanel + verbs -= /mob/proc/insidePanel no_vore = TRUE devourable = FALSE feeding = FALSE diff --git a/code/modules/mob/living/bot/ed209bot.dm b/code/modules/mob/living/bot/ed209bot.dm index f699191a66..bca6624512 100644 --- a/code/modules/mob/living/bot/ed209bot.dm +++ b/code/modules/mob/living/bot/ed209bot.dm @@ -119,8 +119,8 @@ icon_state = "ed209_shell" if(3) - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) build_step++ name = "shielded frame assembly" @@ -188,7 +188,7 @@ qdel(W) if(8) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 100, 1) var/turf/T = get_turf(user) to_chat(user, "Now attaching the gun to the frame...") diff --git a/code/modules/mob/living/bot/edCLNbot.dm b/code/modules/mob/living/bot/edCLNbot.dm index ffdcdb1f44..3a8265f352 100644 --- a/code/modules/mob/living/bot/edCLNbot.dm +++ b/code/modules/mob/living/bot/edCLNbot.dm @@ -153,8 +153,8 @@ icon_state = "edCLN_bucket" if(3) - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) build_step++ name = "bucketed frame assembly" @@ -194,7 +194,7 @@ qdel(W) if(7) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 100, 1) var/turf/T = get_turf(user) to_chat(user, "Attatching the mop to the frame...") diff --git a/code/modules/mob/living/bot/secbot.dm b/code/modules/mob/living/bot/secbot.dm index a9854f0148..a0f485df78 100644 --- a/code/modules/mob/living/bot/secbot.dm +++ b/code/modules/mob/living/bot/secbot.dm @@ -436,8 +436,8 @@ /obj/item/weapon/secbot_assembly/attackby(var/obj/item/W, var/mob/user) ..() - if(istype(W, /obj/item/weapon/weldingtool) && !build_step) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER) && !build_step) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.remove_fuel(0, user)) build_step = 1 add_overlay("hs_hole") diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index c0378dde06..a2962591aa 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -508,7 +508,7 @@ if (R.fields["id"] == E.fields["id"]) if(hasHUD(usr,"medical")) var/list/medical_hud_text = list() - medical_hud_text += "Name: [R.fields["name"]] Blood Type: [R.fields["b_type"]]" + medical_hud_text += "Name: [R.fields["name"]] Blood Type: [R.fields["b_type"]] Blood Basis: [R.fields["blood_reagent"]]" medical_hud_text += "Species: [R.fields["species"]]" medical_hud_text += "DNA: [R.fields["b_dna"]]" medical_hud_text += "Minor Disabilities: [R.fields["mi_dis"]]" diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 47089619ef..fec724dae2 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -42,6 +42,7 @@ var/virus_immune var/short_sighted // Permanent weldervision. var/blood_name = "blood" // Name for the species' blood. + var/blood_reagents = "iron" // Reagent(s) that restore lost blood. goes by reagent IDs. var/blood_volume = 560 // Initial blood volume. var/bloodloss_rate = 1 // Multiplier for how fast a species bleeds out. Higher = Faster var/blood_level_safe = 0.85 //"Safe" blood level; above this, you're OK diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans.dm b/code/modules/mob/living/carbon/human/species/station/prometheans.dm index 1f2bd08a13..b3c1a86697 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans.dm @@ -36,6 +36,7 @@ var/datum/species/shapeshifter/promethean/prometheans assisted_langs = list(LANGUAGE_ROOTGLOBAL, LANGUAGE_VOX) // Prometheans are weird, let's just assume they can use basically any language. blood_name = "gelatinous ooze" + blood_reagents = "slimejelly" breath_type = null poison_type = null diff --git a/code/modules/mob/living/carbon/human/species/station/station.dm b/code/modules/mob/living/carbon/human/species/station/station.dm index 6b324d5144..92aa7c7783 100644 --- a/code/modules/mob/living/carbon/human/species/station/station.dm +++ b/code/modules/mob/living/carbon/human/species/station/station.dm @@ -314,6 +314,7 @@ flash_mod = 1.2 chemOD_mod = 0.9 + blood_reagents = "copper" bloodloss_rate = 1.5 ambiguous_genders = TRUE diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm index 04bdce0b1f..d938025485 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm @@ -1460,3 +1460,72 @@ hitsound = 'sound/vore/sunesound/pred/schlorp.ogg' hitsound_wall = 'sound/vore/sunesound/pred/schlorp.ogg' zaptype = /obj/item/projectile/beam/appendage + +/mob/living/proc/target_lunge() //The leaper leap, but usable as an ability + set name = "Lunge At Prey" + set category = "Abilities" + set desc = "Dive atop your prey and gobble them up!" + + var/leap_warmup = 1 SECOND //Easy to modify + var/leap_sound = 'sound/weapons/spiderlunge.ogg' + + if(stat || paralysis || weakened || stunned || world.time < last_special) //No tongue flicking while stunned. + to_chat(src, "You can't do that in your current state.") + return + + last_special = world.time + 10 //Anti-spam. + + if (!istype(src, /mob/living)) + to_chat(src, "It doesn't work that way.") + return + + else + var/list/targets = list() //IF IT IS NOT BROKEN. DO NOT FIX IT. + + for(var/mob/living/L in range(5, src)) + if(!istype(L, /mob/living)) //Don't eat anything that isn't mob/living. Failsafe. + continue + if(L == src) //no eating yourself. 1984. + continue + if(L.devourable && L.throw_vore && (L.can_be_drop_pred || L.can_be_drop_prey)) + targets += L + + if(!(targets.len)) + to_chat(src, "No eligible targets found.") + return + + var/mob/living/target = tgui_input_list(src, "Please select a target.", "Victim", targets) + + if(!target) + return + + if(!istype(target, /mob/living)) //Safety. + to_chat(src, "You need to select a living target!") + return + + if (get_dist(src,target) >= 6) + to_chat(src, "You need to be closer to do that.") + return + + visible_message(span("warning","\The [src] rears back, ready to lunge!")) + to_chat(target, span("danger","\The [src] focuses on you!")) + // Telegraph, since getting stunned suddenly feels bad. + do_windup_animation(target, leap_warmup) + sleep(leap_warmup) // For the telegraphing. + + if(target.z != z) //Make sure you haven't disappeared to somewhere we can't go + return FALSE + + // Do the actual leap. + status_flags |= LEAPING // Lets us pass over everything. + visible_message(span("critical","\The [src] leaps at \the [target]!")) + throw_at(get_step(target, get_turf(src)), 7, 1, src) + playsound(src, leap_sound, 75, 1) + + sleep(5) // For the throw to complete. + + if(status_flags & LEAPING) + status_flags &= ~LEAPING // Revert special passage ability. + + if(Adjacent(target)) //We leapt at them but we didn't manage to hit them, let's see if we're next to them + target.Weaken(2) //get knocked down, idiot diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm index 368bc5092f..d153921823 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm @@ -201,6 +201,8 @@ flesh_color = "#AFA59E" base_color = "#333333" blood_color = "#240bc4" + blood_reagents = "copper" + reagent_tag = IS_ZORREN color_mult = 1 genders = list(MALE, FEMALE, PLURAL, NEUTER) diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm index 291168c582..8d7da6286a 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm @@ -74,7 +74,7 @@ return /obj/structure/bed/double/weaversilk_nest/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench() || istype(W,/obj/item/stack) || W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WRENCH) || istype(W,/obj/item/stack) || W.has_tool_quality(TOOL_WIRECUTTER)) return ..() diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index b1fbafc52c..74eed4ebfc 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -85,18 +85,19 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() #define EARS_LAYER 23 //Both ear-slot items (combined image) #define EYES_LAYER 24 //Mob's eyes (used for glowing eyes) #define FACEMASK_LAYER 25 //Mask-slot item -#define HEAD_LAYER 26 //Head-slot item -#define HANDCUFF_LAYER 27 //Handcuffs, if the human is handcuffed, in a secret inv slot -#define LEGCUFF_LAYER 28 //Same as handcuffs, for legcuffs -#define L_HAND_LAYER 29 //Left-hand item -#define R_HAND_LAYER 30 //Right-hand item -#define WING_LAYER 31 //Wings or protrusions over the suit. -#define TAIL_UPPER_LAYER_ALT 32 //Modified tail-sprite layer. Tend to be larger. -#define MODIFIER_EFFECTS_LAYER 33 //Effects drawn by modifiers -#define FIRE_LAYER 34 //'Mob on fire' overlay layer -#define MOB_WATER_LAYER 35 //'Mob submerged' overlay layer -#define TARGETED_LAYER 36 //'Aimed at' overlay layer -#define TOTAL_LAYERS 36 //VOREStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. +#define GLASSES_LAYER_ALT 26 //So some glasses can appear on top of hair and things +#define HEAD_LAYER 27 //Head-slot item +#define HANDCUFF_LAYER 28 //Handcuffs, if the human is handcuffed, in a secret inv slot +#define LEGCUFF_LAYER 29 //Same as handcuffs, for legcuffs +#define L_HAND_LAYER 30 //Left-hand item +#define R_HAND_LAYER 31 //Right-hand item +#define WING_LAYER 32 //Wings or protrusions over the suit. +#define TAIL_UPPER_LAYER_ALT 33 //Modified tail-sprite layer. Tend to be larger. +#define MODIFIER_EFFECTS_LAYER 34 //Effects drawn by modifiers +#define FIRE_LAYER 35 //'Mob on fire' overlay layer +#define MOB_WATER_LAYER 36 //'Mob submerged' overlay layer +#define TARGETED_LAYER 37 //'Aimed at' overlay layer +#define TOTAL_LAYERS 37 //VOREStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. ////////////////////////////////// /mob/living/carbon/human @@ -740,13 +741,20 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() return remove_layer(GLASSES_LAYER) + remove_layer(GLASSES_LAYER_ALT) if(!glasses) return //Not wearing glasses, no need to update anything. - overlays_standing[GLASSES_LAYER] = glasses.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_gloves_str, default_icon = INV_EYES_DEF_ICON, default_layer = GLASSES_LAYER) + var/glasses_layer = GLASSES_LAYER + if(istype(glasses, /obj/item/clothing/glasses)) + var/obj/item/clothing/glasses/our_glasses = glasses + if(our_glasses.glasses_layer_above) + glasses_layer = GLASSES_LAYER_ALT - apply_layer(GLASSES_LAYER) + overlays_standing[glasses_layer] = glasses.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_gloves_str, default_icon = INV_EYES_DEF_ICON, default_layer = glasses_layer) + + apply_layer(glasses_layer) /mob/living/carbon/human/update_inv_ears() if(QDESTROYING(src)) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 84eaa6cd43..25ce01c34d 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -368,7 +368,8 @@ var/list/channel_to_radio_key = new if(M && src) //If we still exist, when the spawn processes //VOREStation Add - Ghosts don't hear whispers - if(whispering && !is_preference_enabled(/datum/client_preference/whisubtle_vis) && isobserver(M) && !M.client?.holder) + if(whispering && isobserver(M) && (!M.is_preference_enabled(/datum/client_preference/ghost_see_whisubtle) || \ + (!is_preference_enabled(/datum/client_preference/whisubtle_vis) && !M.client?.holder))) M.show_message("[src.name] [w_not_heard].", 2) return //VOREStation Add End diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index ee77cbfe00..ea9cdc3579 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -763,7 +763,7 @@ var/list/ai_verbs_default = list( var/obj/item/device/aicard/card = W card.grab_ai(src, user) - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(user == deployed_shell) to_chat(user, "The shell's subsystems resist your efforts to tamper with your bolts.") return diff --git a/code/modules/mob/living/silicon/pai/pai_vr.dm b/code/modules/mob/living/silicon/pai/pai_vr.dm index e692cc107b..86d9d83334 100644 --- a/code/modules/mob/living/silicon/pai/pai_vr.dm +++ b/code/modules/mob/living/silicon/pai/pai_vr.dm @@ -513,7 +513,8 @@ if (istype(G, /mob/new_player)) continue else if(isobserver(G) && G.is_preference_enabled(/datum/client_preference/ghost_ears)) - if(is_preference_enabled(/datum/client_preference/whisubtle_vis) || G.client.holder) + if((is_preference_enabled(/datum/client_preference/whisubtle_vis) || G.client.holder) && \ + G.is_preference_enabled(/datum/client_preference/ghost_see_whisubtle)) to_chat(G, "[src.name]'s screen prints, \"[message]\"") /mob/living/silicon/pai/proc/touch_window(soft_name) //This lets us touch TGUI procs and windows that may be nested behind other TGUI procs and windows diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm index 7cfa78b731..fadd1fbf13 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone.dm @@ -231,7 +231,7 @@ var/list/mob_hat_cache = list() to_chat(user, "\The [src] is not compatible with \the [W].") return - else if (W.is_crowbar()) + else if (W.has_tool_quality(TOOL_CROWBAR)) to_chat(user, "\The [src] is hermetically sealed. You can't open the case.") return diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index ffd727ecb7..52d676081d 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -546,16 +546,16 @@ M.install(src, user) return - if (istype(W, /obj/item/weapon/weldingtool) && user.a_intent != I_HURT) - if (src == user) + if(W.has_tool_quality(TOOL_WELDER) && user.a_intent != I_HURT) + if(src == user) to_chat(user, "You lack the reach to be able to repair yourself.") return - if (!getBruteLoss()) + if(!getBruteLoss()) to_chat(user, "Nothing to fix here!") return - var/obj/item/weapon/weldingtool/WT = W - if (WT.remove_fuel(0)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() + if(WT.remove_fuel(0)) user.setClickCooldown(user.get_attack_speed(WT)) adjustBruteLoss(-30) updatehealth() @@ -567,7 +567,7 @@ return else if(istype(W, /obj/item/stack/cable_coil) && (wiresexposed || istype(src,/mob/living/silicon/robot/drone))) - if (!getFireLoss()) + if(!getFireLoss()) to_chat(user, "Nothing to fix here!") return var/obj/item/stack/cable_coil/coil = W @@ -578,7 +578,7 @@ for(var/mob/O in viewers(user, null)) O.show_message("[user] has fixed some of the burnt wires on [src]!", 1) - else if (W.is_crowbar() && user.a_intent != I_HURT) // crowbar means open or close the cover + else if(W.has_tool_quality(TOOL_CROWBAR) && user.a_intent != I_HURT) // crowbar means open or close the cover if(opened) if(cell) to_chat(user, "You close the cover.") @@ -655,26 +655,26 @@ C.brute_damage = 0 C.electronics_damage = 0 - else if (W.is_wirecutter() || istype(W, /obj/item/device/multitool)) + else if (W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/device/multitool)) if (wiresexposed) wires.Interact(user) else to_chat(user, "You can't reach the wiring.") - else if(W.is_screwdriver() && opened && !cell) // haxing + else if(W.has_tool_quality(TOOL_SCREWDRIVER) && opened && !cell) // haxing wiresexposed = !wiresexposed to_chat(user, "The wires have been [wiresexposed ? "exposed" : "unexposed"]") playsound(src, W.usesound, 50, 1) update_icon() - else if(W.is_screwdriver() && opened && cell) // radio + else if(W.has_tool_quality(TOOL_SCREWDRIVER) && opened && cell) // radio if(radio) radio.attackby(W,user)//Push it to the radio to let it handle everything else to_chat(user, "Unable to locate a radio.") update_icon() - else if(W.is_wrench() && opened && !cell) + else if(W.has_tool_quality(TOOL_WRENCH) && opened && !cell) if(bolt) to_chat(user,"You begin removing \the [bolt].") @@ -884,35 +884,57 @@ old_x = sprite_datum.pixel_x if(stat == CONSCIOUS) - var/show_belly = FALSE - if(sprite_datum.has_vore_belly_sprites) + var/belly_size = 0 + if(sprite_datum.has_vore_belly_sprites && vore_selected.belly_overall_mult != 0) if(vore_selected.silicon_belly_overlay_preference == "Sleeper") if(sleeper_state) - show_belly = TRUE - else if(vore_selected.silicon_belly_overlay_preference == "Vorebelly") - if(LAZYLEN(vore_selected.contents) >= vore_selected.visible_belly_minimum_prey) - if(vore_selected.overlay_min_prey_size == 0) //if min size is 0, we dont check for size - show_belly = TRUE - else - if(vore_selected.override_min_prey_size && (LAZYLEN(vore_selected.contents) > vore_selected.override_min_prey_num)) - show_belly = TRUE //Override regardless of content size + belly_size = sprite_datum.max_belly_size + else if(vore_selected.silicon_belly_overlay_preference == "Vorebelly" || vore_selected.silicon_belly_overlay_preference == "Both") + if(sleeper_state) + belly_size += 1 + if(LAZYLEN(vore_selected.contents) > 0) + for(var/borgfood in vore_selected.contents) //"inspired" (kinda copied) from Chompstation's belly fullness system's procs + if(istype(borgfood, /mob/living)) + if(vore_selected.belly_item_mult <= 0) //If mobs dont contribute, dont calculate further + continue + var/mob/living/prey = borgfood //typecast to living + belly_size += (prey.size_multiplier / size_multiplier) / vore_selected.belly_mob_mult //Smaller prey are less filling to larger bellies + else if(istype(borgfood, /obj/item)) + if(vore_selected.belly_item_mult <= 0) //If items dont contribute, dont calculate further + continue + var/obj/item/junkfood = borgfood //typecast to item + var/fullness_to_add = 0 + switch(junkfood.w_class) + if(ITEMSIZE_TINY) + fullness_to_add = ITEMSIZE_COST_TINY + if(ITEMSIZE_SMALL) + fullness_to_add = ITEMSIZE_COST_SMALL + if(ITEMSIZE_NORMAL) + fullness_to_add = ITEMSIZE_COST_NORMAL + if(ITEMSIZE_LARGE) + fullness_to_add = ITEMSIZE_COST_LARGE + if(ITEMSIZE_HUGE) + fullness_to_add = ITEMSIZE_COST_HUGE + else + fullness_to_add = ITEMSIZE_COST_NO_CONTAINER + belly_size += (fullness_to_add / 32) //* vore_selected.overlay_item_multiplier //Enable this later when vorepanel is reworked. else - for(var/content in vore_selected.contents) //If ANY in belly are big enough, we set to true - if(!istype(content, /mob/living)) continue - var/mob/living/prey = content - if(prey.size_multiplier >= vore_selected.overlay_min_prey_size) - show_belly = TRUE - break - if(show_belly) - add_overlay(sprite_datum.get_belly_overlay(src)) + belly_size += 1 //if it's not a person, nor an item... lets just go with 1 + + belly_size *= vore_selected.belly_overall_mult //Enable this after vore panel rework + belly_size = round(belly_size, 1) + belly_size = clamp(belly_size, 0, sprite_datum.max_belly_size) //Value from 0 to however many bellysizes the borg has + + if(belly_size > 0) //Borgs probably only have 1 belly size. but here's support for larger ones if that changes. + if(resting && sprite_datum.has_vore_belly_resting_sprites) + add_overlay(sprite_datum.get_belly_resting_overlay(src, belly_size)) + else + add_overlay(sprite_datum.get_belly_overlay(src, belly_size)) sprite_datum.handle_extra_icon_updates(src) // Various equipment-based sprites go here. if(resting && sprite_datum.has_rest_sprites) - cut_overlays() // Hide that gut for it has no ground sprite yo. icon_state = sprite_datum.get_rest_sprite(src) - if(show_belly && sprite_datum.has_vore_belly_sprites && sprite_datum.has_vore_belly_resting_sprites) // Or DOES IT? - add_overlay(sprite_datum.get_belly_resting_overlay(src)) if(sprite_datum.has_eye_sprites) if(!shell || deployed) // Shell borgs that are not deployed will have no eyes. diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station.dm b/code/modules/mob/living/silicon/robot/robot_modules/station.dm index 666de99605..d75fc6b642 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station.dm @@ -79,7 +79,7 @@ var/global/list/robot_modules = list( if(!R.client) R.icon_selected = FALSE // It wasnt a player selecting icon? Let them do it later! - create_equipment() + create_equipment(R) for(var/obj/item/I in modules) I.canremove = FALSE @@ -641,9 +641,6 @@ var/global/list/robot_modules = list( src.emag += new /obj/item/weapon/dogborg/pounce(src) //Pounce /obj/item/weapon/robot_module/robot/clerical/butler/respawn_consumable(var/mob/living/silicon/robot/R, var/amount) - var/obj/item/weapon/reagent_containers/food/condiment/enzyme/E = locate() in src.modules - E.reagents.add_reagent("enzyme", 2 * amount) - var/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/PB = locate() in src.emag if(PB) PB.reagents.add_reagent("beer2", 2 * amount) @@ -708,8 +705,8 @@ var/global/list/robot_modules = list( src.modules += new /obj/item/weapon/tool/wrench/cyborg(src) src.modules += new /obj/item/weapon/tool/wirecutters/cyborg(src) src.modules += new /obj/item/device/multitool(src) - src.modules += new /obj/item/weapon/surgical/scalpel/cyborg(src) - src.modules += new /obj/item/weapon/surgical/circular_saw/cyborg(src) + src.modules += new /obj/item/weapon/surgical/hemostat/cyborg(src) //Synth repair + src.modules += new /obj/item/weapon/surgical/surgicaldrill/cyborg(src) //NIF repair src.modules += new /obj/item/weapon/reagent_containers/syringe(src) src.modules += new /obj/item/weapon/reagent_containers/glass/beaker/large(src) src.modules += new /obj/item/weapon/storage/part_replacer(src) diff --git a/code/modules/mob/living/silicon/robot/sprites/_sprite_datum.dm b/code/modules/mob/living/silicon/robot/sprites/_sprite_datum.dm index 5613f4afd1..53e2a41242 100644 --- a/code/modules/mob/living/silicon/robot/sprites/_sprite_datum.dm +++ b/code/modules/mob/living/silicon/robot/sprites/_sprite_datum.dm @@ -12,6 +12,8 @@ var/has_custom_open_sprites = FALSE var/has_vore_belly_sprites = FALSE var/has_vore_belly_resting_sprites = FALSE + var/has_sleeper_light_indicator = FALSE //Moved here because there's no reason lights should be limited to just medical borgs. Or redefined every time they ARE used. + var/max_belly_size = 1 //If larger bellies are made, set this to the value of the largest size var/has_rest_sprites = FALSE var/list/rest_sprite_options var/has_dead_sprite = FALSE @@ -28,11 +30,25 @@ /datum/robot_sprite/proc/handle_extra_icon_updates(var/mob/living/silicon/robot/ourborg) return -/datum/robot_sprite/proc/get_belly_overlay(var/mob/living/silicon/robot/ourborg) - return "[sprite_icon_state]-sleeper" +/datum/robot_sprite/proc/get_belly_overlay(var/mob/living/silicon/robot/ourborg, var/size = 1) + //Size + if(has_sleeper_light_indicator) + var/sleeperColor = "g" + if(ourborg.sleeper_state == 1) // Is our belly safe, or gurgling cuties? + sleeperColor = "r" + return "[sprite_icon_state]-sleeper-[size]-[sleeperColor]" + return "[sprite_icon_state]-sleeper-[size]" -/datum/robot_sprite/proc/get_belly_resting_overlay(var/mob/living/silicon/robot/ourborg) - return +/datum/robot_sprite/proc/get_belly_resting_overlay(var/mob/living/silicon/robot/ourborg, var/size = 1) + if(!(ourborg.rest_style in rest_sprite_options)) + ourborg.rest_style = "Default" + switch(ourborg.rest_style) + if("Sit") + return "[get_belly_overlay(ourborg, size)]-sit" + if("Bellyup") + return "[get_belly_overlay(ourborg, size)]-bellyup" + else + return "[get_belly_overlay(ourborg, size)]-rest" /datum/robot_sprite/proc/get_eyes_overlay(var/mob/living/silicon/robot/ourborg) if(!(ourborg.resting && has_rest_sprites)) @@ -47,7 +63,15 @@ return /datum/robot_sprite/proc/get_rest_sprite(var/mob/living/silicon/robot/ourborg) - return + if(!(ourborg.rest_style in rest_sprite_options)) + ourborg.rest_style = "Default" + switch(ourborg.rest_style) + if("Sit") + return "[sprite_icon_state]-sit" + if("Bellyup") + return "[sprite_icon_state]-bellyup" + else + return "[sprite_icon_state]-rest" /datum/robot_sprite/proc/get_dead_sprite(var/mob/living/silicon/robot/ourborg) return "[sprite_icon_state]-wreck" @@ -88,7 +112,7 @@ has_dead_sprite_overlay = TRUE has_custom_equipment_sprites = TRUE pixel_x = -16 - +/* //Does not need to be dogborg-only, letting all borgs use these -Reo /datum/robot_sprite/dogborg/get_rest_sprite(var/mob/living/silicon/robot/ourborg) if(!(ourborg.rest_style in rest_sprite_options)) ourborg.rest_style = "Default" @@ -102,7 +126,7 @@ /datum/robot_sprite/dogborg/get_belly_overlay(var/mob/living/silicon/robot/ourborg) return "[sprite_icon_state]-sleeper" - +*/ /datum/robot_sprite/dogborg/do_equipment_glamour(var/obj/item/weapon/robot_module/module) if(!has_custom_equipment_sprites) return @@ -130,4 +154,4 @@ module_type = "Default" sprite_icon = 'icons/mob/robot/default.dmi' sprite_icon_state = "default" - default_sprite = TRUE \ No newline at end of file + default_sprite = TRUE diff --git a/code/modules/mob/living/silicon/robot/sprites/medical.dm b/code/modules/mob/living/silicon/robot/sprites/medical.dm index 45fe8ff453..3030d828f8 100644 --- a/code/modules/mob/living/silicon/robot/sprites/medical.dm +++ b/code/modules/mob/living/silicon/robot/sprites/medical.dm @@ -189,15 +189,14 @@ module_type = "Surgeon" sprite_icon = 'icons/mob/robot/surgical_wide.dmi' - var/has_sleeper_light_indicator = FALSE - +/* //Handled by the normal belly code now. /datum/robot_sprite/dogborg/surgical/get_belly_overlay(var/mob/living/silicon/robot/ourborg) if(has_sleeper_light_indicator) if(ourborg.sleeper_state == 2 && !(ourborg.vore_selected?.silicon_belly_overlay_preference == "Vorebelly")) return "[sprite_icon_state]-sleeper_g" else return "[sprite_icon_state]-sleeper_r" else return ..() - +*/ /datum/robot_sprite/dogborg/surgical/do_equipment_glamour(var/obj/item/weapon/robot_module/module) if(!has_custom_equipment_sprites) return @@ -314,15 +313,14 @@ module_type = "Crisis" sprite_icon = 'icons/mob/robot/crisis_wide.dmi' - var/has_sleeper_light_indicator = FALSE - +/* //Handled by the normal belly code now. /datum/robot_sprite/dogborg/crisis/get_belly_overlay(var/mob/living/silicon/robot/ourborg) if(has_sleeper_light_indicator) if(ourborg.sleeper_state == 2 && !(ourborg.vore_selected?.silicon_belly_overlay_preference == "Vorebelly")) return "[sprite_icon_state]-sleeper_g" else return "[sprite_icon_state]-sleeper_r" else return ..() - +*/ /datum/robot_sprite/dogborg/crisis/do_equipment_glamour(var/obj/item/weapon/robot_module/module) if(!has_custom_equipment_sprites) return diff --git a/code/modules/mob/living/silicon/robot/sprites/syndicate.dm b/code/modules/mob/living/silicon/robot/sprites/syndicate.dm index 2ed008e73e..fb480ce7c3 100644 --- a/code/modules/mob/living/silicon/robot/sprites/syndicate.dm +++ b/code/modules/mob/living/silicon/robot/sprites/syndicate.dm @@ -35,14 +35,26 @@ sprite_icon = 'icons/mob/robot/mechanist.dmi' sprite_hud_icon_state = "malf" -/datum/robot_sprite/protector/spider +/datum/robot_sprite/mechanist/spider name = "XI-GUS" sprite_icon_state = "spider" -/datum/robot_sprite/protector/sleek +/datum/robot_sprite/mechanist/sleek name = "WTOperator" sprite_icon_state = "sleek" +// Wide/dogborg sprites + +/datum/robot_sprite/dogborg/mechanist + module_type = "Mechanist" + sprite_icon = 'icons/mob/robot/mechanist_wide.dmi' + +/datum/robot_sprite/dogborg/mechanist/pupdozer + name = "Pupdozer" + sprite_icon_state = "pupdozer" + has_eye_light_sprites = TRUE + rest_sprite_options = list("Default") + // Combat Medic @@ -63,15 +75,14 @@ module_type = "Combat Medic" sprite_icon = 'icons/mob/robot/combat_medic_wide.dmi' - var/has_sleeper_light_indicator = FALSE - +/* //Handled by the normal belly code now. /datum/robot_sprite/dogborg/crisis/get_belly_overlay(var/mob/living/silicon/robot/ourborg) if(has_sleeper_light_indicator) if(ourborg.sleeper_state == 2 && !(ourborg.vore_selected?.silicon_belly_overlay_preference == "Vorebelly")) return "[sprite_icon_state]-sleeper_g" else return "[sprite_icon_state]-sleeper_r" else return ..() - +*/ /datum/robot_sprite/dogborg/combat_medic/do_equipment_glamour(var/obj/item/weapon/robot_module/module) if(!has_custom_equipment_sprites) return @@ -87,7 +98,7 @@ SP.attack_verb = list("batted", "pawed", "bopped", "whapped") /datum/robot_sprite/dogborg/combat_medic/vale - name = "Stray" + name = "Hound V2" sprite_icon_state = "vale" has_eye_light_sprites = TRUE - has_sleeper_light_indicator = TRUE \ No newline at end of file + has_sleeper_light_indicator = TRUE diff --git a/code/modules/mob/living/silicon/robot/subtypes/syndicate.dm b/code/modules/mob/living/silicon/robot/subtypes/syndicate.dm index 630e0e7cd5..96dffd26e7 100644 --- a/code/modules/mob/living/silicon/robot/subtypes/syndicate.dm +++ b/code/modules/mob/living/silicon/robot/subtypes/syndicate.dm @@ -1,7 +1,6 @@ /mob/living/silicon/robot/syndicate lawupdate = 0 scrambledcodes = 1 - icon_state = "syndie_bloodhound" modtype = "Syndicate" lawchannel = "State" braintype = "Drone" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm index 7ef5971f0f..d203d12949 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm @@ -131,6 +131,7 @@ retaliate = TRUE speak_chance = 0.5 wander = TRUE + belly_attack = FALSE /mob/living/simple_mob/vore/alienanimals/catslug/Initialize() . = ..() @@ -954,6 +955,77 @@ /datum/say_list/catslug/custom/pilotslug speak = list("In the pipe, five my five.","Kick the tires and light the fires!","Bogeys on my tail!","GOOSE!","I'm really good at the stick.","I'm not doing nothing.","Heh.","Can you keep up?","Can't keep the sky from me.") +//Royal slug + +/mob/living/simple_mob/vore/alienanimals/catslug/custom/royalslug + name = "Ruler Purrton" + desc = "A golden-furred noodley bodied creature with thin arms and legs, and gloomy dark eyes. This one is adorned with a crown and red cloak, very fancy." + tt_desc = "Mollusca Felis Royallis" + icon_state = "catslugking" + icon_living = "catslugking" + icon_rest = "catslugking_rest" + icon_dead = "catslugking_dead" + catalogue_data = list(/datum/category_item/catalogue/fauna/catslug/custom/royalslug) + say_list_type = /datum/say_list/catslug/custom/royalslug + +/datum/category_item/catalogue/fauna/catslug/custom/royalslug + name = "Alien Wildlife - Catslug - Ruler Purrton" + desc = "Found in a castle beyond the redgate, Ruler Purrton\ + is a catslug who spends their days presiding over this low \ + technology town, living a life of luxury. Always seen with \ + their trademark crown and cloak, this litter critter seems \ + to just exude raw confidence and superiority. \ + \ + The Catslug is an omnivorous terrestrial creature.\ + Exhibiting properties of both a cat and a slug (hence its name)\ + it moves somewhat awkwardly. However, the unique qualities of\ + its body make it exceedingly flexible and smooth, allowing it to\ + wiggle into and move effectively in even extremely tight spaces.\ + Additionally, it has surprisingly capable hands, and moves quite\ + well on two legs or four. Caution is advised when interacting\ + with these creatures, they are quite intelligent, and proficient\ + tool users." + value = CATALOGUER_REWARD_TRIVIAL + +/datum/say_list/catslug/custom/royalslug + speak = list("Let them eat cake. Lots and lots of cake.", "Fetch my good cloak.", "I myself prefer my ancient eggs for breakfast!", "Have you come to pay tribute?", "How dare you intrude?", "Bring me the finest of fine finery.", "HARK!", "With great power comes great dinner.") + +//crypt slug + +/mob/living/simple_mob/vore/alienanimals/catslug/custom/cryptslug + name = "Keeper Sluguloth" + desc = "A dark-furred noodley bodied creature with thin arms and legs, and gloomy dark eyes. This one is adorned with a dark cloak that obscures most of it's body." + tt_desc = "Mollusca Felis Necrosis" + icon_state = "cryptslug" + icon_living = "cryptslug" + icon_rest = "cryptslug_rest" + icon_dead = "cryptslug_dead" + catalogue_data = list(/datum/category_item/catalogue/fauna/catslug/custom/cryptslug) + say_list_type = /datum/say_list/catslug/custom/cryptslug + +/datum/category_item/catalogue/fauna/catslug/custom/cryptslug + name = "Alien Wildlife - Catslug - Keeper Sluguloth" + desc = "Found in a deep beneath a town beyond the redgate, Sluguloth\ + is a catslug who spends their days lurking within dark dungeons \ + alongside monstrous beings of all sorts. Always seen within \ + their dark cloak, obscuring them, this litter critter seems \ + to just exude pure menance and up-to-no-goodness. \ + \ + The Catslug is an omnivorous terrestrial creature.\ + Exhibiting properties of both a cat and a slug (hence its name)\ + it moves somewhat awkwardly. However, the unique qualities of\ + its body make it exceedingly flexible and smooth, allowing it to\ + wiggle into and move effectively in even extremely tight spaces.\ + Additionally, it has surprisingly capable hands, and moves quite\ + well on two legs or four. Caution is advised when interacting\ + with these creatures, they are quite intelligent, and proficient\ + tool users." + value = CATALOGUER_REWARD_TRIVIAL + +/datum/say_list/catslug/custom/cryptslug + speak = list("I have a lot of nasty friends.", "Do not test me.", "I shall rise again!", "How dare you step foot in my domain?", "Dare you indluge in dark desires?", "I am become death, one day.", "Foul creature!", "I used to think my life was a tragedy, but now I realize it's kind of okay actually.") + + //============================= //Admin-spawn only catslugs end //============================= diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm index e7e0e9ecca..54b63aef97 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/stardog.dm @@ -500,7 +500,8 @@ for(var/mob/M as anything in vis_mobs) if(isnewplayer(M)) continue - if(isobserver(M) && !L.is_preference_enabled(/datum/client_preference/whisubtle_vis) && !M.client?.holder) + if(isobserver(M) && (!M.is_preference_enabled(/datum/client_preference/ghost_see_whisubtle) || \ + !L.is_preference_enabled(/datum/client_preference/whisubtle_vis) && !M.client?.holder)) spawn(0) M.show_message(undisplayed_message, 2) else @@ -1171,7 +1172,8 @@ for(var/mob/M as anything in vis_mobs) if(isnewplayer(M)) continue - if(isobserver(M) && !L.is_preference_enabled(/datum/client_preference/whisubtle_vis) && !M.client?.holder) + if(isobserver(M) && (!M.is_preference_enabled(/datum/client_preference/ghost_see_whisubtle) || \ + !L.is_preference_enabled(/datum/client_preference/whisubtle_vis) && !M.client?.holder)) spawn(0) M.show_message(undisplayed_message, 2) else diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm index 485914fa6b..0735d440ba 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm @@ -852,17 +852,17 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? affinity[person.real_name] = -100 //Don't hold a grudge though. /datum/say_list/teppi - speak = list("Gyooh~", "Gyuuuh!", "Gyuh?", "Gyaah...", "Iuuuuhh.", "Uoounh!", "GyoooOOOOoooh!", "Gyoh~", "Gyouh~") + speak = list("Gyooh~", "Gyuuuh!", "Gyuh?", "Gyaah...", "Iuuuuhh.", "Uoounh!", "GyoooOOOOoooh!", "Gyoh~", "Gyouh~","Gyuuuuh...", "Rrrr...", "Uuah~", "Groh!") emote_hear = list("puffs", "huffs", "rumbles", "gyoohs","pants", "snoofs") emote_see = list("sways its tail", "stretches", "yawns", "turns their head") - say_maybe_target = list("Gyuuh?") + say_maybe_target = list("Gyuuh?", "Rrrr!") say_got_target = list("GYOOOHHHH!!!") /datum/say_list/teppibaby - speak = list("Gyooh~", "Gyuuuh!", "Gyuh?", "Gyaah...", "Iuuuuhh.", "Uoounh!", "GyoooOOOOoooh!", "Gyoh~", "Gyouh~", "Yip!") + speak = list("Gyooh~", "Gyuuuh!", "Gyuh?", "Gyaah...", "Iuuuuhh.", "Uoounh!", "GyoooOOOOoooh!", "Gyoh~", "Gyouh~","Gyuuuuh...", "Rrrr...", "Uuah~", "Groh!", "Yip!") emote_hear = list("puffs", "huffs", "rumbles", "gyoohs","pants", "snoofs", "yips") emote_see = list("sways its tail", "stretches", "yawns", "turns their head") - say_maybe_target = list("Gyuuh?") + say_maybe_target = list("Gyuuh?", "Rrrr!") say_got_target = list("GYOOOHHHH!!!") diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm index 0ad963eac1..89cffd64c9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm @@ -117,6 +117,48 @@ meat_amount = 15 + knockdown_chance = 15 + +/mob/living/simple_mob/animal/space/carp/large/huge/vorny + name = "great white carp" + desc = "A very rare breed of carp- and a very hungry one." + icon = 'icons/mob/64x64.dmi' + icon_dead = "megacarp_dead" + icon_living = "megacarp" + icon_state = "megacarp" + + maxHealth = 230 + health = 230 + movement_cooldown = 3 + + melee_damage_lower = 1 // Minimal damage to make the knockdown work. + melee_damage_upper = 1 + + pixel_y = -16 + default_pixel_y = -16 + icon_expected_width = 64 + icon_expected_height = 64 + + meat_amount = 15 + + knockdown_chance = 50 + ai_holder_type = /datum/ai_holder/simple_mob/vore + +/mob/living/simple_mob/animal/space/carp/large/huge/vorny/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "You've been swallowed whole and alive by a massive white carp! The stomach around you is oppressively tight, squeezing and grinding wrinkled walls across your body, making it hard to make any movement at all. The chamber is flooded with fluids that completely overwhelm you." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 2 + B.digest_burn = 2 + B.digest_oxy = 1 + B.digestchance = 100 + B.absorbchance = 0 + B.escapechance = 3 + B.selective_preference = DM_DIGEST + B.escape_stun = 10 /mob/living/simple_mob/animal/space/carp/holographic name = "holographic carp" @@ -155,3 +197,56 @@ /mob/living/simple_mob/animal/space/carp/holographic/death() ..() derez() + +// a slow-moving carp with the appearance of a sea mine and behaviour of a sea mine +/mob/living/simple_mob/animal/space/carp/puffer + name = "puffercarp" + desc = "A bloated, inflated carp covered in spines." + catalogue_data = list(/datum/category_item/catalogue/fauna/carp, /datum/category_item/catalogue/fauna/carp/puffer) + icon_state = "puffercarp" + icon_living = "puffercarp" + icon_dead = "puffercarp_dead" + icon_gib = "generic_gib" + movement_cooldown = 15 + var/ready_to_blow = TRUE + +/datum/category_item/catalogue/fauna/carp/puffer + name = "Voidborne Fauna - Space Carp: puffer variant" + desc = "An unusual subspecies of space carp with a novel defensive \ + and reproductive strategy - once the puffercarp is ready to spread spores \ + it begins to produce a highly volatile compound within its gas bladders, \ + which in addition to providing them with a means of propulsion through space \ + as per most space carp species, affords the puffercarp with a somewhat unique trait \ + - namely, that they are able to ignite and detonate their gas bladders \ + at will, and will do so aggressively when threatened. The bladders also tend to ignite \ + when struck by thermal or electrical discharges, or even sympathetic detonation from \ + other explosives - including other nearby puffercarp. As a result, most voidborne \ + predators have a tendency to keep clear, but even if this deterrent doesn't work the resulting \ + explosion serves to scatter their spores over a massive area - this improved seeding \ + strategy compared to regular carp results in the propagation of the species despite the \ + fact that it means each adult carp can only reproduce exactly once. \ +

\ + Due to their premature mortality it is extremely rare to see a puffercarp grow to any notable \ + size, often appearing to be somewhat stunted in growth compared to other subspecies, \ + their gas bloating being the only thing that brings them close to \ + the normal scale of an adult carp. " + value = CATALOGUER_REWARD_HARD //if you can hang around close enough to this thing without setting it off, you deserve it + +/mob/living/simple_mob/animal/space/carp/puffer/proc/kaboom() + if(ready_to_blow) + ready_to_blow = FALSE + gib() + var/turf/T = get_turf(src) + explosion(T, -1, -1, 4, 4) + + +/mob/living/simple_mob/animal/space/carp/puffer/apply_melee_effects() //it gets close enough to attack? EXPLODE + kaboom() + +/mob/living/simple_mob/animal/space/carp/puffer/adjustFireLoss(var/amount,var/include_robo) //you make it hot? EXPLODE + if(amount>0) + kaboom() + ..() + +/mob/living/simple_mob/animal/space/carp/puffer/ex_act() //explode? YOU BETTER BELIEVE THAT'S AN EXPLODE + kaboom() \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/squirrel.dm b/code/modules/mob/living/simple_mob/subtypes/animal/squirrel.dm index 456f3d166f..9b62bc7da4 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/squirrel.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/squirrel.dm @@ -40,7 +40,7 @@ attacktext = list("nipped", "squeaked at") friendly = list("nuzzles", "nibbles", "leans on") - ai_holder_type = /datum/ai_holder/simple_mob/retaliate + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/edible has_langs = list(LANGUAGE_ANIMAL) say_list_type = /datum/say_list/squirrel diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm index b623e850b3..41b7941b68 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs_altevian.dm @@ -1,6 +1,6 @@ /mob/living/simple_mob/humanoid/merc/altevian name = "altevian naval officer" - desc = "Altevian Naval Slicer, adorned in the top of the line Heartbreaker suit. Armed with a handheld cutter." + desc = "An Altevian Naval Slicer, adorned in the top of the line Heartbreaker suit. Armed with a handheld cutter." tt_desc = "E Rattus sapiens" icon = 'icons/mob/altevian_mercs_vr.dmi' icon_state = "merc_melee_cutter" @@ -50,7 +50,7 @@ stand_down_sound = 'sound/weapons/TargetOff.ogg' /mob/living/simple_mob/humanoid/merc/altevian/sapper - desc = "Altevian Naval Sapper, adorned in the top of the line Heartbreaker suit. Armed with a giant fokken wrench." + desc = "An Altevian Naval Sapper, adorned in the top of the line Heartbreaker suit. Armed with a giant fokken wrench." icon_state = "merc_melee_wrench" icon_living = "merc_melee_wrench" @@ -62,10 +62,10 @@ attacktext = list("whacked", "slammed", "bashed", "clonked", "bonked") attack_sound = 'sound/weapons/smash.ogg' - loot_list = list(/obj/item/weapon/melee/altevian_wrench = 100) + loot_list = list(/obj/item/weapon/tool/transforming/altevian = 100) /mob/living/simple_mob/humanoid/merc/altevian/ranged - desc = "Altevian Naval Salvage Guard, adorned in the top of the line Heartbreaker suit. Armed with a small energy gun." + desc = "An Altevian Naval Salvage Guard, adorned in the top of the line Heartbreaker suit. Armed with a small energy gun." icon_state = "merc_gun_smol" icon_living = "merc_gun_smol" @@ -86,7 +86,7 @@ ai_holder_type = /datum/ai_holder/simple_mob/merc/ranged /mob/living/simple_mob/humanoid/merc/altevian/ranged/strong - desc = "Altevian Naval Salvage Shield, adorned in the top of the line Heartbreaker suit. Armed with a large energy gun." + desc = "An Altevian Naval Salvage Shield, adorned in the top of the line Heartbreaker suit. Armed with a large energy gun." icon_state = "merc_gun_big" icon_living = "merc_gun_big" @@ -101,7 +101,7 @@ projectilesound = 'sound/weapons/Laser.ogg' /mob/living/simple_mob/humanoid/merc/altevian/ranged/ballistic - desc = "Altevian Naval Shipbreaker, adorned in the top of the line Heartbreaker suit. Armed with a bolter gun." + desc = "An Altevian Naval Shipbreaker, adorned in the top of the line Heartbreaker suit. Armed with a bolter gun." icon_state = "merc_gun_ballistic" icon_living = "merc_gun_ballistic" @@ -128,4 +128,4 @@ faction = "neutral" /mob/living/simple_mob/humanoid/merc/altevian/ranged/ballistic/neutral - faction = "neutral" \ No newline at end of file + faction = "neutral" diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm index 24207dc178..d5951723dd 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm @@ -89,3 +89,24 @@ /decl/mob_organ_names/hivebotsupport hit_zones = list("central chassis", "positioning servo", "head", "sensor suite", "manipulator arm", "battle analytics mount", "weapons array", "front right leg", "front left leg", "rear left leg", "rear right leg") + +/mob/living/simple_mob/mechanical/hivebot/support/harry + name = "Harry the hivelessbot" + desc = "A severely corroded hivebot, covered in barnacles and seaweed." + maxHealth = 5 // 1 health + health = 5 + ai_holder_type = /datum/ai_holder/simple_mob/passive/speedy + say_list_type = /datum/say_list/hivebot/harry + melee_damage_lower = 0 + melee_damage_upper = 0 + faction = "Station" + water_resist = 1 //Harry lives under the sea! + +/mob/living/simple_mob/mechanical/hivebot/support/harry/death() + ..() + visible_message(span("Connection... terminated... Sweet Release... obtained.","\The [src] blows apart!")) + new /obj/effect/decal/cleanable/blood/gibs/robot(src.loc) + var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread + s.set_up(3, 1, src) + s.start() + qdel(src) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bat.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bat.dm new file mode 100644 index 0000000000..6d6328dfef --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bat.dm @@ -0,0 +1,58 @@ +/mob/living/simple_mob/vore/bat + name = "giant bat" + desc = "Blimey, that's a big sky fox." + tt_desc = "Homo paramour" + + icon_state = "bat" + icon = 'icons/mob/vore.dmi' + icon_living = "bat" + icon_rest = "batasleep" + icon_dead = "bat-dead" + + harm_intent_damage = 5 + melee_damage_lower = 2 + melee_damage_upper = 5 + + response_help = "nuzzles" + response_disarm = "flaps at" + response_harm = "bites" + + attacktext = list("bites","scratches") + + say_list_type = /datum/say_list/bat + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/edible + + faction = "vampire" + +// Activate Noms! +/mob/living/simple_mob/vore/bat + vore_active = 1 + vore_bump_chance = 50 + vore_pounce_chance = 50 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN // They just want to drain you! + vore_digest_chance = 25 // But don't you dare try to escape... + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/bat + speak = list("Chirp!") + emote_hear = list("chirps","pings","clicks") + emote_see = list("flaps","grooms itself") + +/mob/living/simple_mob/vore/bat/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "The giant bat has managed to swallow you alive, which is particularly impressive given that it's still a rather small creature. It's belly bulges out as you're squeezed into the oppressively tight stomach, and it lands to manage the weight, wings curling over your form beneath. The body groans under your strain, burbling and growling as it gets to work on it's feed. However, at least for now, it seems to do you no physical harm. Instead, the damp walls that squelch across your body try to leech out your energy through some less direct means." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 2 + B.digest_burn = 2 + B.digest_oxy = 1 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 15 + B.selective_preference = DM_DRAIN + B.escape_stun = 5 + diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm b/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm index ac65c8b8bc..96c3143123 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm @@ -35,6 +35,8 @@ "catgirlbrown" ) + faction = "catgirl" + /mob/living/simple_mob/vore/catgirl/New() ..() if(random_skin) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm b/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm index df106b4e1d..6e4440a148 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm @@ -21,6 +21,8 @@ say_list_type = /datum/say_list/cookiegirl ai_holder_type = /datum/ai_holder/simple_mob/passive/cookiegirl + faction = "cookiegirl" + // Activate Noms! /mob/living/simple_mob/vore/cookiegirl vore_active = 1 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm b/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm new file mode 100644 index 0000000000..cb3ca07957 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/cryptdrake.dm @@ -0,0 +1,131 @@ +/mob/living/simple_mob/vore/cryptdrake + name = "crypt drake" + desc = "A massive drake-like creature with dark purple scales and a seemingly exposed skull." + tt_desc = "Draconis necrotis" + icon = 'icons/mob/vore128x64.dmi' + icon_dead = "cryptdrake-dead" + icon_living = "cryptdrake" + icon_state = "cryptdrake" + icon_rest = "cryptdrake" + faction = "dragon" + old_x = -48 + old_y = 0 + vis_height = 92 + melee_damage_lower = 20 + melee_damage_upper = 15 + friendly = list("nudges", "sniffs on", "rumbles softly at", "nuzzles") + default_pixel_x = -48 + pixel_x = -48 + pixel_y = 0 + response_help = "bumps" + response_disarm = "shoves" + response_harm = "bites" + movement_cooldown = -1 + harm_intent_damage = 10 + melee_damage_lower = 10 + melee_damage_upper = 20 + maxHealth = 1000 + attacktext = list("mauled") + see_in_dark = 8 + minbodytemp = 0 + ai_holder_type = /datum/ai_holder/simple_mob/vore + max_buckled_mobs = 1 + mount_offset_y = 32 + mount_offset_x = -16 + can_buckle = TRUE + buckle_movable = TRUE + buckle_lying = FALSE + max_tox = 0 // immune to poison + + special_attack_min_range = 2 + special_attack_max_range = 4 + special_attack_cooldown = 30 SECONDS + + var/leap_warmup = 2 SECOND // How long the leap telegraphing is. + var/leap_sound = 'sound/weapons/spiderlunge.ogg' + +/mob/living/simple_mob/vore/cryptdrake + + vore_bump_chance = 25 + vore_digest_chance = 50 + vore_escape_chance = 5 + vore_pounce_chance = 100 + vore_active = 1 + vore_icons = 2 + vore_icons = SA_ICON_LIVING | SA_ICON_REST + vore_capacity = 2 + swallowTime = 50 + vore_ignores_undigestable = TRUE + vore_default_mode = DM_DIGEST + vore_pounce_maxhealth = 125 + vore_bump_emote = "tries to devour" + +/mob/living/simple_mob/vore/cryptdrake/Login() + . = ..() + if(!riding_datum) + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + verbs |= /mob/living/proc/toggle_rider_reins + movement_cooldown = -1 + +/mob/living/simple_mob/vore/cryptdrake/init_vore() + . = ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "The enormous beast snaps it's boney jaws around your form, effortlessly lifting you from the ground. Throwing it's head backwards, your body is tossed up momentarily as the maw parts wider, only for you to descend rapidly moments later. You're caught in the creature's throat for a moment, contracting dark purple flesh holding tightly onto you, there's no going back at this point. The peristaltic motions squeeze you down this tunnel towards your final destination, where you're soon relieved of the intense squelching to be pushed into a move flexible, stretching chamber. Immediately coated in caustic oozes, the world around you seems more than eager to ensure that you're soaked over every inch, wrinkled walls twisting and grinding around your body. The drake's stomach clenches and compresses over you rhythmically, attempting to eagerly add you to the soup of fluids that fill this sloshing gut. Omnipresent sounds of groaning, gurgling and burbling bodily functions signify just how active this process already is." + B.vore_sound = "Tauric Swallow" + B.release_sound = "Pred Escape" + B.mode_flags = DM_FLAG_THICKBELLY + B.fancy_vore = 1 + B.selective_preference = DM_DIGEST + B.vore_verb = "devour" + B.digest_brute = 3 + B.digest_burn = 2 + B.digest_oxy = 0 + B.digestchance = 50 + B.absorbchance = 0 + B.escapechance = 3 + B.escape_stun = 5 + B.contamination_color = "grey" + B.contamination_flavor = "Wet" + B.emote_lists[DM_DIGEST] = list( + "The drake growls in annoyance before clenching those wrinkled walls tight against your form, grinding away at you!", + "As the beast wanders about, you're forced to slip and slide around amidst a pool of thick digestive goop, sinking briefly into the thick, heavy walls!", + "You can barely hear the drake let out a pleased rumble as its stomach eagerly gurgles around its newfound meal!", + "As the thinning air begins to make you feel dizzy, menacing bworps and grumbles fill that dark, constantly shifting organ!", + "The constant, rhythmic kneading and massaging starts to take its toll along with the muggy heat, making you feel weaker and weaker!", + "The drake happily wanders around while digesting its meal, almost like it is trying to show off the hanging gut you've given it. Not like it made much of a difference on his already borderline obese form anyway~") + +/mob/living/simple_mob/vore/cryptdrake/do_special_attack(atom/A) //Mostly copied from hunter.dm + set waitfor = FALSE + if(!isliving(A)) + return FALSE + var/mob/living/L = A + if(!L.devourable || !L.allowmobvore || !L.can_be_drop_prey || !L.throw_vore || L.unacidable) + return FALSE + + set_AI_busy(TRUE) + visible_message(span("warning","\The [src]'s eyes flash ominously!")) + to_chat(L, span("danger","\The [src] focuses on you!")) + // Telegraph, since getting stunned suddenly feels bad. + do_windup_animation(A, leap_warmup) + sleep(leap_warmup) // For the telegraphing. + + if(L.z != z) //Make sure you haven't disappeared to somewhere we can't go + set_AI_busy(FALSE) + return FALSE + + // Do the actual leap. + status_flags |= LEAPING // Lets us pass over everything. + visible_message(span("critical","\The [src] leaps at \the [L]!")) + throw_at(get_step(L, get_turf(src)), special_attack_max_range+1, 1, src) + playsound(src, leap_sound, 75, 1) + + sleep(5) // For the throw to complete. It won't hold up the AI ticker due to waitfor being false. + + if(status_flags & LEAPING) + status_flags &= ~LEAPING // Revert special passage ability. + + set_AI_busy(FALSE) + if(Adjacent(L)) //We leapt at them but we didn't manage to hit them, let's see if we're next to them + L.Weaken(2) //get knocked down, idiot \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/lamia.dm b/code/modules/mob/living/simple_mob/subtypes/vore/lamia.dm index fbd0f938af..912ae09a09 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/lamia.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/lamia.dm @@ -24,6 +24,7 @@ default_pixel_x = -16 pixel_x = -16 pixel_y = 0 + faction = "lamia" // Vore tags vore_active = 1 @@ -150,7 +151,7 @@ icon_living = "albino_bra" icon_rest = "albino_bra_rest" icon_dead = "albino_bra_dead" - + /mob/living/simple_mob/vore/lamia/albino/shirt desc = "Combination snake-human. This one is albino. They're wearing a shirt." icon_state = "albino_shirt" @@ -173,7 +174,7 @@ icon_living = "cobra_bra" icon_rest = "cobra_bra_rest" icon_dead = "cobra_bra_dead" - + /mob/living/simple_mob/vore/lamia/cobra/shirt desc = "Combination snake-human. This one looks like a cobra. They're wearing a shirt." icon_state = "cobra_shirt" @@ -196,7 +197,7 @@ icon_living = "copper_bra" icon_rest = "copper_bra_rest" icon_dead = "copper_bra_dead" - + /mob/living/simple_mob/vore/lamia/copper/shirt desc = "Combination snake-human. This one is copper. They're wearing a shirt." icon_state = "copper_shirt" @@ -219,7 +220,7 @@ icon_living = "green_bra" icon_rest = "green_bra_rest" icon_dead = "green_bra_dead" - + /mob/living/simple_mob/vore/lamia/green/shirt desc = "Combination snake-human. This one is green. They're wearing a shirt." icon_state = "green_shirt" @@ -242,7 +243,7 @@ icon_living = "zebra_bra" icon_rest = "zebra_bra_rest" icon_dead = "zebra_bra_dead" - + /mob/living/simple_mob/vore/lamia/zebra/shirt desc = "Combination snake-human. This one has a zebra pattern. They're wearing a shirt." icon_state = "zebra_shirt" @@ -281,7 +282,7 @@ GLOBAL_LIST_INIT(valid_random_lamias, list( icon_living = initial(new_attrs.icon_living) icon_rest = initial(new_attrs.icon_rest) icon_dead = initial(new_attrs.icon_dead) - + vore_default_mode = initial(new_attrs.vore_default_mode) vore_digest_chance = initial(new_attrs.vore_digest_chance) vore_pounce_chance = initial(new_attrs.vore_pounce_chance) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/peasant.dm b/code/modules/mob/living/simple_mob/subtypes/vore/peasant.dm new file mode 100644 index 0000000000..1bd10e9ee1 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/peasant.dm @@ -0,0 +1,72 @@ +/mob/living/simple_mob/vore/peasant + name = "peasant" + desc = "They're just about getting by." + tt_desc = "Homo Sapiens" + + icon_state = "peasantfa" + icon = 'icons/mob/vore.dmi' + + harm_intent_damage = 2 + melee_damage_lower = 1 + melee_damage_upper = 2 + + response_help = "pats" + response_disarm = "pushes" + response_harm = "punches" + + attacktext = list("punched","kicked") + + say_list_type = /datum/say_list/peasant + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/edible + + var/random_skin = 1 + var/list/skins = list( + "peasantfa", + "peasantfb", + "peasantfc", + "peasantma", + "peasantmb" + ) + + faction = "peasant" + +/mob/living/simple_mob/vore/peasant/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]asleep" + icon_dead = "[icon_living]-dead" + update_icon() + +// Activate Noms! +/mob/living/simple_mob/vore/peasant + vore_active = 1 + vore_bump_chance = 10 + vore_pounce_chance = 20 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_HOLD + vore_digest_chance = 25 // But don't you dare try to escape... + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/peasant + speak = list("Fine day!","What was I doing again? Oh yeah, nothing.","How are ya?","I sure do love bread.","Where did I leave my scraps of cloth?","Sure is a good time to exist, I guess.") + emote_hear = list("yawns","'s stomach grumbles","shuffles") + emote_see = list("exists","just stands there","smiles","looks around") + +/mob/living/simple_mob/vore/peasant/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "You've somehow managed to get yourself eaten by one of the local peasants. After jamming you down into their stomach, you find yourself cramped up tight in a space that clearly shouldn't be able to accept you. They let out a relieved sigh as they heft around their new found weight, giving it a hearty pat, clearly content to get a good meal for once. The world around you groans and grumbles, but the gut is far from harmful to you right now, even as the walls clench down on your body." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 1 + B.digest_burn = 1 + B.digest_oxy = 0 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 15 + B.selective_preference = DM_HOLD + B.escape_stun = 5 + diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/raptor.dm b/code/modules/mob/living/simple_mob/subtypes/vore/raptor.dm new file mode 100644 index 0000000000..1c8d439ac5 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/raptor.dm @@ -0,0 +1,150 @@ +/mob/living/simple_mob/vore/raptor + name = "raptor" + desc = "A massive raptor with piercing yellow eyes. Long sharp claws and huge pointy teeth, I wouldn't want to upset this thing." + tt_desc = "Velociraptor voroliensis" + icon = 'icons/mob/vore_raptor.dmi' + icon_dead = "raptorpurple_dead" + icon_living = "raptorpurple" + icon_state = "raptorpurple" + icon_rest = "raptorpurple" + faction = "raptor" + meat_amount = 40 //Big dog, lots of meat + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + old_x = -48 + old_y = 0 + vis_height = 92 + friendly = list("nudges", "sniffs on", "rumbles softly at", "slobberlicks") + default_pixel_x = -48 + pixel_x = -48 + pixel_y = 0 + response_help = "pets" + response_disarm = "shoves" + response_harm = "smacks" + movement_cooldown = -1 + harm_intent_damage = 10 + melee_damage_lower = 10 + melee_damage_upper = 15 + maxHealth = 500 + attacktext = list("chomped") + see_in_dark = 8 + minbodytemp = 0 + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + max_buckled_mobs = 1 + mount_offset_y = 32 + mount_offset_x = -16 + can_buckle = TRUE + buckle_movable = TRUE + buckle_lying = FALSE + var/initial_icon = "raptorpurple" + var/wg_state = 0 + + var/random_skin = 1 + var/list/skins = list( + "raptorpurple", + "raptorgreen", + "raptorred", + "raptorblue", + "raptorblack", + "raptorwhite" + ) + +/mob/living/simple_mob/vore/raptor + + vore_bump_chance = 25 + vore_digest_chance = 5 + vore_escape_chance = 5 + vore_pounce_chance = 50 + vore_active = 1 + vore_icons = SA_ICON_LIVING | SA_ICON_REST + vore_capacity = 2 + swallowTime = 50 + vore_ignores_undigestable = TRUE + vore_default_mode = DM_DIGEST + vore_pounce_maxhealth = 125 + vore_bump_emote = "tries to snap up" + +/mob/living/simple_mob/vore/raptor/New() + ..() + if(random_skin) + icon_living = pick(skins) + initial_icon = icon_living + icon_rest = "[icon_living]" + icon_dead = "[icon_living]_dead" + update_icon() + +/mob/living/simple_mob/vore/raptor/Login() + . = ..() + if(!riding_datum) + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + verbs |= /mob/living/proc/toggle_rider_reins + movement_cooldown = -1 + +/mob/living/simple_mob/vore/raptor/init_vore() + . = ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "The raptor pounces atop you, pinning you under sharp taloned feet, a heavy weight on your chest. Unable to do much more than look up at the reptilian face, looking back down at you with a curious bird-like expression, you're helpless in the moment. With little more warning, the jaws lunge open and dive down towards your head. Engulfing you in the wet maw, tongue pushing against your face, a cage of jagged teeth hold you in place. Pulling you upwards roughly, the creature begins to chomp it's way down your body, and you're steadily transferred down the rippling, tight tunnel of its gullet. The beast throws its head backwards, sending you spiralling down toward's its stomach, where you land with a wet splash. The walls of the gut immediately clamp down on you, wrinkled flesh grinding the gastric slurry of acids and enzymes into your trapped form. A cacophony of bodily functions, groans, gurgles and heart beats overwhelm your hearing. This creature's body has clearly decided you're little more than meat to it now." + B.vore_sound = "Tauric Swallow" + B.release_sound = "Pred Escape" + B.mode_flags = DM_FLAG_THICKBELLY + B.fancy_vore = 1 + B.selective_preference = DM_DIGEST + B.vore_verb = "devour" + B.digest_brute = 3 + B.digest_burn = 2 + B.digest_oxy = 0 + B.digestchance = 50 + B.absorbchance = 0 + B.escapechance = 5 + B.escape_stun = 5 + B.contamination_color = "grey" + B.contamination_flavor = "Wet" + B.emote_lists[DM_DIGEST] = list( + "The raptor growls in annoyance before clenching those wrinkled walls tight against your form, grinding away at you!", + "As the beast wanders about, you're forced to slip and slide around amidst a pool of thick digestive goop, sinking briefly into the thick, heavy walls!", + "You can barely hear the drake let out a pleased rumble as its stomach eagerly gurgles around its newfound meal!", + "As the thinning air begins to make you feel dizzy, menacing bworps and grumbles fill that dark, constantly shifting organ!", + "The constant, rhythmic kneading and massaging starts to take its toll along with the muggy heat, making you feel weaker and weaker!", + "The raptor happily wanders around while digesting its meal, almost like it is trying to show off the hanging gut you've given it. Not like it made much of a difference on his already borderline obese form anyway~") + +/mob/living/simple_mob/vore/raptor/adjust_nutrition() + ..() + consider_wg() + +/mob/living/simple_mob/vore/raptor/proc/consider_wg() + var/past_state = wg_state + if(nutrition >= 900) + wg_state = 1 + else + wg_state = 0 + if(past_state != wg_state) + update_icon() + +/mob/living/simple_mob/vore/raptor/update_icon() + if(wg_state == 1) + icon_living = "[initial_icon]_fat" + icon_state = icon_living + else + icon_living = "[initial_icon]" + icon_state = icon_living + . = ..() + if(vore_active) + var/voremob_awake = FALSE + if(icon_state == icon_living) + voremob_awake = TRUE + update_fullness() + if(!vore_fullness) + update_transform() + return 0 + else if((stat == CONSCIOUS) && (!icon_rest || !resting || !incapacitated(INCAPACITATION_DISABLED)) && (vore_icons & SA_ICON_LIVING)) + icon_state = "[icon_living]-[vore_fullness]" + else if(stat >= DEAD && (vore_icons & SA_ICON_DEAD)) + icon_state = "[icon_dead]-[vore_fullness]" + else if(((stat == UNCONSCIOUS) || resting || incapacitated(INCAPACITATION_DISABLED) ) && icon_rest && (vore_icons & SA_ICON_REST)) + icon_state = "[icon_rest]-[vore_fullness]" + if(vore_eyes && voremob_awake) //Update eye layer if applicable. + remove_eyes() + add_eyes() + update_transform() + diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/scel.dm b/code/modules/mob/living/simple_mob/subtypes/vore/scel.dm new file mode 100644 index 0000000000..6312d835cd --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/scel.dm @@ -0,0 +1,261 @@ +//This mob's design and details belong to Kira72 on discord and BYOND. Please consult them before making changes to the discriptions and abilities of the mob, +//and please respect their wishes to keep the mob in line with their vision for it. This is not any sort of formal copyright notice, but a polite request. + +/mob/living/simple_mob/vore/scel + name = "scel" + desc = "A large serpentine creature with malleable and shadowy-black flesh covering most of it's body. The soft substance seems solid, but hardly seems to stay in a singular shape. There are numerous spots of neon-bright colour that's visible through translucent patches across their body." + catalogue_data = list(/datum/category_item/catalogue/fauna/scel) + tt_desc = "Voidwyrm" + icon = 'icons/mob/vore_scel.dmi' + icon_dead = "scel_orange-dead" + icon_living = "scel_orange" + icon_state = "scel_orange" + icon_rest = "scel_orange-rest" + faction = "scel" + old_x = -48 + old_y = 0 + vis_height = 92 + friendly = list("nudges", "sniffs on", "rumbles softly at", "nuzzles") + default_pixel_x = -48 + pixel_x = -48 + pixel_y = 0 + response_help = "bumps" + response_disarm = "shoves" + response_harm = "attacks" + movement_cooldown = 0 + harm_intent_damage = 15 + melee_damage_lower = 5 + melee_damage_upper = 15 + maxHealth = 400 + attacktext = list("slammed") + see_in_dark = 8 + minbodytemp = 0 + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + max_buckled_mobs = 1 + mount_offset_y = 32 + mount_offset_x = -16 + can_buckle = TRUE + buckle_movable = TRUE + buckle_lying = FALSE + + special_attack_min_range = 2 + special_attack_max_range = 4 + special_attack_cooldown = 30 SECONDS + + appendage_color = "#000000" + + var/leap_warmup = 2 SECOND // How long the leap telegraphing is. + var/leap_sound = 'sound/weapons/spiderlunge.ogg' + + var/random_skin = 1 + var/list/skins = list( + "scel_orange", + "scel_blue", + "scel_purple", + "scel_red", + "scel_green" + ) + +/mob/living/simple_mob/vore/scel/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]-rest" + icon_dead = "[icon_living]-dead" + update_icon() + +/mob/living/simple_mob/vore/scel + + vore_bump_chance = 25 + vore_digest_chance = 50 + vore_escape_chance = 5 + vore_pounce_chance = 100 + vore_active = 1 + vore_icons = 1 + vore_icons = SA_ICON_LIVING | SA_ICON_REST + vore_capacity = 2 + swallowTime = 50 + vore_ignores_undigestable = TRUE + vore_default_mode = DM_SELECT + vore_pounce_maxhealth = 125 + vore_bump_emote = "tries to devour" + +/mob/living/simple_mob/vore/scel/Login() + . = ..() + if(!riding_datum) + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + verbs |= /mob/living/proc/toggle_rider_reins + verbs |= /mob/living/proc/glow_toggle + verbs |= /mob/living/proc/glow_color + verbs |= /mob/living/proc/long_vore + verbs |= /mob/living/proc/target_lunge + movement_cooldown = -1 + +/mob/living/simple_mob/vore/scel/init_vore() + . = ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "The strange beast pounces atop of you, pinning you with it's hefty weight, the greedy stomach sloshing atop you before it looms closer, with that maw stretching almost impossibly wide and easily enveloping your body. The jaws of the scel are solid and fleshy, preventing any movement. Immediately you are embraced into the tight pull of oily black flesh, and you are rapidly dragged down into the humid, more malleable depths of the creature! Splashing down into a thick, ominously bubbling sludge, you fall into place as food among the remnants of previous meals. As you settle, you are completely hidden away inside of it's serpentine body, left to complete darkness and the sounds of squelching bodily functions. Movement is not difficult as the flesh around you is easily pushed back, but it quickly snaps back into place to keep you constrained. Slowly, the neon liquid that you could see from the outside of the creature begins to seep into the chamber. With that hefty stomach bloated with yet another meal, a lazy burp signals its meal complete. Leaving you to simmer in its depths as it continues its prowling..." + B.vore_sound = "Tauric Swallow" + B.release_sound = "Pred Escape" + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "a_anim_belly" + B.fancy_vore = 1 + B.selective_preference = DM_SELECT + B.vore_verb = "devour" + B.digest_brute = 1 + B.digest_burn = 2 + B.digest_oxy = 0 + B.digestchance = 50 + B.absorbchance = 0 + B.escapechance = 10 + B.escape_stun = 5 + B.contamination_color = "grey" + B.contamination_flavor = "Wet" + B.emote_lists[DM_DIGEST] = list( + "The walls smother and press against you with a marshmallowy softness. Mechanically compressing you in waves to ease in your digestion.", + "As the scel slithers about, you feel the squishy walls around you roll over your form, causing the pool of digestive liquids to splash and churn against you.", + "Curious sounds can be heard muffled through the flesh as the creature pokes and prods at it's groaning gut.", + "As the thinning air begins to make you feel dizzy, menacing bworps and grumbles fill that dark, constantly shifting organ!", + "The constant, rhythmic kneading and massaging starts to take its toll along with the muggy heat, easing your body to sink more into the bubbling pool around you!", + "The vibrant neon liquid pools over your body, it bubbles over your helpless figure as it steadily melts you down. All to churn you up to add an extra little weight to this strange beast.", + "The alien serpent seems to be kneading and massaging it's noisy stomach, sloshing noisily as you are shoved about inside.", + "The creature seems to stretch and arch their body for a moment, tightening you against those slick walls. For a brief moment, you can almost see the outside world.", + "The walls of this well-padded gut rumbles as the Scel lets out a crass belch. Forcing the walls of this roiling belly tighter against you as it works to digest you!") + B.digest_messages_prey = "The greedy walls compress around you as the Scel gives out an audible belch, taking with it the last of your air. You slowly slip under the bubbling and caustic tide of sludge as it overtakes your body. Your senses fade as the walls lazily ripple around you, reducing your body to a hot churning slop. The Scel's belly softens and rounds as you slowly amount to little more than some extra soft pudge on the lazy wryms body!" + B.struggle_messages_outside = list( + "The Scel stifles a belch before bringing a long tentacle to knead over its distended belly. It's noisily churning and gurgling, with every movement from within eliciting a loud slosh or squelch.", + "The shadowy serpent lets out a crass belch as its roiling, bulging belly slowly and noisily digests a wriggling meal. If you squint, you can just barely see the shilouette of someone!", + "The Scel clenches it's wriggling middle, sending that lumpy bulge further down along it's body! The distinct shape fading into its chubby body.", + "With a long and lazy stretch, the Scel causes the walls of its stomach to compress around their squirming meal, revealing the slowly digesting shape of someone!", + "The Scel's well-rounded belly bubbles and groans, making wet gurgling noises as it sloshes in its attempts to digest an uncooperative meal!") + B.struggle_messages_inside = list( + "Your squirming and struggling just serves to kick the churning liquid around you in rough waves of digestive enzymes!", + "Your movements just prompt the strange creature shoves a tendril into their gut, causing the walls to compress into you and knocking you off balance.", + "You simply slide against the slick black flesh and splash back down into the neon-colored goop, doing little but to coat yourself in those roiling waves.", + "The slurry around you bubbles ominously, before a rush of air blasts past you and a rumbling belch shakes the walls, tightening against you even more.", + "The belly doesn't react to your wriggling at all, with a constant stream of 'blurps', 'blorbles', and 'groans'. The noisy stomach compresses you from all angles as it works to digest you like everything else that enters this gut.", + "You shove at the pudgy walls with all your strength, almost catching a vague glimpse of the outside world, before the Scel clenches their stomach, sending you bounding back inside as the stomach sloshes.") + B.examine_messages = list( + "The belly of the creature sags outwards, pushing out against its flexible flesh. It rumbles contently..", + "The Scel looks quite content right now, with multiple black tendrils rubbing over the sloshing, groaning mass of its gut.", + "A soft belch escapes the jaws of the alien creature as its soft and lumpy belly works to digest its latest meal.") + +/mob/living/simple_mob/vore/scel/do_special_attack(atom/A) + . = TRUE + if(ckey) + return + if(prob(50)) + lunge(A) + else + tongue(A) + +/mob/living/simple_mob/vore/scel/proc/lunge(atom/A) //Mostly copied from hunter.dm + set waitfor = FALSE + if(!isliving(A)) + return FALSE + var/mob/living/L = A + if(!L.devourable || !L.allowmobvore || !L.can_be_drop_prey || !L.throw_vore || L.unacidable) + return FALSE + + set_AI_busy(TRUE) + visible_message(span("warning","\The [src] rears back, ready to lunge!")) + to_chat(L, span("danger","\The [src] focuses on you!")) + // Telegraph, since getting stunned suddenly feels bad. + do_windup_animation(A, leap_warmup) + sleep(leap_warmup) // For the telegraphing. + + if(L.z != z) //Make sure you haven't disappeared to somewhere we can't go + set_AI_busy(FALSE) + return FALSE + + // Do the actual leap. + status_flags |= LEAPING // Lets us pass over everything. + visible_message(span("critical","\The [src] leaps at \the [L]!")) + throw_at(get_step(L, get_turf(src)), special_attack_max_range+1, 1, src) + playsound(src, leap_sound, 75, 1) + + sleep(5) // For the throw to complete. It won't hold up the AI ticker due to waitfor being false. + + if(status_flags & LEAPING) + status_flags &= ~LEAPING // Revert special passage ability. + + set_AI_busy(FALSE) + if(Adjacent(L)) //We leapt at them but we didn't manage to hit them, let's see if we're next to them + L.Weaken(2) //get knocked down, idiot + +/mob/living/simple_mob/vore/scel/proc/tongue(atom/A) + var/obj/item/projectile/P = new /obj/item/projectile/beam/appendage(get_turf(src)) + src.visible_message("\The [src] launches a black appendage at \the [A]!") + playsound(src, "sound/effects/slime_squish.ogg", 50, 1) + P.launch_projectile(A, BP_TORSO, src) + +/datum/category_item/catalogue/fauna/scel + name = "Extra-Realspace Fauna - Scel" + desc = "Classification: Voidwyrm\ +

\ + Scel, colloquially known as Voidwyrms, are creatures originating from outside of realspace, typically found at extradimensional breaches such as redpsace tears or within redgate locations. \ + While they are known to appear in many variants, the serpentine shape with antennae or whiskers is known to be the most common, due to being the closest and most accurate approximation of their natural forms from their home reality. \ + Scel bodies, contrary to popular belief, are not slime. They are solid matter, but are still incredibly malleable, which they use to 'shapeshift' when desired. The shifting is limited to just their figure. A scel attempting to look human would still have black squishy flesh and glowing eyes and spots for example. \ + Various other appendages seem to manifest at will, growing out of their body when needed. Tentacles are by-far the most preferred and commonly seen, but hardened legs and even clawed hands have been seen. While able to shapeshift into even human or animal shapes, it is always in shape only, and certain traits are universal. \ + Six eyes that match the color of their 'Goo', universally black and lacking in bones, and no body heat at all, typically matching the temperature of whatever environment they find themselves in. \ + Organs and bones as we understand them are nonexistant, and their body is made up of two main quantifiable substances. The black 'Flesh' that makes up the majority of their matter. It is solid yet incredibly malleable to the touch, and has been described as feeling 'slick'. \ + The next is the viscous liquid that seems to be the source of their color. This liquid seems to fulfill many properties for the Scel, shifting in transluscent pockets inside of their body. \ + Both their flesh and 'goo' dissipate into a fine black mist within hours of being seperated from its host, or the death of the subject. \ + Scel are sapient, and are therefore hard to predict, many have been immediately hostile, while a rare few have even taught themselves our language. Contact has been sparse though. What has been discovered is that most Scel seem to act independantly, with no formal governance. \ + Their alien mindset seems to have difficulty adapting to our world, further causing contact attempts to degrade into misunderstandings. \ + Scel, once breached into realspace, seem incredibly hesitant to return to their own reality, and are likely to be found in places with little to no natural light, as it seems to confuse their senses." + value = CATALOGUER_REWARD_HARD + +/mob/living/simple_mob/vore/scel/orange + icon_dead = "scel_orange-dead" + icon_living = "scel_orange" + icon_state = "scel_orange" + icon_rest = "scel_orange-rest" + random_skin = 0 + +/mob/living/simple_mob/vore/scel/blue + icon_dead = "scel_blue-dead" + icon_living = "scel_blue" + icon_state = "scel_blue" + icon_rest = "scel_blue-rest" + random_skin = 0 + +/mob/living/simple_mob/vore/scel/purple + icon_dead = "scel_purple-dead" + icon_living = "scel_purple" + icon_state = "scel_purple" + icon_rest = "scel_purple-rest" + random_skin = 0 + +/mob/living/simple_mob/vore/scel/green + icon_dead = "scel_green-dead" + icon_living = "scel_green" + icon_state = "scel_green" + icon_rest = "scel_green-rest" + random_skin = 0 + +/mob/living/simple_mob/vore/scel/red + icon_dead = "scel_red-dead" + icon_living = "scel_red" + icon_state = "scel_red" + icon_rest = "scel_red-rest" + random_skin = 0 + +/mob/living/simple_mob/vore/scel/handle_light() + if(glow_override) + return FALSE + + if(instability >= TECHNOMANCER_INSTABILITY_MIN_GLOW) + var/distance = round(sqrt(instability / 2)) + if(distance) + set_light(distance, distance * 4, l_color = "#660066") + return TRUE + + else if(glow_toggle) + set_light(glow_range, glow_intensity, glow_color) + + else + set_light(0) + return FALSE \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm b/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm index a4066e4758..75c8f94b3d 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm @@ -33,7 +33,7 @@ mount_offset_x = 0 say_list_type = /datum/say_list/sheep - ai_holder_type = /datum/ai_holder/simple_mob/retaliate + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/edible // var/harvestable_wool = TRUE //Relating to wool growth and shearing down below. // var/wool_growth = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm index 218211770b..db748e732a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm @@ -175,6 +175,7 @@ var/global/list/grub_machine_overlays = list() /mob/living/simple_mob/animal/solargrub_larva/proc/expand_grub() eject_from_machine() visible_message("\The [src] suddenly balloons in size!") + log_game("A larva has matured into a grub in area [src.loc.name] ([src.x],[src.y],[src.z]") var/mob/living/simple_mob/vore/solargrub/adult = new(get_turf(src)) adult.tracked = tracked // grub.power_drained = power_drained //TODO diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/succubi.dm b/code/modules/mob/living/simple_mob/subtypes/vore/succubi.dm new file mode 100644 index 0000000000..3b5d4f986d --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/succubi.dm @@ -0,0 +1,73 @@ +/mob/living/simple_mob/vore/succubus + name = "succubus" + desc = "She's giving you the 'come hither' look." + tt_desc = "Homo paramour" + + icon_state = "succubus" + icon = 'icons/mob/vore.dmi' + + harm_intent_damage = 5 + melee_damage_lower = 2 + melee_damage_upper = 5 + + response_help = "strokes" + response_disarm = "pushes" + response_harm = "bites" + + attacktext = list("swatted","bapped") + + say_list_type = /datum/say_list/succubus + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/edible + + var/random_skin = 1 + var/list/skins = list( + "succubus", + "succubusbob", + "succubusginger", + "succubusclothed", + "succubusbobclothed", + "succubusgingerclothed" + ) + + faction = "succubus" + +/mob/living/simple_mob/vore/succubus/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]asleep" + icon_dead = "[icon_living]-dead" + update_icon() + +// Activate Noms! +/mob/living/simple_mob/vore/succubus + vore_active = 1 + vore_bump_chance = 100 + vore_pounce_chance = 50 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN // They just want to drain you! + vore_digest_chance = 25 // But don't you dare try to escape... + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/succubus + speak = list("Come here cutie!","Let me get a good look at you!","Want to spend a little quality time together?","I don't bite. Much.","Like what you see?","Feel free to sample the goods.") + emote_hear = list("makes a kissing sound","giggles","lets out a needy whine") + emote_see = list("gestures for you to come over","winks","smiles","stretches") + +/mob/living/simple_mob/vore/succubus/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "You find yourself tightly compressed into the stomach of the succubus, with immense pressure squeezing down on you from every direction. The wrinkled walls of the gut knead over you, like a swelteringly hot, wet massage. You can feel movement from the outside, as though the demoness is running her hands over your form with delight. The world around you groans and gurgles, but the fluids that ooze into this place don't seem harmful, yet. Instead, you feel your very energy being steadily depleted, much to the joy of the woman who's claiming it all for herself." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 2 + B.digest_burn = 2 + B.digest_oxy = 1 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 15 + B.selective_preference = DM_DRAIN + B.escape_stun = 5 + diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/vampire.dm b/code/modules/mob/living/simple_mob/subtypes/vore/vampire.dm new file mode 100644 index 0000000000..96a760bd28 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/vampire.dm @@ -0,0 +1,116 @@ +/mob/living/simple_mob/vore/vampire + name = "vampire" + desc = "A large creature with a humanoid upperbody and more feral formed lower body, with four legs and two arms." + + icon_state = "count" + icon = 'icons/mob/vore.dmi' + + harm_intent_damage = 8 + melee_damage_lower = 3 + melee_damage_upper = 7 + maxHealth = 150 + health = 150 + + response_help = "caresses" + response_disarm = "wafts" + response_harm = "bites" + + attacktext = list("bites","sucks","drinks from") + + say_list_type = /datum/say_list/count + ai_holder_type = /datum/ai_holder/simple_mob/vore/edible + + var/random_skin = 1 + var/list/skins = list( + "count", + "countess", + "countnude", + "countessnude" + ) + + faction = "vampire" + +/mob/living/simple_mob/vore/vampire/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]asleep" + icon_dead = "[icon_living]-dead" + update_icon() + +// Activate Noms! +/mob/living/simple_mob/vore/vampire + vore_active = 1 + vore_bump_chance = 10 + vore_pounce_chance = 50 + vore_standing_too = 1 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN + vore_digest_chance = 25 + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/count + speak = list("I vant to suck your-","I'm going to get a bite to drink.","All I have is time.","Your presence here is crypt-ic.","I like my coffee decoffinated.","There is bad blood between us.") + emote_hear = list("laughs maniacally","croans","hisses") + emote_see = list("wafts about","licks their lips","flaps a bit") + +/mob/living/simple_mob/vore/vampire/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "Having been rapidly gulped up by the vampire, you find yourself tightly contained with a set of groaning, wrinkled walls. It seems that the beast has decided against draining your lifeforce through you blood, and instead taking a more direct approach as it saps your strength from all around you. Your attacker seems content to just take that essence for now, but it is a gut afterall and struggling may set it off." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 3 + B.digest_burn = 0 + B.digest_oxy = 1 + B.digestchance = 25 + B.absorbchance = 0 + B.escapechance = 10 + B.selective_preference = DM_DRAIN + B.escape_stun = 5 + +/mob/living/simple_mob/vore/vampire/count + random_skin = 0 + icon_state = "count" + icon_living = "count" + icon_rest = "countasleep" + icon_dead = "count-dead" + +/mob/living/simple_mob/vore/vampire/countess + random_skin = 0 + icon_state = "countess" + icon_living = "countess" + icon_rest = "countessasleep" + icon_dead = "countess-dead" + +/mob/living/simple_mob/vore/vampire/count_nude + random_skin = 0 + icon_state = "countnude" + icon_living = "countnude" + icon_rest = "countnudeasleep" + icon_dead = "countnude-dead" + +/mob/living/simple_mob/vore/vampire/countess_nude + random_skin = 0 + icon_state = "countessnude" + icon_living = "countessnude" + icon_rest = "countessnudeasleep" + icon_dead = "countessnude-dead" + +/mob/living/simple_mob/vore/vampire/queen + random_skin = 0 + icon_state = "countessqueen" + icon_living = "countessqueen" + icon_rest = "countessqueenasleep" + icon_dead = "countessqueen-dead" + harm_intent_damage = 10 + melee_damage_lower = 5 + melee_damage_upper = 9 + maxHealth = 350 + health = 350 + vore_pounce_chance = 75 + +/mob/living/simple_mob/vore/vampire/queen/New() + resize(2) + ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm index fa4595459a..cc5779da73 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm @@ -30,6 +30,9 @@ vore_pounce_chance = 40 vore_icons = SA_ICON_LIVING +/datum/ai_holder/simple_mob/retaliate/cooperative/wolfgirl + belly_attack = FALSE + /datum/ai_holder/simple_mob/retaliate/cooperative/wolfgirl/on_hear_say(mob/living/speaker, message) if(!speaker.client) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolftaur.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolftaur.dm new file mode 100644 index 0000000000..e4e35e837c --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolftaur.dm @@ -0,0 +1,158 @@ +/mob/living/simple_mob/vore/wolftaur + name = "wolftaur" + desc = "A large creature with a humanoid upperbody and more feral formed lower body, with four legs and two arms." + + icon_state = "wolftaurwhite" + icon = 'icons/mob/vore64x32.dmi' + + harm_intent_damage = 5 + melee_damage_lower = 2 + melee_damage_upper = 5 + + response_help = "heavily pets" + response_disarm = "shoves" + response_harm = "bites" + + attacktext = list("kicked","bit") + + say_list_type = /datum/say_list/wolftaur + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/wolftaur + + var/random_skin = 1 + var/list/skins = list( + "wolftaurwhite", + "wolftaurwhitec", + "wolftaurbrown", + "wolftaurbrownc", + "wolftaurblack", + "wolftaurblackc", + "wolftaurwood", + "wolftaurwoodc", + "wolftaurdark" + ) + + old_x = -16 + old_y = 0 + default_pixel_x = -16 + pixel_x = -16 + pixel_y = 0 + faction = "wolftaur" + +/mob/living/simple_mob/vore/wolftaur/New() + ..() + if(random_skin) + icon_living = pick(skins) + icon_rest = "[icon_living]_rest" + icon_dead = "[icon_living]-dead" + update_icon() + var/oursize = rand(100, 140) / 100 + resize(oursize) + +// Activate Noms! +/mob/living/simple_mob/vore/wolftaur + vore_active = 1 + vore_bump_chance = 10 + vore_pounce_chance = 50 + vore_standing_too = 1 + vore_ignores_undigestable = 0 // Catgirls just want to eat yoouuu + vore_default_mode = DM_DIGEST // Chance that catgirls just wanna bellycuddle yoouuuu! + vore_digest_chance = 25 // But squirming might make them gurgle... + vore_icons = SA_ICON_LIVING | SA_ICON_REST + +/datum/say_list/wolftaur + speak = list("Grrr.","Huff","What do you want?","Hmm.","One thing after another.","Where's the food?") + emote_hear = list("grumbles","barks","sighs") + emote_see = list("shakes her head","stomps","stretches","rolls her eyes") + +/datum/ai_holder/simple_mob/retaliate/wolftaur + base_wander_delay = 8 + belly_attack = FALSE + +/mob/living/simple_mob/vore/wolftaur/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "After a gruelling compressive traversal down through the taur's gullet, you briefly get deposited in an oppressively tight stomach at it's humanoid waist. However, the wolf has little interest in keeping you here, instead treating you as a mere snack, an orifice opens beneath you and you're soon dragged deeper into her depths. Soon you're splashing into an active, waiting caustic slurry, and the world around you drops as though you're trapped in a hammock. The taur's underbelly sags with your weight, and you feel a heavy pat from the woman outside settling in to make the most of her meal." + B.mode_flags = DM_FLAG_THICKBELLY + B.belly_fullscreen = "yet_another_tumby" + B.digest_brute = 2 + B.digest_burn = 2 + B.digest_oxy = 1 + B.digestchance = 100 + B.absorbchance = 0 + B.escapechance = 5 + B.selective_preference = DM_DIGEST + B.escape_stun = 5 + +/mob/living/simple_mob/vore/wolftaur/clown + name = "wolftaur" + desc = "What the hell is this outfit!?" + icon_state = "wolftaurclown" + random_skin = 0 + icon_living = "wolftaurclown" + icon_rest = "wolftaurclown_rest" + icon_dead = "wolftaurclown-dead" + +/mob/living/simple_mob/vore/wolftaur/white + icon_state = "wolftaurwhite" + random_skin = 0 + icon_living = "wolftaurwhite" + icon_rest = "wolftaurwhite_rest" + icon_dead = "wolftaurwhite-dead" + +/mob/living/simple_mob/vore/wolftaur/whiteclothed + icon_state = "wolftaurwhitec" + random_skin = 0 + icon_living = "wolftaurwhitec" + icon_rest = "wolftaurwhitec_rest" + icon_dead = "wolftaurwhitec-dead" + +/mob/living/simple_mob/vore/wolftaur/brown + icon_state = "wolftaurbrown" + random_skin = 0 + icon_living = "wolftaurbrown" + icon_rest = "wolftaurbrown_rest" + icon_dead = "wolftaurbrown-dead" + +/mob/living/simple_mob/vore/wolftaur/brownclothed + icon_state = "wolftaurbrownc" + random_skin = 0 + icon_living = "wolftaurbrownc" + icon_rest = "wolftaurbrownc_rest" + icon_dead = "wolftaurbrownc-dead" + +/mob/living/simple_mob/vore/wolftaur/black + icon_state = "wolftaurblack" + random_skin = 0 + icon_living = "wolftaurblack" + icon_rest = "wolftaurblack_rest" + icon_dead = "wolftaurblack-dead" + +/mob/living/simple_mob/vore/wolftaur/blackclothed + icon_state = "wolftaurblackc" + random_skin = 0 + icon_living = "wolftaurblackc" + icon_rest = "wolftaurblackc_rest" + icon_dead = "wolftaurblackc-dead" + +/mob/living/simple_mob/vore/wolftaur/red + icon_state = "wolftaurwood" + random_skin = 0 + icon_living = "wolftaurwood" + icon_rest = "wolftaurwood_rest" + icon_dead = "wolftaurwood-dead" + +/mob/living/simple_mob/vore/wolftaur/redclothed + icon_state = "wolftaurwoodc" + random_skin = 0 + icon_living = "wolftaurwoodc" + icon_rest = "wolftaurwoodc_rest" + icon_dead = "wolftaurwoodc-dead" + +/mob/living/simple_mob/vore/wolftaur/dark + icon_state = "wolftaurdark" + random_skin = 0 + icon_living = "wolftaurdark" + icon_rest = "wolftaurdark_rest" + icon_dead = "wolftaurdark-dead" + diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 0acbee0f02..c382585ceb 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -46,6 +46,7 @@ return ..() /mob/proc/show_message(msg, type, alt, alt_type)//Message, type of message (1 or 2), alternative message, alt message type (1 or 2) + var/time = say_timestamp() if(!client && !teleop) return @@ -68,9 +69,13 @@ if(stat == UNCONSCIOUS || sleeping > 0) to_chat(src, "... You can almost hear someone talking ...") else - to_chat(src,msg) - if(teleop) + if(client && client.prefs.chat_timestamp) + msg = replacetext(msg, new/regex("^(]*)?>)(.*)", ""), "$1[time] $2") + to_chat(src,msg) + else if(teleop) to_chat(teleop, create_text_tag("body", "BODY:", teleop.client) + "[msg]") + else + to_chat(src,msg) return // Show a message to all mobs and objects in sight of this one @@ -366,7 +371,9 @@ if(choice == "No, wait") return else if(mind.assigned_role) - var/extra_check = tgui_alert(usr, "Do you want to Quit This Round before you return to lobby? This will properly remove you from manifest, as well as prevent resleeving.","Quit This Round",list("Quit Round","Cancel")) + var/extra_check = tgui_alert(usr, "Do you want to Quit This Round before you return to lobby?\ + This will properly remove you from manifest, as well as prevent resleeving. BEWARE: Pressing 'NO' will STILL return you to lobby!", + "Quit This Round",list("Quit Round","No")) if(extra_check == "Quit Round") //Update any existing objectives involving this mob. for(var/datum/objective/O in all_objectives) @@ -406,7 +413,6 @@ to_chat(src,"Your job has been free'd up, and you can rejoin as another character or quit. Thanks for properly quitting round, it helps the server!") // Beyond this point, you're going to respawn - to_chat(usr, config.respawn_message) if(!client) log_game("[usr.key] AM failed due to disconnect.") @@ -425,7 +431,9 @@ qdel(M) return + M.has_respawned = TRUE //When we returned to main menu, send respawn message M.key = key + if(M.mind) M.mind.reset() return @@ -1142,11 +1150,20 @@ /mob/proc/throw_mode_off() src.in_throw_mode = 0 + if(client) + if(a_intent == I_HELP || client.prefs.throwmode_loud) + src.visible_message("[src] relaxes from their ready stance.","You relax from your ready stance.") if(src.throw_icon) //in case we don't have the HUD and we use the hotkey src.throw_icon.icon_state = "act_throw_off" /mob/proc/throw_mode_on() src.in_throw_mode = 1 + if(client) + if(a_intent == I_HELP || client.prefs.throwmode_loud) + if(src.get_active_hand()) + src.visible_message("[src] winds up to throw [get_active_hand()]!","You wind up to throw [get_active_hand()].") + else + src.visible_message("[src] looks ready to catch anything thrown at them!","You get ready to catch anything thrown at you.") if(src.throw_icon) src.throw_icon.icon_state = "act_throw_on" diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm index 977070fa80..ac9587f37a 100644 --- a/code/modules/mob/new_player/login.dm +++ b/code/modules/mob/new_player/login.dm @@ -31,6 +31,10 @@ var/obj/effect/lobby_image = new /obj/effect/lobby_image if(join_motd) to_chat(src, "
[join_motd]
") + if(has_respawned) + to_chat(usr, config.respawn_message) + has_respawned = FALSE + if(!mind) mind = new /datum/mind(key) mind.active = 1 @@ -53,7 +57,7 @@ var/obj/effect/lobby_image = new /obj/effect/lobby_image /mob/new_player/proc/version_warnings() var/problems // string to store message to present to player as a problem - + // TODO: Move this to a config file at some point maybe? What would the structure of that look like? switch(client.byond_build) // http://www.byond.com/forum/post/2711510 @@ -62,7 +66,7 @@ var/obj/effect/lobby_image = new /obj/effect/lobby_image // http://www.byond.com/forum/post/2711748 if(1562 to 1563) problems = "frequent known crashes related to animations" - + // Don't have a thread, just a lot of player reports. if(1564 to 1565) // Fixed in 1566 which isn't released as of this commit if(world.byond_build == 1564) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 9c04c08717..f539abbe98 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -6,6 +6,7 @@ var/totalPlayers = 0 //Player counts for the Lobby tab var/totalPlayersReady = 0 var/show_hidden_jobs = 0 //Show jobs that are set to "Never" in preferences + var/has_respawned = FALSE //Determines if we're using RESPAWN_MESSAGE var/datum/browser/panel universal_speak = 1 @@ -21,6 +22,7 @@ /mob/new_player/New() mob_list += src + verbs |= /mob/proc/insidePanel initialized = TRUE // Explicitly don't use Initialize(). New players join super early and use New() /mob/new_player/verb/new_player_panel() diff --git a/code/modules/mob/new_player/new_player_vr.dm b/code/modules/mob/new_player/new_player_vr.dm index fdbbcb10d0..0c159d8627 100644 --- a/code/modules/mob/new_player/new_player_vr.dm +++ b/code/modules/mob/new_player/new_player_vr.dm @@ -7,7 +7,7 @@ return TRUE //No Flavor Text - if (config.require_flavor && !client?.prefs?.flavor_texts["general"] && !(J.mob_type & JOB_SILICON)) + if (config.require_flavor && !(J.mob_type & JOB_SILICON) && (!client?.prefs?.flavor_texts["general"] || length(client.prefs.flavor_texts["general"]) < 30)) to_chat(src,"Please set your general flavor text to give a basic description of your character. Set it using the 'Set Flavor text' button on the 'General' tab in character setup, and choosing 'General' category.") pass = FALSE @@ -72,4 +72,4 @@ //Final popup notice if (!pass) tgui_alert_async(src,"There were problems with spawning your character. Check your message log for details.","Error") - return pass \ No newline at end of file + return pass diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index d66706be78..feef4aef9b 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -1440,6 +1440,43 @@ species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) gender = NEUTER +//its bird time mfers - Nevrean Hairs + +/datum/sprite_accessory/hair/feather_fan + name = "feather fan (nev)" + icon = 'icons/mob/human_face_alt.dmi' + icon_add = 'icons/mob/human_face_alt_add.dmi' + icon_state = "feather_fan" + flags = HAIR_TIEABLE + +/datum/sprite_accessory/hair/feather_plume_down + name = "feather plume down (nev)" + icon = 'icons/mob/human_face_alt.dmi' + icon_add = 'icons/mob/human_face_alt_add.dmi' + icon_state = "feather_plume_down" + flags = HAIR_TIEABLE + +/datum/sprite_accessory/hair/feather_plume_up + name = "feather plume up (nev)" + icon = 'icons/mob/human_face_alt.dmi' + icon_add = 'icons/mob/human_face_alt_add.dmi' + icon_state = "feather_plume_up" + flags = HAIR_TIEABLE + +/datum/sprite_accessory/hair/feather_plume_small + name = "feather plume small (nev)" + icon = 'icons/mob/human_face_alt.dmi' + icon_add = 'icons/mob/human_face_alt_add.dmi' + icon_state = "feather_plume_small" + flags = HAIR_TIEABLE + +/datum/sprite_accessory/hair/feather_halfmoon + name = "feather halfmoon (nev)" + icon = 'icons/mob/human_face_alt.dmi' + icon_add = 'icons/mob/human_face_alt_add.dmi' + icon_state = "feather_halfmoon" + flags = HAIR_TIEABLE + /* shaved name = "Shaved" diff --git a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm index 8ed35baba9..d6f7506315 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm @@ -846,7 +846,24 @@ name = "Antlers (large)" desc = "" icon = 'icons/mob/vore/ears_32x64.dmi' - icon_state = "antlers_large" + icon_state = "antlers-large" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/antlers_wide + name = "Antlers (wide)" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "antlers-wide" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/antlers_wide_e + name = "Antlers (wide) with ears" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "antlers-wide" + extra_overlay = "deer" do_colouration = 1 color_blend_mode = ICON_MULTIPLY @@ -1015,3 +1032,36 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "shark_fin_alt" + +/datum/sprite_accessory/ears/feather_horns + name = "feather horns (dual-color)" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "feather_horns" + extra_overlay = "feather_horns-fluff" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/party_plume + name = "nevrean party parrot plume(tri-color)" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "party_plume" + extra_overlay = "party_plume-1" + extra_overlay2 = "party_plume-2" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/feather_fan_ears //why yes I did abuse my abilities to make a sprite that is specifically compatible with one hair for my OC, why do you ask? - Tank + name = "feather fan avian ears" + icon = 'icons/mob/vore/ears_vr.dmi' + icon_state = "feather_fan_ears" + extra_overlay = "feather_fan_ears-outer" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +//Dino frills +/datum/sprite_accessory/ears/dino_frills + name = "triceratops frills" + icon_state = "triceratops_frill" + extra_overlay = "triceratops_frill_spikes" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm index 0fd3cebe8e..201e0a6f81 100644 --- a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm @@ -995,3 +995,137 @@ body_parts = list(BP_HEAD) species_allowed = list(SPECIES_TESHARI) +/datum/sprite_accessory/marking/vr/nevrean_beak //that's right, its bird rework time + name = "nevrean beak" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "nevrean_beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/parrot_beak + name = "parrot beak (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "parrot_beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/thin_beak //kiwis and hummingbirds + name = "thin beak (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "thin_beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/finch_beak + name = "finch beak (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "finch_beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/pelican_beak + name = "pelican beak (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "pelican_beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/pelican_beak_pouch //recolor the pouch + name = "pelican beak pouch (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "pelican_beak_pouch" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/toucan_beak + name = "toucan beak (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "toucan_beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/toucan_beak_tip //recolor the tip + name = "toucan beak tip (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "toucan_beak_tip" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/raptor_beak_small + name = "bird of prey beak, small (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "raptor_beak_small" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/raptor_beak_large + name = "bird of prey beak, large (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "raptor_beak_large" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/nev_heartface + name = "heart face (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "heartface" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/nev_fullhead + name = "full head recolor (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "full_head_nev" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/nev_tophead + name = "top of the head recolor (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "top_head_nev" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr/nev_cheeks //the face ones + name = "bird face cheeks (nev)" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "cheeks_nev" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + + +// Dino stuff +/datum/sprite_accessory/marking/vr_dino_horn + name = "dino horn" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "dino_horn" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr_dino_plates + name = "stegosaurus plates" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "stegoplates" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/vr_triceratops_beak + name = "triceratops beak" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "triceratops_beak" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr_triceratops_horn + name = "triceratops horn" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "triceratops_horn" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vr_backsail + name = "backsail" + icon = 'icons/mob/human_races/markings_vr.dmi' + icon_state = "backsail" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO) \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm index fd3210dba4..87beb3a6a4 100644 --- a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm @@ -1434,3 +1434,37 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "sharktail_tipmarkings" + +/datum/sprite_accessory/tail/narrow_tail + name = "feathered narrow tail, colorable" + desc = "" + icon_state = "narrowtail" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/narrow_tail2 + name = "feathered narrow tail, 2 colors" + desc = "" + icon_state = "narrowtail_2color" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "narrowtail_2color-1" + + +// Dino Tails + +/datum/sprite_accessory/tail/clubtail + name = "dino clubtail, colorable" + desc = "" + icon_state = "clubtail" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "clubtail-1" + +/datum/sprite_accessory/tail/spiketail + name = "dino spiketail, colorable" + desc = "" + icon_state = "spiketail" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "spiketail-1" \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm index 6037be6402..2614db4ef7 100644 --- a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm @@ -1026,6 +1026,7 @@ name = "Naga (Taur, Fat, dual color)" icon_state = "fatnaga_s" extra_overlay = "fatnaga_markings" + suit_sprites = null /datum/sprite_accessory/tail/taur/fox name = "Fox (Taur, 3-color)" diff --git a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm index 94db4dee96..1f85bd1566 100644 --- a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm @@ -325,4 +325,53 @@ desc = "" icon = 'icons/mob/vore/wings_vr.dmi' icon_state = "feathered_kara" - ckeys_allowed = list("satinisle") \ No newline at end of file + ckeys_allowed = list("satinisle") + +/datum/sprite_accessory/wing/winglets //smol wingarms at the elbow + name = "feathered winglets" + desc = "" + icon_state = "winglets" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/wing/wingarms_speckles + name = "wingarms, speckled" + desc = "" + icon_state = "wingarms_speckles" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "wingarms_speckles-speckles" + +/datum/sprite_accessory/wing/wingarms_2tone + name = "wingarms, 2 colors" + desc = "" + icon_state = "wingarms_2tone" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "wingarms_2tone-1" + +/datum/sprite_accessory/wing/feather2_speckles + name = "large feathered wings, speckled" + desc = "" + icon_state = "feather2_speckles" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "feather2_speckles-speckles" + +/datum/sprite_accessory/wing/feather2_tricolor + name = "large feathered wings, tricolor" + desc = "" + icon_state = "feather2_tricolor" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "feather2_tricolor-1" + extra_overlay2 = "feather2_tricolor-2" + +// dino wings +/datum/sprite_accessory/wing/pterodactyl_wings + name = "pterodactyl wings" + desc = "" + icon_state = "pterodactyl_wing_frame" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "pterodactyl_wing_membrane" \ No newline at end of file diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 2961384299..ce58e3d851 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -82,7 +82,7 @@ if(input) log_subtle(message,src) - message = "[src] [input]" + message = "[src] [input]" if(!(subtle_mode == "Adjacent Turfs (Default)")) message = "(T) " + message else @@ -200,7 +200,8 @@ for(var/mob/M as anything in vis_mobs) if(isnewplayer(M)) continue - if(isobserver(M) && !is_preference_enabled(/datum/client_preference/whisubtle_vis) && !M.client?.holder) + if(isobserver(M) && (!M.is_preference_enabled(/datum/client_preference/ghost_see_whisubtle) || \ + !is_preference_enabled(/datum/client_preference/whisubtle_vis) && !M.client?.holder)) spawn(0) M.show_message(undisplayed_message, 2) else @@ -285,13 +286,13 @@ return else pb = db.pred_body - to_chat(pb, "The captive mind of \the [M] thinks, \"[message]\"") //To our pred if dominated brain + to_chat(pb, "The captive mind of \the [M] thinks, \"[message]\"") //To our pred if dominated brain if(pb.is_preference_enabled(/datum/client_preference/subtle_sounds)) pb << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE else if(M.absorbed && isbelly(M.loc)) pb = M.loc.loc - to_chat(pb, "\The [M] thinks, \"[message]\"") //To our pred if absorbed + to_chat(pb, "\The [M] thinks, \"[message]\"") //To our pred if absorbed if(pb.is_preference_enabled(/datum/client_preference/subtle_sounds)) pb << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE @@ -301,14 +302,14 @@ for(var/I in pb.contents) if(istype(I, /mob/living/dominated_brain) && I != M) var/mob/living/dominated_brain/db = I - to_chat(db, "The captive mind of \the [M] thinks, \"[message]\"") //To any dominated brains in the pred + to_chat(db, "The captive mind of \the [M] thinks, \"[message]\"") //To any dominated brains in the pred if(db.is_preference_enabled(/datum/client_preference/subtle_sounds)) db << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE for(var/B in pb.vore_organs) for(var/mob/living/L in B) if(L.absorbed && L != M && L.ckey) - to_chat(L, "\The [M] thinks, \"[message]\"") //To any absorbed people in the pred + to_chat(L, "\The [M] thinks, \"[message]\"") //To any absorbed people in the pred if(L.is_preference_enabled(/datum/client_preference/subtle_sounds)) L << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE @@ -317,33 +318,34 @@ for(var/I in M.contents) if(istype(I, /mob/living/dominated_brain)) var/mob/living/dominated_brain/db = I - to_chat(db, "\The [M] thinks, \"[message]\"") //To any dominated brains inside us + to_chat(db, "\The [M] thinks, \"[message]\"") //To any dominated brains inside us if(db.is_preference_enabled(/datum/client_preference/subtle_sounds)) db << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE for(var/B in M.vore_organs) for(var/mob/living/L in B) if(L.absorbed) - to_chat(L, "\The [M] thinks, \"[message]\"") //To any absorbed people inside us + to_chat(L, "\The [M] thinks, \"[message]\"") //To any absorbed people inside us if(L.is_preference_enabled(/datum/client_preference/subtle_sounds)) L << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE if(f) //We found someone to send the message to if(pb) - to_chat(M, "You think \"[message]\"") //To us if we are the prey + to_chat(M, "You think \"[message]\"") //To us if we are the prey if(M.is_preference_enabled(/datum/client_preference/subtle_sounds)) M << sound('sound/talksounds/subtle_sound.ogg', volume = 50) else - to_chat(M, "You think \"[message]\"") //To us if we are the pred + to_chat(M, "You think \"[message]\"") //To us if we are the pred if(M.is_preference_enabled(/datum/client_preference/subtle_sounds)) M << sound('sound/talksounds/subtle_sound.ogg', volume = 50) for (var/mob/G in player_list) if (istype(G, /mob/new_player)) continue - else if(isobserver(G) && G.is_preference_enabled(/datum/client_preference/ghost_ears)) + else if(isobserver(G) && G.is_preference_enabled(/datum/client_preference/ghost_ears && \ + G.is_preference_enabled(/datum/client_preference/ghost_see_whisubtle))) if(is_preference_enabled(/datum/client_preference/whisubtle_vis) || G.client.holder) - to_chat(G, "\The [M] thinks, \"[message]\"") + to_chat(G, "\The [M] thinks, \"[message]\"") log_say(message,M) else //There wasn't anyone to send the message to, pred or prey, so let's just say it instead and correct our psay just in case. M.forced_psay = FALSE @@ -381,14 +383,14 @@ return else pb = db.pred_body - to_chat(pb, "\The [M] [message]") //To our pred if dominated brain + to_chat(pb, "\The [M] [message]") //To our pred if dominated brain if(pb.is_preference_enabled(/datum/client_preference/subtle_sounds)) pb << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE else if(M.absorbed && isbelly(M.loc)) pb = M.loc.loc - to_chat(pb, "\The [M] [message]") //To our pred if absorbed + to_chat(pb, "\The [M] [message]") //To our pred if absorbed if(pb.is_preference_enabled(/datum/client_preference/subtle_sounds)) pb << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE @@ -398,14 +400,14 @@ for(var/I in pb.contents) if(istype(I, /mob/living/dominated_brain) && I != M) var/mob/living/dominated_brain/db = I - to_chat(db, "\The [M] [message]") //To any dominated brains in the pred + to_chat(db, "\The [M] [message]") //To any dominated brains in the pred if(db.is_preference_enabled(/datum/client_preference/subtle_sounds)) db << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE for(var/B in pb.vore_organs) for(var/mob/living/L in B) if(L.absorbed && L != M && L.ckey) - to_chat(L, "\The [M] [message]") //To any absorbed people in the pred + to_chat(L, "\The [M] [message]") //To any absorbed people in the pred if(L.is_preference_enabled(/datum/client_preference/subtle_sounds)) L << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE @@ -414,33 +416,34 @@ for(var/I in M.contents) if(istype(I, /mob/living/dominated_brain)) var/mob/living/dominated_brain/db = I - to_chat(db, "\The [M] [message]") //To any dominated brains inside us + to_chat(db, "\The [M] [message]") //To any dominated brains inside us if(db.is_preference_enabled(/datum/client_preference/subtle_sounds)) db << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE for(var/B in M.vore_organs) for(var/mob/living/L in B) if(L.absorbed) - to_chat(L, "\The [M] [message]") //To any absorbed people inside us + to_chat(L, "\The [M] [message]") //To any absorbed people inside us if(L.is_preference_enabled(/datum/client_preference/subtle_sounds)) L << sound('sound/talksounds/subtle_sound.ogg', volume = 50) f = TRUE if(f) //We found someone to send the message to if(pb) - to_chat(M, "\The [M] [message]") //To us if we are the prey + to_chat(M, "\The [M] [message]") //To us if we are the prey if(M.is_preference_enabled(/datum/client_preference/subtle_sounds)) M << sound('sound/talksounds/subtle_sound.ogg', volume = 50) else - to_chat(M, "\The [M] [message]") //To us if we are the pred + to_chat(M, "\The [M] [message]") //To us if we are the pred if(M.is_preference_enabled(/datum/client_preference/subtle_sounds)) M << sound('sound/talksounds/subtle_sound.ogg', volume = 50) for (var/mob/G in player_list) if (istype(G, /mob/new_player)) continue - else if(isobserver(G) && G.is_preference_enabled(/datum/client_preference/ghost_ears)) + else if(isobserver(G) && G.is_preference_enabled(/datum/client_preference/ghost_ears && \ + G.is_preference_enabled(/datum/client_preference/ghost_see_whisubtle))) if(is_preference_enabled(/datum/client_preference/whisubtle_vis) || G.client.holder) - to_chat(G, "\The [M] [message]") + to_chat(G, "\The [M] [message]") log_say(message,M) else //There wasn't anyone to send the message to, pred or prey, so let's just emote it instead and correct our psay just in case. M.forced_psay = FALSE diff --git a/code/modules/modular_computers/computers/modular_computer/interaction.dm b/code/modules/modular_computers/computers/modular_computer/interaction.dm index 4cc9c8ba89..539e051689 100644 --- a/code/modules/modular_computers/computers/modular_computer/interaction.dm +++ b/code/modules/modular_computers/computers/modular_computer/interaction.dm @@ -146,7 +146,7 @@ try_install_component(user, C) else to_chat(user, "This component is too large for \the [src].") - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) var/list/components = get_all_components() if(components.len) to_chat(user, "Remove all components from \the [src] before disassembling it.") @@ -155,8 +155,8 @@ src.visible_message("\The [src] has been disassembled by [user].") qdel(src) return - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.isOn()) to_chat(user, "\The [W] is off.") return @@ -171,7 +171,7 @@ to_chat(user, "You repair \the [src].") return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) var/list/all_components = get_all_components() if(!all_components.len) to_chat(user, "This device doesn't have any components installed.") diff --git a/code/modules/modular_computers/computers/subtypes/dev_telescreen.dm b/code/modules/modular_computers/computers/subtypes/dev_telescreen.dm index f1ae59c80c..5d701ef5f0 100644 --- a/code/modules/modular_computers/computers/subtypes/dev_telescreen.dm +++ b/code/modules/modular_computers/computers/subtypes/dev_telescreen.dm @@ -25,7 +25,7 @@ name = "telescreen" /obj/item/modular_computer/telescreen/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) if(anchored) shutdown_computer() anchored = FALSE diff --git a/code/modules/multiz/ladder_assembly_vr.dm b/code/modules/multiz/ladder_assembly_vr.dm index b6e5bddf7e..377a956227 100644 --- a/code/modules/multiz/ladder_assembly_vr.dm +++ b/code/modules/multiz/ladder_assembly_vr.dm @@ -24,7 +24,7 @@ else if(istype(get_area(src), /area/shuttle)) to_chat(user, "\The [src] cannot be constructed on a shuttle.") return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) switch(state) if(CONSTRUCTION_UNANCHORED) state = CONSTRUCTION_WRENCHED @@ -44,8 +44,8 @@ to_chat(user, "\The [src] needs to be unwelded.") return - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() switch(state) if(CONSTRUCTION_UNANCHORED) to_chat(user, "The refinforcing bolts need to be secured.") diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index 356b53c877..851d917f0f 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -46,15 +46,28 @@ to_chat(src, "\The [start] is in the way.") return 0 - if(!destination.CanZPass(src, direction)) - to_chat(src, "\The [destination] blocks your way.") - return 0 + if(direction == DOWN) + var/turf/simulated/floor/water/deep/ocean/diving/sink = start + if(istype(sink) && !destination.density) + var/pull_up_time = max(3 SECONDS + (src.movement_delay() * 10), 1) + to_chat(src, "You start diving underwater...") + src.audible_message("[src] begins to dive under the water.", runemessage = "splish splosh") + if(do_after(src, pull_up_time)) + to_chat(src, "You reach the sea floor.") + else + to_chat(src, "You stopped swimming downwards.") + return 0 + + else if(!destination.CanZPass(src, direction)) + to_chat(src, "\The [destination] blocks your way.") + return 0 var/area/area = get_area(src) if(area.has_gravity() && !can_overcome_gravity()) if(direction == UP) var/obj/structure/lattice/lattice = locate() in destination.contents var/obj/structure/catwalk/catwalk = locate() in destination.contents + var/turf/simulated/floor/water/deep/ocean/diving/surface = destination if(lattice) var/pull_up_time = max(5 SECONDS + (src.movement_delay() * 10), 1) @@ -66,6 +79,16 @@ to_chat(src, "You gave up on pulling yourself up.") return 0 + else if(istype(surface)) + var/pull_up_time = max(5 SECONDS + (src.movement_delay() * 10), 1) + to_chat(src, "You start swimming upwards...") + src.audible_message("[src] begins to swim towards the surface.", runemessage = "splish splosh") + if(do_after(src, pull_up_time)) + to_chat(src, "You reach the surface.") + else + to_chat(src, "You stopped swimming upwards.") + return 0 + else if(catwalk?.hatch_open) var/pull_up_time = max(5 SECONDS + (src.movement_delay() * 10), 1) to_chat(src, "You grab the edge of \the [catwalk] and start pulling yourself upward...") diff --git a/code/modules/nifsoft/nif.dm b/code/modules/nifsoft/nif.dm index ec88b8a3cb..c64e196df5 100644 --- a/code/modules/nifsoft/nif.dm +++ b/code/modules/nifsoft/nif.dm @@ -224,7 +224,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable //Attackby proc, for maintenance /obj/item/device/nif/attackby(obj/item/weapon/W, mob/user as mob) - if(open == 0 && W.is_screwdriver()) + if(open == 0 && W.has_tool_quality(TOOL_SCREWDRIVER)) if(do_after(user, 4 SECONDS, src) && open == 0) user.visible_message("[user] unscrews and pries open \the [src].","You unscrew and pry open \the [src].") playsound(src, 'sound/items/Screwdriver.ogg', 50, 1) @@ -250,7 +250,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable user.visible_message("[user] resets several circuits in \the [src].","You find and repair any faulty circuits in \the [src].") open = 3 update_icon() - else if(open == 3 && W.is_screwdriver()) + else if(open == 3 && W.has_tool_quality(TOOL_SCREWDRIVER)) if(do_after(user, 3 SECONDS, src) && open == 3) user.visible_message("[user] closes up \the [src].","You re-seal \the [src] for use once more.") playsound(src, 'sound/items/Screwdriver.ogg', 50, 1) diff --git a/code/modules/nifsoft/nif_tgui.dm b/code/modules/nifsoft/nif_tgui.dm index b3f21c39e5..7699e9929e 100644 --- a/code/modules/nifsoft/nif_tgui.dm +++ b/code/modules/nifsoft/nif_tgui.dm @@ -98,6 +98,8 @@ * Standard TGUI stub to open the NIF.js template. */ /obj/item/device/nif/tgui_interact(mob/user, datum/tgui/ui, datum/tgui/parent_ui) + if(!ishuman(user)) + return FALSE ui = SStgui.try_update_ui(user, src, ui) if(!ui) ui = new(user, src, "NIF", name) diff --git a/code/modules/nifsoft/nifsoft.dm b/code/modules/nifsoft/nifsoft.dm index 7b6ecd6323..297e064ae8 100644 --- a/code/modules/nifsoft/nifsoft.dm +++ b/code/modules/nifsoft/nifsoft.dm @@ -381,3 +381,26 @@ ..() for(var/i = 0 to 7) new /obj/item/weapon/disk/nifsoft/mining(src) + +// Mass Alteration Disk // +/obj/item/weapon/disk/nifsoft/sizechange + name = "NIFSoft Uploader - Mass Alteration" + desc = "Contains free NIFSofts for special purposes.\n\ + It has a small label: \n\ + \"Portable NIFSoft Installation Media. \n\ + Align ocular port with eye socket and depress red plunger.\"" + + icon_state = "mining" + stored_organic = /datum/nifsoft/sizechange + stored_synthetic = /datum/nifsoft/sizechange + +/obj/item/weapon/storage/box/nifsofts_sizechange + name = "mass alteration nifsoft uploaders" + desc = "A box of free nifsofts for special purposes." + icon = 'icons/obj/boxes.dmi' + icon_state = "nifsoft_kit_mining" + +/obj/item/weapon/storage/box/nifsofts_sizechange/New() + ..() + for(var/i = 0 to 7) + new /obj/item/weapon/disk/nifsoft/sizechange(src) \ No newline at end of file diff --git a/code/modules/organs/internal/augment/armmounted.dm b/code/modules/organs/internal/augment/armmounted.dm index 932f4cf646..85b9f4aa5a 100644 --- a/code/modules/organs/internal/augment/armmounted.dm +++ b/code/modules/organs/internal/augment/armmounted.dm @@ -21,7 +21,7 @@ integrated_object_type = /obj/item/weapon/gun/energy/laser/mounted/augment /obj/item/organ/internal/augment/armmounted/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) switch(organ_tag) if(O_AUG_L_FOREARM) organ_tag = O_AUG_R_FOREARM @@ -66,7 +66,7 @@ integrated_object_type = /obj/item/weapon/portable_scanner /obj/item/organ/internal/augment/armmounted/hand/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) switch(organ_tag) if(O_AUG_L_HAND) organ_tag = O_AUG_R_HAND @@ -110,7 +110,7 @@ integrated_object_type = null /obj/item/organ/internal/augment/armmounted/shoulder/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) switch(organ_tag) if(O_AUG_L_UPPERARM) organ_tag = O_AUG_R_UPPERARM diff --git a/code/modules/organs/organ.dm b/code/modules/organs/organ.dm index bd77804b09..ec117338fa 100644 --- a/code/modules/organs/organ.dm +++ b/code/modules/organs/organ.dm @@ -485,7 +485,7 @@ var/list/organ_cache = list() return TRUE if(robotic >= ORGAN_ROBOT) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) return TRUE else diff --git a/code/modules/overmap/disperser/disperser.dm b/code/modules/overmap/disperser/disperser.dm index c7a5efd130..005ee3719e 100644 --- a/code/modules/overmap/disperser/disperser.dm +++ b/code/modules/overmap/disperser/disperser.dm @@ -22,7 +22,7 @@ to_chat(user, "The maintenance panel is open.") /obj/machinery/disperser/attackby(obj/item/I, mob/user) - if(I && I.is_wrench()) + if(I && I.has_tool_quality(TOOL_WRENCH)) if(panel_open) user.visible_message("\The [user] rotates \the [src] with \the [I].", "You rotate \the [src] with \the [I].") diff --git a/code/modules/overmap/overmap_shuttle.dm b/code/modules/overmap/overmap_shuttle.dm index d1bc6793bb..33af0f60f2 100644 --- a/code/modules/overmap/overmap_shuttle.dm +++ b/code/modules/overmap/overmap_shuttle.dm @@ -78,7 +78,7 @@ var/list/waypoints = S.get_waypoints(name) for(var/obj/effect/shuttle_landmark/LZ in waypoints) if(LZ.is_valid(src)) - res["[waypoints[LZ]] - [LZ.name]"] = LZ + res["[waypoints[LZ]] - [LZ.name]"] = LZ return res /datum/shuttle/autodock/overmap/get_location_name() @@ -167,7 +167,7 @@ ..() /obj/structure/fuel_port/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) if(opened) to_chat(user, "You tightly shut \the [src] door.") playsound(src, 'sound/effects/locker_close.ogg', 25, 0, -3) diff --git a/code/modules/overmap/sectors.dm b/code/modules/overmap/sectors.dm index 285d1e3a1b..327cca74ad 100644 --- a/code/modules/overmap/sectors.dm +++ b/code/modules/overmap/sectors.dm @@ -12,7 +12,7 @@ var/known = TRUE /// Name prior to being scanned if !known var/unknown_name = "unknown sector" - var/real_name + var/real_name // Used for late-load overmap ship distress beacons and scan_data for lateload/vvar'd scannable overmap objects var/real_desc /// Icon_state prior to being scanned if !known var/unknown_state = "field" @@ -155,24 +155,12 @@ /obj/effect/overmap/visitable/get_scan_data() if(!known) known = TRUE - if(real_name) - name = real_name - else - name = initial(name) - if(real_icon_state) //Only true when GMs/Admins play with the object - if(real_icon) //Only true if GMs/Admins want a non-standard icon from outside 'icons/obj/overmap.dmi' - icon = real_icon - icon_state = real_icon_state - else - icon_state = initial(icon_state) - if(real_color) - color = real_color - else - color = initial(color) - if(real_desc) - desc = real_desc - else - desc = initial(desc) + name = (real_name ? real_name : initial(name)) + color = (real_color ? real_color : initial(color)) + desc = (real_desc ? real_desc : initial(desc)) + if(real_icon) //Only true if GMs/Admins want a non-standard icon from outside 'icons/obj/overmap.dmi' + icon = real_icon + icon_state = (real_icon_state ? real_icon_state : initial(icon_state)) return ..() /obj/effect/overmap/visitable/proc/get_space_zlevels() @@ -254,7 +242,7 @@ admin_chat_message(message = "Overmap panic button hit on z[z] ([name]) by '[user?.ckey || "Unknown"]'", color = "#FF2222") //VOREStation Add var/message = "This is an automated distress signal from a MIL-DTL-93352-compliant beacon transmitting on [PUB_FREQ*0.1]kHz. \ - This beacon was launched from '[initial(name)]'. I can provide this additional information to rescuers: [get_distress_info()]. \ + This beacon was launched from '[real_name ? real_name : initial(name)]'. I can provide this additional information to rescuers: [get_distress_info()]. \ Per the Interplanetary Convention on Space SAR, those receiving this message must attempt rescue, \ or relay the message to those who can. This message will repeat one time in 5 minutes. Thank you for your urgent assistance." @@ -275,7 +263,7 @@ return "\[X:[x], Y:[y]\]" /obj/effect/overmap/visitable/proc/distress_update() - var/message = "This is the final message from the distress beacon launched from '[initial(name)]'. I can provide this additional information to rescuers: [get_distress_info()]. \ + var/message = "This is the final message from the distress beacon launched from '[real_name ? real_name : initial(name)]'. I can provide this additional information to rescuers: [get_distress_info()]. \ Please render assistance under your obligations per the Interplanetary Convention on Space SAR, or relay this message to a party who can. Thank you for your urgent assistance." for(var/zlevel in levels_for_distress) diff --git a/code/modules/overmap/ships/computers/sensors.dm b/code/modules/overmap/ships/computers/sensors.dm index 21cd9654ee..18c0e36196 100644 --- a/code/modules/overmap/ships/computers/sensors.dm +++ b/code/modules/overmap/ships/computers/sensors.dm @@ -145,9 +145,9 @@ /obj/machinery/shipsensors/attackby(obj/item/weapon/W, mob/user) var/damage = max_health - health - if(damage && istype(W, /obj/item/weapon/weldingtool)) + if(damage && W.has_tool_quality(TOOL_WELDER)) - var/obj/item/weapon/weldingtool/WT = W + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.isOn()) return diff --git a/code/modules/paperwork/clipboard.dm b/code/modules/paperwork/clipboard.dm index 5aeb72639b..58171494a1 100644 --- a/code/modules/paperwork/clipboard.dm +++ b/code/modules/paperwork/clipboard.dm @@ -59,6 +59,13 @@ return +/obj/item/weapon/clipboard/afterattack(turf/T as turf, mob/user as mob) + for(var/obj/item/weapon/paper/P in T) + P.loc = src + toppaper = P + update_icon() + to_chat(user, "You clip the [P] onto \the [src].") + /obj/item/weapon/clipboard/attack_self(mob/user as mob) var/dat = "Clipboard" if(haspen) diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm index 780307f0db..762dbdbb77 100644 --- a/code/modules/paperwork/faxmachine.dm +++ b/code/modules/paperwork/faxmachine.dm @@ -12,6 +12,7 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins icon_state = "fax" insert_anim = "faxsend" req_one_access = list() + density = 0 use_power = USE_POWER_IDLE idle_power_usage = 30 @@ -219,9 +220,18 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins return switch(action) + if("rename") + if(copyitem) + var/new_name = tgui_input_text(usr, "Enter new paper title", "This will show up in the preview for staff chat on discord when sending \ + to central.", copyitem.name, MAX_NAME_LEN) + if(!new_name) + return + copyitem.name = new_name if("send") if(copyitem) if (destination in admin_departments) + if(check_if_default_title_and_rename()) + return send_admin_fax(usr, destination) else sendfax(destination) @@ -238,12 +248,46 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins return TRUE + +/obj/machinery/photocopier/faxmachine/proc/check_if_default_title_and_rename() +/* +Returns TRUE only on "Cancel" or invalid newname, else returns null/false +Extracted to its own procedure for easier logic handling with paper bundles. +*/ + var/question_text = "Your fax is set to its default name. It's advisable to rename it to something self-explanatory to" + + if(istype(copyitem, /obj/item/weapon/paper_bundle)) + var/obj/item/weapon/paper_bundle/B = copyitem + if(B.name != initial(B.name)) + var/atom/page1 = B.pages[1] //atom is enough for us to ensure it has name var. would've used ?. opertor, but linter doesnt like. + var/atom/page2 = B.pages[2] + if((istype(page1) && B.name == page1.name) || (istype(page2) && B.name == page2.name) ) + question_text = "Your fax is set to use the title of its first or second page. It's advisable to rename it to something \ + summarizing the entire bundle succintly to" + else + return FALSE + else if(copyitem.name != initial(copyitem.name)) + return FALSE + + var/choice = tgui_alert(usr, "[question_text] improve response time from staff when sending to discord. \ + Renaming it changes its preview in staff chat.", \ + "Default name detected", list("Change Title","Continue", "Cancel")) + if(choice == "Cancel") + return TRUE + else if(choice == "Change Title") + var/new_name = tgui_input_text(usr, "Enter new fax title", "This will show up in the preview for staff chat on discord when sending \ + to central.", copyitem.name, MAX_NAME_LEN) + if(!new_name) + return TRUE + copyitem.name = new_name + + /obj/machinery/photocopier/faxmachine/attackby(obj/item/O as obj, mob/user as mob) if(istype(O, /obj/item/weapon/card/id) && !scan) user.drop_from_inventory(O) O.forceMove(src) scan = O - else if(O.is_multitool() && panel_open) + else if(O.has_tool_quality(TOOL_MULTITOOL) && panel_open) var/input = sanitize(tgui_input_text(usr, "What Department ID would you like to give this fax machine?", "Multitool-Fax Machine Interface", department)) if(!input) to_chat(usr, "No input found. Please hang up and try your call again.") diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm index 396390a650..e4f262b2ae 100644 --- a/code/modules/paperwork/filingcabinet.dm +++ b/code/modules/paperwork/filingcabinet.dm @@ -38,11 +38,11 @@ P.loc = src open_animation() SStgui.update_uis(src) - else if(P.is_wrench()) + else if(P.has_tool_quality(TOOL_WRENCH)) playsound(src, P.usesound, 50, 1) anchored = !anchored to_chat(user, "You [anchored ? "wrench" : "unwrench"] \the [src].") - else if(P.is_screwdriver()) + else if(P.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You begin taking the [name] apart.") playsound(src, P.usesound, 50, 1) if(do_after(user, 10 * P.toolspeed)) diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index 507c5f5d7b..0aab10f758 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -75,6 +75,12 @@ name = "folder[(n_name ? text("- '[n_name]'") : null)]" return +/obj/item/weapon/folder/afterattack(turf/T as turf, mob/user as mob) + for(var/obj/item/weapon/paper/P in T) + P.loc = src + update_icon() + to_chat(user, "You tuck the [P] into \the [src].") + /obj/item/weapon/folder/attack_self(mob/user as mob) var/dat = "[name]" diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 72f852f653..f4f86289b0 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -542,6 +542,22 @@ tape.stick(src, user) return + if(istype(P, /obj/item/weapon/clipboard)) + var/obj/item/weapon/clipboard/CB = P + if(src.loc == user) + user.drop_from_inventory(src) + src.loc = CB + CB.toppaper = src + CB.update_icon() + to_chat(user, "You clip the [src] onto \the [CB].") + + if(istype(P, /obj/item/weapon/folder)) + if(src.loc == user) + user.drop_from_inventory(src) + src.loc = P + P.update_icon() + to_chat(user, "You tuck the [src] into \the [P].") + if(istype(P, /obj/item/weapon/paper) || istype(P, /obj/item/weapon/photo)) if (istype(P, /obj/item/weapon/paper/carbon)) var/obj/item/weapon/paper/carbon/C = P @@ -550,9 +566,9 @@ add_fingerprint(user) return var/obj/item/weapon/paper_bundle/B = new(src.loc) - if (name != "paper") + if (name != initial(name)) B.name = name - else if (P.name != "paper" && P.name != "photo") + else if (P.name != initial(P.name)) B.name = P.name user.drop_from_inventory(P) if (istype(user, /mob/living/carbon/human)) diff --git a/code/modules/paperwork/papershredder.dm b/code/modules/paperwork/papershredder.dm index 19a0994699..4360344029 100644 --- a/code/modules/paperwork/papershredder.dm +++ b/code/modules/paperwork/papershredder.dm @@ -35,7 +35,7 @@ if(istype(W, /obj/item/weapon/storage)) empty_bin(user, W) return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 50, 1) anchored = !anchored to_chat(user, "You [anchored ? "wrench" : "unwrench"] \the [src].") diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index ae9bb2f509..5ce9eacd99 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -166,7 +166,7 @@ to_chat(user, "This cartridge is not yet ready for replacement! Use up the rest of the toner.") flick("photocopier_notoner", src) playsound(loc, 'sound/machines/buzz-two.ogg', 75, 1) - else if(O.is_wrench()) + else if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 50, 1) anchored = !anchored to_chat(user, "You [anchored ? "wrench" : "unwrench"] \the [src].") diff --git a/code/modules/persistence/graffiti.dm b/code/modules/persistence/graffiti.dm index e9a031bc8e..feb561f482 100644 --- a/code/modules/persistence/graffiti.dm +++ b/code/modules/persistence/graffiti.dm @@ -43,8 +43,8 @@ . += "\n It reads \"[message]\"." /obj/effect/decal/writing/attackby(var/obj/item/thing, var/mob/user) - if(istype(thing, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/welder = thing + if(thing.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/welder = thing.get_welder() if(welder.isOn() && welder.remove_fuel(0,user) && do_after(user, 5, src) && !QDELETED(src)) playsound(src.loc, welder.usesound, 50, 1) user.visible_message("\The [user] clears away some graffiti.") diff --git a/code/modules/persistence/noticeboard.dm b/code/modules/persistence/noticeboard.dm index c187225fa1..54f07d2a58 100644 --- a/code/modules/persistence/noticeboard.dm +++ b/code/modules/persistence/noticeboard.dm @@ -55,7 +55,7 @@ icon_state = "[base_icon_state][LAZYLEN(notices)]" /obj/structure/noticeboard/attackby(obj/item/I, mob/user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) var/choice = tgui_input_list(usr, "Which direction do you wish to place the noticeboard?", "Noticeboard Offset", list("North", "South", "East", "West", "No Offset")) if(choice && Adjacent(user) && I.loc == user && !user.incapacitated()) playsound(loc, 'sound/items/Screwdriver.ogg', 50, 1) @@ -75,7 +75,7 @@ if("No Offset") return return - else if(I.is_wrench()) + else if(I.has_tool_quality(TOOL_WRENCH)) visible_message("[user] begins dismantling [src].") playsound(loc, 'sound/items/Ratchet.ogg', 50, 1) if(do_after(user, 50, src)) @@ -114,8 +114,8 @@ /obj/structure/noticeboard/tgui_data(mob/user) var/list/data = ..() - - + + var/list/tgui_notices = list() for(var/obj/item/I in src.notices) tgui_notices.Add(list(list( diff --git a/code/modules/power/antimatter/control.dm b/code/modules/power/antimatter/control.dm index 8f3c3db009..189f029501 100644 --- a/code/modules/power/antimatter/control.dm +++ b/code/modules/power/antimatter/control.dm @@ -140,7 +140,7 @@ /obj/machinery/power/am_control_unit/attackby(obj/item/W, mob/user) if(!istype(W) || !user) return - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(!anchored) playsound(src, W.usesound, 75, 1) user.visible_message("[user.name] secures the [src.name] to the floor.", \ diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 987a391253..099434b87c 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -467,7 +467,7 @@ GLOBAL_LIST_EMPTY(apcs) if(issilicon(user) && get_dist(src,user) > 1) return attack_hand(user) add_fingerprint(user) - if(W.is_crowbar() && opened) + if(W.has_tool_quality(TOOL_CROWBAR) && opened) if(has_electronics == APC_HAS_ELECTRONICS_WIRED) if(terminal) to_chat(user, "Disconnect the wires first.") @@ -491,7 +491,7 @@ GLOBAL_LIST_EMPTY(apcs) else if(opened != 2) //cover isn't removed opened = 0 update_icon() - else if(W.is_crowbar() && !(stat & BROKEN) ) + else if(W.has_tool_quality(TOOL_CROWBAR) && !(stat & BROKEN) ) if(coverlocked && !(stat & MAINT)) to_chat(user, "The cover is locked and cannot be opened.") return @@ -517,7 +517,7 @@ GLOBAL_LIST_EMPTY(apcs) "You insert the power cell.") chargecount = 0 update_icon() - else if (W.is_screwdriver()) // haxing + else if (W.has_tool_quality(TOOL_SCREWDRIVER)) // haxing if(opened) if(cell) to_chat(user, "Remove the power cell first.") @@ -573,7 +573,7 @@ GLOBAL_LIST_EMPTY(apcs) "You add cables to the APC frame.") make_terminal() terminal.connect_to_network() - else if(W.is_wirecutter() && terminal && opened && has_electronics != APC_HAS_ELECTRONICS_SECURED) + else if(W.has_tool_quality(TOOL_WIRECUTTER) && terminal && opened && has_electronics != APC_HAS_ELECTRONICS_SECURED) var/turf/T = loc if(istype(T) && !T.is_plating()) to_chat(user, "You must remove the floor plating in front of the APC first.") @@ -605,8 +605,8 @@ GLOBAL_LIST_EMPTY(apcs) else if(istype(W, /obj/item/weapon/module/power_control) && opened && has_electronics == APC_HAS_ELECTRONICS_NONE && ((stat & BROKEN))) to_chat(user, "The [src] is too broken for that. Repair it first.") return - else if(istype(W, /obj/item/weapon/weldingtool) && opened && has_electronics == APC_HAS_ELECTRONICS_NONE && !terminal) - var/obj/item/weapon/weldingtool/WT = W + else if(W.has_tool_quality(TOOL_WELDER) && opened && has_electronics == APC_HAS_ELECTRONICS_NONE && !terminal) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(WT.get_fuel() < 3) to_chat(user, "You need more welding fuel to complete this task.") return @@ -674,7 +674,7 @@ GLOBAL_LIST_EMPTY(apcs) else if(istype(user, /mob/living/silicon)) return attack_hand(user) - if(!opened && wiresexposed && (istype(W, /obj/item/device/multitool) || W.is_wirecutter() || istype(W, /obj/item/device/assembly/signaler))) + if(!opened && wiresexposed && (istype(W, /obj/item/device/multitool) || W.has_tool_quality(TOOL_WIRECUTTER) || istype(W, /obj/item/device/assembly/signaler))) return attack_hand(user) //Placeholder until someone can do take_damage() for APCs or something. to_chat(user, "The [name] looks too sturdy to bash open with \the [W.name].") diff --git a/code/modules/power/batteryrack_vr.dm b/code/modules/power/batteryrack_vr.dm index 8cc2b2c636..f6c4f3d36a 100644 --- a/code/modules/power/batteryrack_vr.dm +++ b/code/modules/power/batteryrack_vr.dm @@ -11,7 +11,7 @@ insert_cell(newcell) /obj/item/weapon/module/power_control/attackby(var/obj/item/I, var/mob/user) - if(I.is_multitool()) + if(I.has_tool_quality(TOOL_MULTITOOL)) to_chat(user, SPAN_NOTICE("You begin tweaking the power control circuits to support a power cell rack.")) if(do_after(user, 50 * I.toolspeed)) var/obj/item/newcircuit = new/obj/item/weapon/circuitboard/batteryrack(get_turf(user)) diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index de42f2ba06..0b06dfbf31 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -177,7 +177,7 @@ var/list/possible_cable_coil_colours = list( if(!T.is_plating()) return - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) var/obj/item/stack/cable_coil/CC if(d1 == UP || d2 == UP) to_chat(user, "You must cut this cable from above.") diff --git a/code/modules/power/cable_ender.dm b/code/modules/power/cable_ender.dm index 5a581e37be..ba6359be63 100644 --- a/code/modules/power/cable_ender.dm +++ b/code/modules/power/cable_ender.dm @@ -24,7 +24,7 @@ /obj/structure/cable/ender/attackby(obj/item/W, mob/user) src.add_fingerprint(user) - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) to_chat(user, " These cables are too tough to be cut with those [W.name].") return else if(istype(W, /obj/item/stack/cable_coil)) diff --git a/code/modules/power/cable_heavyduty.dm b/code/modules/power/cable_heavyduty.dm index 692dcd73d9..e37a8755d6 100644 --- a/code/modules/power/cable_heavyduty.dm +++ b/code/modules/power/cable_heavyduty.dm @@ -17,7 +17,7 @@ if(!T.is_plating()) return - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) to_chat(usr, "These cables are too tough to be cut with those [W.name].") return else if(istype(W, /obj/item/stack/cable_coil)) diff --git a/code/modules/power/fusion/fuel_assembly/fuel_injector.dm b/code/modules/power/fusion/fuel_assembly/fuel_injector.dm index 08c413cd02..764d26c873 100644 --- a/code/modules/power/fusion/fuel_assembly/fuel_injector.dm +++ b/code/modules/power/fusion/fuel_assembly/fuel_injector.dm @@ -69,7 +69,7 @@ GLOBAL_LIST_EMPTY(fuel_injectors) cur_assembly = W return - if(W.is_wrench() || W.is_screwdriver() || W.is_crowbar() || istype(W, /obj/item/weapon/storage/part_replacer)) + if(W.has_tool_quality(TOOL_WRENCH) || W.has_tool_quality(TOOL_SCREWDRIVER) || W.has_tool_quality(TOOL_CROWBAR) || istype(W, /obj/item/weapon/storage/part_replacer)) if(injecting) to_chat(user, "Shut \the [src] off first!") return diff --git a/code/modules/power/generator.dm b/code/modules/power/generator.dm index 20241cdc2c..30bb2c8df3 100644 --- a/code/modules/power/generator.dm +++ b/code/modules/power/generator.dm @@ -170,7 +170,7 @@ GLOBAL_LIST_EMPTY(all_turbines) attack_hand(user) /obj/machinery/power/generator/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 75, 1) anchored = !anchored user.visible_message("[user.name] [anchored ? "secures" : "unsecures"] the bolts holding [src.name] to the floor.", \ diff --git a/code/modules/power/gravitygenerator_vr.dm b/code/modules/power/gravitygenerator_vr.dm index 8b4b1ccb96..40d0fc93ef 100644 --- a/code/modules/power/gravitygenerator_vr.dm +++ b/code/modules/power/gravitygenerator_vr.dm @@ -96,7 +96,7 @@ GLOBAL_LIST_EMPTY(gravity_generators) /obj/machinery/gravity_generator/main/station/Initialize() . = ..() setup_parts() - middle.add_overlay("activated") + middle.add_overlay("activated") // // Generator an admin can spawn @@ -204,7 +204,7 @@ GLOBAL_LIST_EMPTY(gravity_generators) /obj/machinery/gravity_generator/main/attackby(obj/item/I, mob/user, params) switch(broken_state) if(GRAV_NEEDS_SCREWDRIVER) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You secure the screws of the framework.") playsound(src, I.usesound, 75, 1) broken_state++ @@ -212,7 +212,7 @@ GLOBAL_LIST_EMPTY(gravity_generators) return if(GRAV_NEEDS_WELDING) if(I.has_tool_quality(TOOL_WELDER)) - var/obj/item/weapon/weldingtool/W = I + var/obj/item/weapon/weldingtool/W = I.get_welder() if(W.remove_fuel(0,user)) to_chat(user, "You mend the damaged framework.") broken_state++ @@ -231,7 +231,7 @@ GLOBAL_LIST_EMPTY(gravity_generators) to_chat(user, "You need 10 sheets of plasteel!") return if(GRAV_NEEDS_WRENCH) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) to_chat(user, "You secure the plating to the framework.") playsound(src, I.usesound, 75, 1) set_fix() @@ -408,7 +408,7 @@ GLOBAL_LIST_EMPTY(gravity_generators) /obj/machinery/gravity_generator/main/proc/update_list() levels.Cut() var/my_z = get_z(src) - + //Actually doing it special this time instead of letting using_map decide if(using_map.use_overmap) var/obj/effect/overmap/visitable/S = get_overmap_sector(my_z) @@ -418,7 +418,7 @@ GLOBAL_LIST_EMPTY(gravity_generators) levels = GetConnectedZlevels(my_z) else levels = GetConnectedZlevels(my_z) - + for(var/z in levels) if(!GLOB.gravity_generators["[z]"]) GLOB.gravity_generators["[z]"] = list() diff --git a/code/modules/power/grid_checker.dm b/code/modules/power/grid_checker.dm index 1409be9fef..60a268ca03 100644 --- a/code/modules/power/grid_checker.dm +++ b/code/modules/power/grid_checker.dm @@ -38,12 +38,12 @@ /obj/machinery/power/grid_checker/attackby(obj/item/W, mob/user) if(!user) return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) default_deconstruction_screwdriver(user, W) opened = !opened - else if(W.is_crowbar()) + else if(W.has_tool_quality(TOOL_CROWBAR)) default_deconstruction_crowbar(user, W) - else if(istype(W, /obj/item/device/multitool) || W.is_wirecutter()) + else if(istype(W, /obj/item/device/multitool) || W.has_tool_quality(TOOL_WIRECUTTER)) attack_hand(user) /obj/machinery/power/grid_checker/attack_hand(mob/user) diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index c18e408838..a4936bf65e 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -103,7 +103,7 @@ var/global/list/light_type_cache = list() add_fingerprint(user) return - if (W.is_wrench()) + if (W.has_tool_quality(TOOL_WRENCH)) if (src.stage == 1) playsound(src, W.usesound, 75, 1) to_chat(usr, "You begin deconstructing [src].") @@ -122,7 +122,7 @@ var/global/list/light_type_cache = list() to_chat(usr, "You have to unscrew the case first.") return - if(W.is_wirecutter()) + if(W.has_tool_quality(TOOL_WIRECUTTER)) if (src.stage != 2) return src.stage = 1 src.update_icon() @@ -142,7 +142,7 @@ var/global/list/light_type_cache = list() "You add wires to [src].") return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if (src.stage == 2) src.stage = 3 src.update_icon() @@ -655,7 +655,7 @@ var/global/list/light_type_cache = list() // attempt to stick weapon into light socket else if(status == LIGHT_EMPTY) - if(W.is_screwdriver()) //If it's a screwdriver open it. + if(W.has_tool_quality(TOOL_SCREWDRIVER)) //If it's a screwdriver open it. playsound(src, W.usesound, 75, 1) user.visible_message("[user.name] opens [src]'s casing.", \ "You open [src]'s casing.", "You hear a noise.") @@ -673,7 +673,7 @@ var/global/list/light_type_cache = list() electrocute_mob(user, get_area(src), src, rand(0.7,1.0)) /obj/machinery/light/flamp/attackby(obj/item/W, mob/user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, W.usesound, 50, 1) to_chat(user, "You [anchored ? "wrench" : "unwrench"] \the [src].") @@ -686,7 +686,7 @@ var/global/list/light_type_cache = list() return else - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 75, 1) user.visible_message("[user.name] removes [src]'s lamp shade.", \ "You remove [src]'s lamp shade.", "You hear a noise.") diff --git a/code/modules/power/lighting_neon.dm b/code/modules/power/lighting_neon.dm index a4a44e2335..2d712d1f12 100644 --- a/code/modules/power/lighting_neon.dm +++ b/code/modules/power/lighting_neon.dm @@ -146,11 +146,11 @@ desc = "A bright neon wall sign." light_type = /obj/item/weapon/light/bulb/neon/blue -/obj/machinery/light/small/neon/redcross - icon_state = "RedCross1" - base_state = "RedCross" +/obj/machinery/light/small/neon/cross + icon_state = "GreenCross1" + base_state = "GreenCross" desc = "A bright neon wall sign." - light_type = /obj/item/weapon/light/bulb/neon/red + light_type = /obj/item/weapon/light/bulb/neon/green /obj/machinery/light/small/neon/bar icon_state = "Bar1" diff --git a/code/modules/power/lighting_vr.dm b/code/modules/power/lighting_vr.dm index 8fe6a7452d..9b74578a1b 100644 --- a/code/modules/power/lighting_vr.dm +++ b/code/modules/power/lighting_vr.dm @@ -222,3 +222,27 @@ if(3) icon_state = "big_flamp-empty" */ + +/obj/item/weapon/light/bulb/torch + brightness_range = 6 + color = "#fabf87" + brightness_color = "#fabf87" + init_brightness_range = 6 + +/obj/machinery/light/small/torch + icon = 'icons/obj/lighting_vr.dmi' + name = "wall torch" + icon_state = "torch1" + base_state = "torch" + desc = "A small torch held in a wall sconce." + light_type = /obj/item/weapon/light/bulb/torch + shows_alerts = FALSE + anchored = TRUE + plane = ABOVE_MOB_PLANE + layer = ABOVE_MOB_LAYER + construct_type = null + overlay_color = LIGHT_COLOR_INCANDESCENT_BULB + overlay_above_everything = TRUE + +/obj/machinery/light/small/torch/attackby() + return diff --git a/code/modules/power/lightswitch_vr.dm b/code/modules/power/lightswitch_vr.dm index d5fe4cd6ab..e3776ede28 100644 --- a/code/modules/power/lightswitch_vr.dm +++ b/code/modules/power/lightswitch_vr.dm @@ -83,9 +83,9 @@ /obj/structure/construction/attackby(obj/item/weapon/W as obj, mob/user as mob) add_fingerprint(user) - if(istype(W, /obj/item/weapon/weldingtool)) + if(W.has_tool_quality(TOOL_WELDER)) if(stage == FRAME_UNFASTENED) - var/obj/item/weapon/weldingtool/WT = W + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.remove_fuel(0, user)) to_chat(user, "\The [src] must be on to complete this task.") return @@ -106,7 +106,7 @@ to_chat(user, "You have to remove the wires first.") return - else if(W.is_wirecutter()) + else if(W.has_tool_quality(TOOL_WIRECUTTER)) if (stage == FRAME_WIRED) stage = FRAME_FASTENED user.update_examine_panel(src) @@ -129,7 +129,7 @@ update_icon() return - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if (stage == FRAME_UNFASTENED) stage = FRAME_FASTENED user.update_examine_panel(src) diff --git a/code/modules/power/pacman2.dm b/code/modules/power/pacman2.dm index 81f73be63d..27f86867ed 100644 --- a/code/modules/power/pacman2.dm +++ b/code/modules/power/pacman2.dm @@ -70,7 +70,7 @@ O.loc = src to_chat(user, "You add the phoron tank to the generator.") else if(!active) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, 'sound/items/Deconstruct.ogg', 50, 1) if(anchored) @@ -78,14 +78,14 @@ else to_chat(user, "You unsecure the generator from the floor.") SSmachines.makepowernets() - else if(O.is_screwdriver()) + else if(O.has_tool_quality(TOOL_SCREWDRIVER)) open = !open playsound(src, O.usesound, 50, 1) if(open) to_chat(user, "You open the access panel.") else to_chat(user, "You close the access panel.") - else if(O.is_crowbar() && !open) + else if(O.has_tool_quality(TOOL_CROWBAR) && !open) playsound(src, O.usesound, 50, 1) var/obj/machinery/constructable_frame/machine_frame/new_frame = new /obj/machinery/constructable_frame/machine_frame(src.loc) for(var/obj/item/I in component_parts) diff --git a/code/modules/power/port_gen.dm b/code/modules/power/port_gen.dm index a9f0cd0e28..9160636125 100644 --- a/code/modules/power/port_gen.dm +++ b/code/modules/power/port_gen.dm @@ -279,7 +279,7 @@ updateUsrDialog() return else if(!active) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) if(!anchored) connect_to_network() to_chat(user, "You secure the generator to the floor.") diff --git a/code/modules/power/port_gen_vr.dm b/code/modules/power/port_gen_vr.dm index 04fd1d6bde..7225c6a5a2 100644 --- a/code/modules/power/port_gen_vr.dm +++ b/code/modules/power/port_gen_vr.dm @@ -416,15 +416,15 @@ // Big altevian version of pacman. has a lot of copypaste from regular kind, but less flexible. /obj/machinery/power/port_gen/large_altevian - name = "Converted High Energy Exchange Supplier Extractor" - desc = "A take on the classic PACMAN reactors that are seen throughout the galaxy. The altevians have ripped apart the tech and seemed to of found a way to maximize the fuel usage one would see with this kind of process. \ - However, it is a lot bulkier and nearly impossible to break apart, but still can be moved if need be with special tools." + name = "Phoronic Conversion System" + desc = "A reactor system similar to the PACMAN generators seen throughout the stars. This one is a specific model created by the altevians. It seems this reactor has a way to maximize the fuel usage one would see with this kind of process. \ + However, due to its construction and size it is nearly impossible to break apart. It still can be moved if need be with special tools." icon = 'icons/obj/props/decor64x64.dmi' icon_state = "alteviangen" bound_width = 64 bound_height = 64 anchored = TRUE - power_gen = 200000 + power_gen = 250000 var/sheet_name = "Phoron Sheets" var/sheet_path = /obj/item/stack/material/phoron @@ -497,4 +497,4 @@ else if(sheets > 25) add_overlay("alteviangen-fuel-66") else if(sheets > 0) - add_overlay("alteviangen-fuel-33") \ No newline at end of file + add_overlay("alteviangen-fuel-33") diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm index 86a4d00edb..59abb2cca7 100644 --- a/code/modules/power/singularity/collector.dm +++ b/code/modules/power/singularity/collector.dm @@ -71,11 +71,11 @@ var/global/list/rad_collectors = list() W.loc = src update_icons() return 1 - else if(W.is_crowbar()) + else if(W.has_tool_quality(TOOL_CROWBAR)) if(P && !src.locked) eject() return 1 - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(P) to_chat(user, "Remove the phoron tank first.") return 1 diff --git a/code/modules/power/singularity/emitter.dm b/code/modules/power/singularity/emitter.dm index b725f2d4f7..6c191479b8 100644 --- a/code/modules/power/singularity/emitter.dm +++ b/code/modules/power/singularity/emitter.dm @@ -30,7 +30,6 @@ var/integrity = 80 - /obj/machinery/power/emitter/verb/rotate_clockwise() set name = "Rotate Emitter Clockwise" set category = "Object" @@ -42,6 +41,17 @@ src.set_dir(turn(src.dir, 270)) return 1 +/obj/machinery/power/emitter/verb/rotate_counterclockwise() + set name = "Rotate Emitter Counter-Clockwise" + set category = "Object" + set src in oview(1) + + if (src.anchored || usr:stat) + to_chat(usr, "It is fastened to the floor!") + return 0 + src.set_dir(turn(src.dir, 90)) + return 1 + /obj/machinery/power/emitter/Initialize() . = ..() if(state == 2 && anchored) @@ -148,7 +158,7 @@ /obj/machinery/power/emitter/attackby(obj/item/W, mob/user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(active) to_chat(user, "Turn off [src] first.") return @@ -173,8 +183,8 @@ update_icon() // VOREStation Add return - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(active) to_chat(user, "Turn off [src] first.") return @@ -274,7 +284,7 @@ . = ..() switch(state) if(0) - . += "It is not secured in place at all!" + . += "It is not secured in place!" if(1) . += "It has been bolted down securely, but not welded into place." if(2) diff --git a/code/modules/power/singularity/field_generator.dm b/code/modules/power/singularity/field_generator.dm index 4a85e1fec5..17c4d770e4 100644 --- a/code/modules/power/singularity/field_generator.dm +++ b/code/modules/power/singularity/field_generator.dm @@ -44,7 +44,7 @@ field_generator power level display . = ..() switch(state) if(0) - . += "It is not secured in place at all!" + . += "It is not secured in place!" if(1) . += "It has been bolted down securely, but not welded into place." if(2) @@ -116,7 +116,7 @@ field_generator power level display if(active) to_chat(user, "The [src] needs to be off.") return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) switch(state) if(0) state = 1 @@ -135,8 +135,8 @@ field_generator power level display if(2) to_chat(user, "The [src.name] needs to be unwelded from the floor.") return - else if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + else if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() switch(state) if(0) to_chat(user, "The [src.name] needs to be wrenched to the floor.") diff --git a/code/modules/power/singularity/generator.dm b/code/modules/power/singularity/generator.dm index a41ea2fd49..ff2486d893 100644 --- a/code/modules/power/singularity/generator.dm +++ b/code/modules/power/singularity/generator.dm @@ -12,7 +12,10 @@ /obj/machinery/the_singularitygen/examine() . = ..() - . += "It is [anchored ? "secured" : "not secured"]!" + if(anchored) + . += "It has been securely bolted down and is ready for operation." + else + . += "It is not secured!" /obj/machinery/the_singularitygen/process() var/turf/T = get_turf(src) @@ -21,7 +24,7 @@ if(src) qdel(src) /obj/machinery/the_singularitygen/attackby(obj/item/W, mob/user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, W.usesound, 75, 1) if(anchored) @@ -33,7 +36,7 @@ "You unsecure the [src.name] from the floor.", \ "You hear a ratchet.") return - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) panel_open = !panel_open playsound(src, W.usesound, 50, 1) visible_message("\The [user] adjusts \the [src]'s mechanisms.") diff --git a/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm b/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm index bf005048ca..4ef082b0ae 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm @@ -113,7 +113,7 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin /obj/structure/particle_accelerator/examine(mob/user) . = ..() - + switch(construction_state) if(0) . += "Looks like it's not attached to the flooring." @@ -204,14 +204,14 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin switch(src.construction_state)//TODO:Might be more interesting to have it need several parts rather than a single list of steps if(0) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 75, 1) src.anchored = TRUE user.visible_message("[user.name] secures the [src.name] to the floor.", \ "You secure the external bolts.") temp_state++ if(1) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 75, 1) src.anchored = FALSE user.visible_message("[user.name] detaches the [src.name] from the floor.", \ @@ -223,16 +223,16 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin "You add some wires.") temp_state++ if(2) - if(O.is_wirecutter())//TODO:Shock user if its on? + if(O.has_tool_quality(TOOL_WIRECUTTER))//TODO:Shock user if its on? user.visible_message("[user.name] removes some wires from the [src.name].", \ "You remove some wires.") temp_state-- - else if(O.is_screwdriver()) + else if(O.has_tool_quality(TOOL_SCREWDRIVER)) user.visible_message("[user.name] closes the [src.name]'s access panel.", \ "You close the access panel.") temp_state++ if(3) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) user.visible_message("[user.name] opens the [src.name]'s access panel.", \ "You open the access panel.") temp_state-- @@ -292,7 +292,7 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin /obj/machinery/particle_accelerator/examine(mob/user) . = ..() - + switch(construction_state) if(0) . += "Looks like it's not attached to the flooring." @@ -338,14 +338,14 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin var/temp_state = src.construction_state switch(src.construction_state)//TODO:Might be more interesting to have it need several parts rather than a single list of steps if(0) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 75, 1) src.anchored = TRUE user.visible_message("[user.name] secures the [src.name] to the floor.", \ "You secure the external bolts.") temp_state++ if(1) - if(O.is_wrench()) + if(O.has_tool_quality(TOOL_WRENCH)) playsound(src, O.usesound, 75, 1) src.anchored = FALSE user.visible_message("[user.name] detaches the [src.name] from the floor.", \ @@ -357,16 +357,16 @@ So, hopefully this is helpful if any more icons are to be added/changed/wonderin "You add some wires.") temp_state++ if(2) - if(O.is_wirecutter())//TODO:Shock user if its on? + if(O.has_tool_quality(TOOL_WIRECUTTER))//TODO:Shock user if its on? user.visible_message("[user.name] removes some wires from the [src.name].", \ "You remove some wires.") temp_state-- - else if(O.is_screwdriver()) + else if(O.has_tool_quality(TOOL_SCREWDRIVER)) user.visible_message("[user.name] closes the [src.name]'s access panel.", \ "You close the access panel.") temp_state++ if(3) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) user.visible_message("[user.name] opens the [src.name]'s access panel.", \ "You open the access panel.") temp_state-- diff --git a/code/modules/power/singularity/particle_accelerator/particle_smasher.dm b/code/modules/power/singularity/particle_accelerator/particle_smasher.dm index 77c0858606..af901342d5 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_smasher.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_smasher.dm @@ -74,7 +74,7 @@ to_chat(user, "You add \the [reagent_container] to \the [src].") update_icon() return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) anchored = !anchored playsound(src, W.usesound, 75, 1) if(anchored) diff --git a/code/modules/power/smes.dm b/code/modules/power/smes.dm index 416734eae9..7e933ee14d 100644 --- a/code/modules/power/smes.dm +++ b/code/modules/power/smes.dm @@ -287,8 +287,8 @@ GLOBAL_LIST_EMPTY(smeses) to_chat(user, "You need to open access hatch on [src] first!") return FALSE - if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/WT = W + if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = W.get_welder() if(!WT.isOn()) to_chat(user, "Turn on \the [WT] first!") return FALSE @@ -319,7 +319,7 @@ GLOBAL_LIST_EMPTY(smeses) connect_to_network() return FALSE - else if(W.is_wirecutter() && !building_terminal) + else if(W.has_tool_quality(TOOL_WIRECUTTER) && !building_terminal) building_terminal = TRUE var/obj/machinery/power/terminal/term for(var/obj/machinery/power/terminal/T in get_turf(user)) diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index 44d3a748b5..47bd37f008 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -335,7 +335,7 @@ failure_probability = 0 // Crowbar - Disassemble the SMES. - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) if (terminals.len) to_chat(user, "You have to disassemble the terminal first!") return diff --git a/code/modules/power/smes_vr.dm b/code/modules/power/smes_vr.dm index fe46cae7f0..2612fab73b 100644 --- a/code/modules/power/smes_vr.dm +++ b/code/modules/power/smes_vr.dm @@ -6,7 +6,7 @@ var/overlay_icon = 'icons/obj/power_vr.dmi' /obj/machinery/power/smes/buildable/hybrid/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) - if(W.is_screwdriver() || W.is_wirecutter()) + if(W.has_tool_quality(TOOL_SCREWDRIVER) || W.has_tool_quality(TOOL_WIRECUTTER)) to_chat(user,"\The [src] full of weird alien technology that's best not messed with.") return 0 diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index f0c010c0f2..97d9ff488b 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -58,7 +58,7 @@ GLOBAL_LIST_EMPTY(solars_list) /obj/machinery/power/solar/attackby(obj/item/weapon/W, mob/user) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) playsound(src, 'sound/machines/click.ogg', 50, 1) user.visible_message("[user] begins to take the glass off the solar panel.") if(do_after(user, 50)) @@ -123,7 +123,7 @@ GLOBAL_LIST_EMPTY(solars_list) return 0 //if there's no SSsun.sun or the panel is not linked to a solar control computer, no need to proceed if(!powernet || powernet != control.powernet) return 0 // We aren't connected to the controller - if(obscured) + if(obscured) return 0 //get no light from the SSsun.sun, so don't generate power return GLOB.solar_gen_rate * sunfrac @@ -207,13 +207,13 @@ GLOBAL_LIST_EMPTY(solars_list) if (!isturf(loc)) return 0 if(!anchored) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) anchored = TRUE user.visible_message("[user] wrenches the solar assembly into place.") playsound(src, W.usesound, 75, 1) return 1 else - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) anchored = FALSE user.visible_message("[user] unwrenches the solar assembly from it's place.") playsound(src, W.usesound, 75, 1) @@ -242,7 +242,7 @@ GLOBAL_LIST_EMPTY(solars_list) user.visible_message("[user] inserts the electronics into the solar assembly.") return 1 else - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) new /obj/item/weapon/tracker_electronics(src.loc) tracker = 0 user.visible_message("[user] takes out the electronics from the solar assembly.") @@ -412,7 +412,7 @@ GLOBAL_LIST_EMPTY(solars_list) return data /obj/machinery/power/solar_control/attackby(obj/item/I, user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, I.usesound, 50, 1) if(do_after(user, 20)) if (src.stat & BROKEN) diff --git a/code/modules/power/tesla/coil.dm b/code/modules/power/tesla/coil.dm index e36a1f1dc3..8ff5dfe753 100644 --- a/code/modules/power/tesla/coil.dm +++ b/code/modules/power/tesla/coil.dm @@ -3,6 +3,7 @@ desc = "For the union!" icon = 'icons/obj/tesla_engine/tesla_coil.dmi' icon_state = "coil0" + var/icontype = "coil" anchored = FALSE density = TRUE @@ -23,7 +24,10 @@ /obj/machinery/power/tesla_coil/examine() . = ..() - . += "It is [anchored ? "secured" : "not secured"]!" + if(anchored) + . += "It has been securely bolted down and is ready for operation." + else + . += "It is not secured!" /obj/machinery/power/tesla_coil/New() ..() @@ -48,9 +52,9 @@ /obj/machinery/power/tesla_coil/update_icon() if(panel_open) - icon_state = "coil_open[anchored]" + icon_state = "[icontype]_open[anchored]" else - icon_state = "coil[anchored]" + icon_state = "[icontype][anchored]" /obj/machinery/power/tesla_coil/attackby(obj/item/W, mob/user, params) src.add_fingerprint(user) @@ -76,18 +80,19 @@ /obj/machinery/power/tesla_coil/tesla_act(var/power) if(anchored && !panel_open) being_shocked = TRUE - //don't lose arc power when it's not connected to anything - //please place tesla coils all around the station to maximize effectiveness - var/power_produced = powernet ? power / power_loss : power - add_avail(power_produced*input_power_multiplier) - flick("coilhit", src) - playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5) - tesla_zap(src, 5, power_produced) + coil_act(power) //addtimer(CALLBACK(src, PROC_REF(reset_shocked)), 10) spawn(10) reset_shocked() else ..() +/obj/machinery/power/tesla_coil/proc/coil_act(var/power) + var/power_produced = power / power_loss + add_avail(power_produced*input_power_multiplier) + flick("[icontype]hit", src) + playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5) + tesla_zap(src, 5, power_produced) + /obj/machinery/power/tesla_coil/proc/zap() if((last_zap + zap_cooldown) > world.time || !powernet) return FALSE @@ -99,6 +104,127 @@ playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5) tesla_zap(src, 10, power/(coeff/2)) +/obj/machinery/power/tesla_coil/relay + name = "tesla relay coil" + desc = "For the union!" + icon_state = "relay0" + icontype = "relay" + + circuit = /obj/item/weapon/circuitboard/tesla_coil + + power_loss = 1 + input_power_multiplier = 0 + + var/relay_efficiency = 0.9 + +/obj/machinery/power/tesla_coil/relay/RefreshParts() + ..() + var/relay_multiplier + for(var/obj/item/weapon/stock_parts/capacitor/C in component_parts) + relay_multiplier += C.rating + relay_efficiency = 0.85 + (0.05 * relay_multiplier) + +/obj/machinery/power/tesla_coil/relay/coil_act(var/power) + var/power_relayed = power * relay_efficiency + flick("[icontype]hit", src) + playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5) + tesla_zap(src, 5, power_relayed) + +/obj/machinery/power/tesla_coil/splitter + name = "tesla prism coil" + desc = "For the union!" + icon_state = "prism0" + icontype = "prism" + + circuit = /obj/item/weapon/circuitboard/tesla_coil + + var/split_count = 1 + +/obj/machinery/power/tesla_coil/splitter/RefreshParts() + ..() + split_count = 0 + for(var/obj/item/weapon/stock_parts/capacitor/C in component_parts) + split_count += C.rating + +/obj/machinery/power/tesla_coil/splitter/coil_act(var/power) + var/power_per_bolt = power / (split_count + 1) + var/power_produced = power_per_bolt / power_loss + add_avail(power_produced*input_power_multiplier) + flick("[icontype]hit", src) + playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5) + for(var/i = 0, i < split_count, i++) + tesla_zap(src, 5, power_per_bolt) + +/obj/machinery/power/tesla_coil/amplifier + name = "tesla amplifier coil" + desc = "For the union!" + icon_state = "amp0" + icontype = "amp" + + circuit = /obj/item/weapon/circuitboard/tesla_coil + + var/amp_eff = 2 + +/obj/machinery/power/tesla_coil/amplifier/RefreshParts() + ..() + var/amp_eff = 1 + for(var/obj/item/weapon/stock_parts/capacitor/C in component_parts) + amp_eff += C.rating + +/obj/machinery/power/tesla_coil/amplifier/coil_act(var/power) + var/power_produced = power / power_loss + add_avail(power_produced*input_power_multiplier) + flick("[icontype]hit", src) + playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5) + tesla_zap(src, 5, power_produced) + +/obj/machinery/power/tesla_coil/recaster + name = "tesla recaster coil" + desc = "For the union!" + icon_state = "recaster0" + icontype = "recaster" + + circuit = /obj/item/weapon/circuitboard/tesla_coil + + var/zap_range = 6 + +/obj/machinery/power/tesla_coil/recaster/RefreshParts() + ..() + var/zap_range = 5 + for(var/obj/item/weapon/stock_parts/capacitor/C in component_parts) + zap_range += C.rating + +/obj/machinery/power/tesla_coil/recaster/coil_act(var/power) + var/power_relayed = power / power_loss + var/power_produced = power / (power_loss * 2) + add_avail(power_produced*input_power_multiplier) + flick("[icontype]hit", src) + playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = zap_range) + tesla_zap(src, zap_range, power_relayed) + +/obj/machinery/power/tesla_coil/collector + name = "tesla collector coil" + desc = "For the union!" + icon_state = "collector0" + icontype = "collector" + + circuit = /obj/item/weapon/circuitboard/tesla_coil + + var/collect_eff = 0.8 + +/obj/machinery/power/tesla_coil/collector/RefreshParts() + ..() + var/collect_mod = 0 + for(var/obj/item/weapon/stock_parts/capacitor/C in component_parts) + collect_mod += C.rating + collect_eff = 0.75 + collect_mod*0.05 + +/obj/machinery/power/tesla_coil/collector/coil_act(var/power) + var/power_produced = power * collect_eff + add_avail(power_produced*input_power_multiplier) + flick("[icontype]hit", src) + playsound(src, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5) + /obj/machinery/power/grounding_rod name = "grounding rod" desc = "Keep an area from being fried from Edison's Bane." @@ -113,7 +239,10 @@ /obj/machinery/power/grounding_rod/examine() . = ..() - . += "It is [anchored ? "secured" : "not secured"]!" + if(anchored) + . += "It has been securely bolted down and is ready for operation." + else + . += "It is not secured!" /obj/machinery/power/grounding_rod/pre_mapped anchored = TRUE diff --git a/code/modules/power/tesla/generator.dm b/code/modules/power/tesla/generator.dm index 668dfe4e0a..63bce099fa 100644 --- a/code/modules/power/tesla/generator.dm +++ b/code/modules/power/tesla/generator.dm @@ -5,10 +5,6 @@ icon_state = "TheSingGen" creation_type = /obj/singularity/energy_ball -/obj/machinery/the_singularitygen/tesla/examine() - . = ..() - . += "It is [anchored ? "secured" : "not secured"]!" - /obj/machinery/the_singularitygen/tesla/tesla_act(power, explosive = FALSE) if(explosive) energy += power diff --git a/code/modules/power/tesla/telsa_construction.dm b/code/modules/power/tesla/telsa_construction.dm index 96729101a3..34fe83ec89 100644 --- a/code/modules/power/tesla/telsa_construction.dm +++ b/code/modules/power/tesla/telsa_construction.dm @@ -24,8 +24,35 @@ build_path = /obj/machinery/power/grounding_rod board_type = new /datum/frame/frame_types/machine matter = list(MAT_STEEL = 50, MAT_GLASS = 50) + origin_tech = list(TECH_MAGNET = 1, TECH_POWER = 2) req_components = list() /datum/category_item/autolathe/engineering/grounding_rod name = "grounding rod electronics" path = /obj/item/weapon/circuitboard/grounding_rod + +// SPECIAL BOARDS BELOW + +/obj/item/weapon/circuitboard/tesla_coil/attackby(obj/item/I as obj, mob/user as mob) + if(I.has_tool_quality(TOOL_MULTITOOL)) + var/result = tgui_input_list(user, "What do you want to reconfigure the board to?", "Multitool-Circuitboard interface", list("Standard", "Relay", "Prism", "Amplifier", "Recaster", "Collector")) + switch(result) + if("Standard") + name = T_BOARD("tesla coil") + build_path = /obj/machinery/power/tesla_coil + if("Relay") + name = T_BOARD("tesla relay coil") + build_path = /obj/machinery/power/tesla_coil/relay + if("Prism") + name = T_BOARD("tesla prism coil") + build_path = /obj/machinery/power/tesla_coil/splitter + if("Amplifier") + name = T_BOARD("tesla amplifier coil") + build_path = /obj/machinery/power/tesla_coil/amplifier + if("Recaster") + name = T_BOARD("tesla recaster coil") + build_path = /obj/machinery/power/tesla_coil/recaster + if("Collector") + name = T_BOARD("tesla collector coil") + build_path = /obj/machinery/power/tesla_coil/collector + return \ No newline at end of file diff --git a/code/modules/power/tracker.dm b/code/modules/power/tracker.dm index 0a301cba82..efd68308fb 100644 --- a/code/modules/power/tracker.dm +++ b/code/modules/power/tracker.dm @@ -53,7 +53,7 @@ /obj/machinery/power/tracker/attackby(var/obj/item/weapon/W, var/mob/user) - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) playsound(src, 'sound/machines/click.ogg', 50, 1) user.visible_message("[user] begins to take the glass off the solar tracker.") if(do_after(user, 50)) diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm index 5fa957d0a1..a09e7cfb61 100644 --- a/code/modules/projectiles/ammunition.dm +++ b/code/modules/projectiles/ammunition.dm @@ -31,7 +31,7 @@ update_icon() /obj/item/ammo_casing/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(!BB) to_chat(user, "There is no bullet in the casing to inscribe anything into.") return diff --git a/code/modules/projectiles/ammunition/smartmag.dm b/code/modules/projectiles/ammunition/smartmag.dm index c1a5fbbcd8..e72e78fb36 100644 --- a/code/modules/projectiles/ammunition/smartmag.dm +++ b/code/modules/projectiles/ammunition/smartmag.dm @@ -87,7 +87,7 @@ update_icon() return - else if(I.is_screwdriver()) + else if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(attached_cell) to_chat(user, "You begin removing \the [attached_cell] from \the [src].") if(do_after(user, 10)) // Faster than doing it by hand diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 6ead13c300..0af401493a 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -283,7 +283,7 @@ verbs += /obj/item/weapon/gun/verb/allow_dna return - if(A.is_screwdriver()) + if(A.has_tool_quality(TOOL_SCREWDRIVER)) if(dna_lock && attached_lock && !attached_lock.controller_lock) to_chat(user, "You begin removing \the [attached_lock] from \the [src].") playsound(src, A.usesound, 50, 1) diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm index 49d53b2bab..5fc49bf02f 100644 --- a/code/modules/projectiles/guns/energy.dm +++ b/code/modules/projectiles/guns/energy.dm @@ -26,6 +26,7 @@ var/shot_counter = TRUE // does this gun tell you how many shots it has? var/battery_lock = 0 //If set, weapon cannot switch batteries + var/random_start_ammo = FALSE //if TRUE, the weapon will spawn with randomly-determined ammo /obj/item/weapon/gun/energy/New() ..() @@ -37,7 +38,9 @@ power_supply = new cell_type(src) else power_supply = null - + //random starting power! gives us a random number of shots in the battery between 0 and the max possible + if(random_start_ammo && cell_type) + power_supply.charge = charge_cost*rand(0,power_supply.maxcharge/charge_cost) update_icon() /obj/item/weapon/gun/energy/Destroy() diff --git a/code/modules/projectiles/guns/energy/altevian_vr.dm b/code/modules/projectiles/guns/energy/altevian_vr.dm index 4208d2d9e2..39543e1fcc 100644 --- a/code/modules/projectiles/guns/energy/altevian_vr.dm +++ b/code/modules/projectiles/guns/energy/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/weapon/gun/energy/altevian name = "Magneto-Electric Energy Projector" - desc = "A hand-held version of an energy weapon for the Altevian Hegemony. This one seems to be made for more proper civilian use with its reduced charge capacity, but ease of handling." + desc = "A hand-held version of an energy weapon for the Altevian Hegemony. This one is the civilian grade version that has a reduced charge capacity. However, it is a lot easier to use." icon_state = "meep" item_state = "meep" fire_delay = 8 @@ -10,11 +10,11 @@ origin_tech = list(TECH_COMBAT = 3, TECH_MAGNET = 2) matter = list(MAT_STEEL = 1000) projectile_type = /obj/item/projectile/beam/meeplaser - charge_cost = 450 + charge_cost = 400 /obj/item/weapon/gun/energy/altevian/large name = "Proto-Reactive Beam Thruster" - desc = "A standard issue energy rifle seen for defensive purposes for a space faring rodent species. The beams are tuned for proper suppression." + desc = "The main energy rifle that the Altevian Hegemony uses for its military operations." icon_state = "altevian-pdw" item_state = "altevian-pdw" slot_flags = SLOT_BELT @@ -28,7 +28,7 @@ /obj/item/projectile/beam/meeplaser name = "meep beam" icon_state = "meep" - damage = 15 + damage = 25 light_color = "#77A6E1" hud_state = "laser_disabler" @@ -38,7 +38,7 @@ /obj/item/projectile/beam/meeplaser/strong name = "repeater beam" - damage = 35 + damage = 40 /obj/effect/projectile/muzzle/meeplaser icon_state = "muzzle_meep" @@ -56,4 +56,4 @@ icon_state = "impact_meep" light_range = 2 light_power = 0.5 - light_color = "#77A6E1" \ No newline at end of file + light_color = "#77A6E1" diff --git a/code/modules/projectiles/guns/energy/bsharpoon_vr.dm b/code/modules/projectiles/guns/energy/bsharpoon_vr.dm index 5874f65640..e1c5711d27 100644 --- a/code/modules/projectiles/guns/energy/bsharpoon_vr.dm +++ b/code/modules/projectiles/guns/energy/bsharpoon_vr.dm @@ -42,7 +42,7 @@ if(!istype(user)) return - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(!scanmod) to_chat(user, "There's no scanner module installed!") return diff --git a/code/modules/projectiles/guns/energy/nuclear.dm b/code/modules/projectiles/guns/energy/nuclear.dm index 4a604b7cbb..2f6d7a754a 100644 --- a/code/modules/projectiles/guns/energy/nuclear.dm +++ b/code/modules/projectiles/guns/energy/nuclear.dm @@ -127,7 +127,7 @@ battery_lock = 1 // In exchange for balance, you cannot remove the battery. Also there's no sprite for that and I fucking suck at sprites. -Ace projectile_type = /obj/item/projectile/beam/stun/med - origin_tech = list(TECH_COMBAT = 3, TECH_MAGNET = 2, TECH_ILLEGAL = 2) // Illegal tech cuz Space Nazis + origin_tech = list(TECH_COMBAT = 3, TECH_MAGNET = 2, TECH_ILLEGAL = 2) modifystate = "ep08stun" firemodes = list( diff --git a/code/modules/projectiles/guns/energy/special.dm b/code/modules/projectiles/guns/energy/special.dm index f236ed2984..1f278139d1 100644 --- a/code/modules/projectiles/guns/energy/special.dm +++ b/code/modules/projectiles/guns/energy/special.dm @@ -76,7 +76,7 @@ else to_chat(user, "[src] already has a laser.") - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(emitter) to_chat(user, "You remove the [emitter.name] from the [src].") emitter.loc = get_turf(src.loc) diff --git a/code/modules/projectiles/guns/energy/stun.dm b/code/modules/projectiles/guns/energy/stun.dm index c5dd580c06..daea8a63da 100644 --- a/code/modules/projectiles/guns/energy/stun.dm +++ b/code/modules/projectiles/guns/energy/stun.dm @@ -209,4 +209,4 @@ icon_state = "snubstunrevolver" item_state = "stunrevolver" w_class = ITEMSIZE_SMALL //small pistol is small - origin_tech = list(TECH_COMBAT = 3, TECH_MATERIAL = 3, TECH_POWER = 2) \ No newline at end of file + origin_tech = list(TECH_COMBAT = 3, TECH_MATERIAL = 3, TECH_POWER = 2) diff --git a/code/modules/projectiles/guns/launcher/crossbow.dm b/code/modules/projectiles/guns/launcher/crossbow.dm index 74b3a5eb4c..aba55b268d 100644 --- a/code/modules/projectiles/guns/launcher/crossbow.dm +++ b/code/modules/projectiles/guns/launcher/crossbow.dm @@ -166,7 +166,7 @@ else to_chat(user, "[src] already has a cell installed.") - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(cell) var/obj/item/C = cell C.loc = get_turf(user) @@ -236,9 +236,9 @@ else to_chat(user, "You need at least three rods to complete this task.") return - else if(istype(W, /obj/item/weapon/weldingtool)) + else if(W.has_tool_quality(TOOL_WELDER)) if(buildstate == 1) - var/obj/item/weapon/weldingtool/T = W + var/obj/item/weapon/weldingtool/T = W.get_welder() if(T.remove_fuel(0,user)) if(!src || !T.isOn()) return playsound(src, W.usesound, 50, 1) @@ -274,7 +274,7 @@ else to_chat(user, "You need at least three plastic sheets to complete this task.") return - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(buildstate == 5) to_chat(user, "You secure the crossbow's various parts.") playsound(src, W.usesound, 50, 1) diff --git a/code/modules/projectiles/guns/launcher/pneumatic.dm b/code/modules/projectiles/guns/launcher/pneumatic.dm index 8372eb77b4..1e75a9b1d2 100644 --- a/code/modules/projectiles/guns/launcher/pneumatic.dm +++ b/code/modules/projectiles/guns/launcher/pneumatic.dm @@ -190,9 +190,9 @@ buildstate++ update_icon() return - else if(istype(W,/obj/item/weapon/weldingtool)) + else if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/T = W.get_welder() if(buildstate == 1) - var/obj/item/weapon/weldingtool/T = W if(T.remove_fuel(0,user)) if(!src || !T.isOn()) return playsound(src, W.usesound, 100, 1) @@ -200,7 +200,6 @@ buildstate++ update_icon() if(buildstate == 3) - var/obj/item/weapon/weldingtool/T = W if(T.remove_fuel(0,user)) if(!src || !T.isOn()) return playsound(src, W.usesound, 100, 1) @@ -208,7 +207,6 @@ buildstate++ update_icon() if(buildstate == 5) - var/obj/item/weapon/weldingtool/T = W if(T.remove_fuel(0,user)) if(!src || !T.isOn()) return playsound(src, W.usesound, 100, 1) diff --git a/code/modules/projectiles/guns/magnetic/bore.dm b/code/modules/projectiles/guns/magnetic/bore.dm index 66e89cb9eb..21077bb05a 100644 --- a/code/modules/projectiles/guns/magnetic/bore.dm +++ b/code/modules/projectiles/guns/magnetic/bore.dm @@ -88,7 +88,7 @@ . = ..() update_rating_mod() if(removable_components) - if(thing.is_crowbar()) + if(thing.has_tool_quality(TOOL_CROWBAR)) if(!manipulator) to_chat(user, "\The [src] has no manipulator installed.") return diff --git a/code/modules/projectiles/guns/magnetic/magnetic.dm b/code/modules/projectiles/guns/magnetic/magnetic.dm index f4933efbf3..20aef6e980 100644 --- a/code/modules/projectiles/guns/magnetic/magnetic.dm +++ b/code/modules/projectiles/guns/magnetic/magnetic.dm @@ -155,7 +155,7 @@ update_icon() return - if(thing.is_screwdriver()) + if(thing.has_tool_quality(TOOL_SCREWDRIVER)) if(!capacitor) to_chat(user, "\The [src] has no capacitor installed.") return diff --git a/code/modules/projectiles/guns/magnetic/magnetic_construction.dm b/code/modules/projectiles/guns/magnetic/magnetic_construction.dm index 9f81dbe4dc..da0212b520 100644 --- a/code/modules/projectiles/guns/magnetic/magnetic_construction.dm +++ b/code/modules/projectiles/guns/magnetic/magnetic_construction.dm @@ -33,8 +33,8 @@ increment_construction_stage() return - if(istype(thing, /obj/item/weapon/weldingtool) && construction_stage == 4) - var/obj/item/weapon/weldingtool/welder = thing + if(thing.has_tool_quality(TOOL_WELDER) && construction_stage == 4) + var/obj/item/weapon/weldingtool/welder = thing.get_welder() if(!welder.isOn()) to_chat(user, "Turn it on first!") @@ -66,7 +66,7 @@ increment_construction_stage() return - if(thing.is_screwdriver() && construction_stage >= 9) + if(thing.has_tool_quality(TOOL_SCREWDRIVER) && construction_stage >= 9) user.visible_message("\The [user] secures \the [src] and finishes it off.") playsound(src, 'sound/items/Screwdriver.ogg', 50, 1) var/obj/item/weapon/gun/magnetic/coilgun = new(loc) diff --git a/code/modules/projectiles/guns/modular_guns.dm b/code/modules/projectiles/guns/modular_guns.dm index f384c7975d..148b60245f 100644 --- a/code/modules/projectiles/guns/modular_guns.dm +++ b/code/modules/projectiles/guns/modular_guns.dm @@ -51,12 +51,12 @@ FireModeModify() /obj/item/weapon/gun/energy/modular/attackby(obj/item/O, mob/user) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You [assembled ? "disassemble" : "assemble"] the gun.") assembled = !assembled playsound(src, O.usesound, 50, 1) return - if(O.is_crowbar()) + if(O.has_tool_quality(TOOL_CROWBAR)) if(assembled == 1) to_chat(user, "Disassemble the [src] first!") return diff --git a/code/modules/projectiles/guns/projectile.dm b/code/modules/projectiles/guns/projectile.dm index 4769aef999..9169df9f91 100644 --- a/code/modules/projectiles/guns/projectile.dm +++ b/code/modules/projectiles/guns/projectile.dm @@ -35,15 +35,23 @@ //var/list/icon_keys = list() //keys //var/list/ammo_states = list() //values + var/random_start_ammo = FALSE //randomize amount of starting ammo + /obj/item/weapon/gun/projectile/New(loc, var/starts_loaded = 1) ..() if(starts_loaded) if(ispath(ammo_type) && (load_method & (SINGLE_CASING|SPEEDLOADER))) for(var/i in 1 to max_shells) loaded += new ammo_type(src) + if(random_start_ammo) + loaded.Cut(0,rand(0,max_shells)) if(ispath(magazine_type) && (load_method & MAGAZINE)) ammo_magazine = new magazine_type(src) allowed_magazines += /obj/item/ammo_magazine/smart + if(random_start_ammo) + var/ammo_cut = rand(0,ammo_magazine.max_ammo) + ammo_magazine.contents.Cut(0,ammo_cut) + ammo_magazine.stored_ammo.Cut(0,ammo_cut) update_icon() /obj/item/weapon/gun/projectile/consume_next_projectile() diff --git a/code/modules/projectiles/guns/projectile/altevian_vr.dm b/code/modules/projectiles/guns/projectile/altevian_vr.dm index 29d4800fcd..eb6c2cbe6a 100644 --- a/code/modules/projectiles/guns/projectile/altevian_vr.dm +++ b/code/modules/projectiles/guns/projectile/altevian_vr.dm @@ -1,6 +1,6 @@ /obj/item/weapon/gun/projectile/altevian name = "Altevian Rivet Repeater" - desc = "An offensive weapon designed by the altevians that is used for decompression and maximizes structural damage while also serving as a good method of personnel damage." + desc = "An offensive ballistic weapon designed by the Altevian Hegemony commonly used for decompression and structural damage tactics. It's also pretty effective at personnel damage." magazine_type = /obj/item/ammo_magazine/sam48 allowed_magazines = list(/obj/item/ammo_magazine/sam48) projectile_type = /obj/item/projectile/bullet/sam48 diff --git a/code/modules/projectiles/guns/projectile/shotgun.dm b/code/modules/projectiles/guns/projectile/shotgun.dm index 90e45f7af5..9a3a41305a 100644 --- a/code/modules/projectiles/guns/projectile/shotgun.dm +++ b/code/modules/projectiles/guns/projectile/shotgun.dm @@ -233,4 +233,4 @@ load_method = SINGLE_CASING max_shells = 5 ammo_type = /obj/item/ammo_casing/a12g/beanbag - + diff --git a/code/modules/reagents/hoses/connector.dm b/code/modules/reagents/hoses/connector.dm index abf55d4fab..a11834e3cb 100644 --- a/code/modules/reagents/hoses/connector.dm +++ b/code/modules/reagents/hoses/connector.dm @@ -3,7 +3,7 @@ . = ..() if(locate(/obj/item/hose_connector) in src) - if(O.is_wirecutter()) + if(O.has_tool_quality(TOOL_WIRECUTTER)) var/list/available_sockets = list() for(var/obj/item/hose_connector/HC in src) diff --git a/code/modules/reagents/machinery/alembic.dm b/code/modules/reagents/machinery/alembic.dm new file mode 100644 index 0000000000..8c0aeb3c14 --- /dev/null +++ b/code/modules/reagents/machinery/alembic.dm @@ -0,0 +1,315 @@ +/obj/machinery/alembic + name = "Alembic" + desc = "A piece of glass chemical apparatus that is used to distill and concentrate chemicals." + icon = 'icons/obj/chemical.dmi' + icon_state = "alembic" + use_power = FALSE + anchored = TRUE + density = FALSE + layer = ABOVE_WINDOW_LAYER + vis_flags = VIS_HIDE + unacidable = TRUE + clicksound = "button" + clickvol = 60 + + var/potion_reagent = 0 + var/bubbling = 0 + var/base_reagent = 0 + var/product_potion = 0 + var/expected_base = 0 + +/obj/machinery/alembic/update_icon() + if(potion_reagent == 0 && base_reagent == 0) //Empty + icon_state = "alembic" + else if(potion_reagent != 0 && base_reagent == 0) //Has potion reagent but not base + icon_state = "alembic-base" + else if(potion_reagent == 0 && base_reagent != 0) //Has a base but no reagent + icon_state = "alembic-base" + else if(potion_reagent != 0 && base_reagent != 0 && !bubbling ) //Has a reagent but is not turned on + icon_state = "alembic-full" + else if(bubbling == 1) //is actively bubbling + icon_state = "alembic-bubble" + return + +/obj/machinery/alembic/attackby(var/obj/item/weapon/potion_material/O as obj, var/mob/user as mob) + if(istype(O,/obj/item/weapon/potion_material)) + if(potion_reagent != 0 ) + to_chat(user, SPAN_WARNING("There is already a reagent in the alembic!")) + return + else + src.potion_reagent = O + src.expected_base = O.base_reagent + src.product_potion = O.product_potion + user.drop_item() + O.loc = src + update_icon() + to_chat(user, SPAN_NOTICE("You place the [O] in the alembic.")) + src.updateUsrDialog() + return + else if(istype(O,/obj/item/weapon/potion_base)) + if(base_reagent != 0 ) + to_chat(user, SPAN_WARNING("There is already a base in the alembic!")) + return + else + src.base_reagent = O + user.drop_item() + O.loc = src + update_icon() + to_chat(user, SPAN_NOTICE("You place the [O] in the alembic.")) + src.updateUsrDialog() + return + else + to_chat(user, SPAN_WARNING("This item is no use in the alembic.")) + return + +/obj/machinery/alembic/attack_hand(mob/user as mob) + + if(potion_reagent == 0 || base_reagent == 0) //If there is nothing in there + to_chat(user, SPAN_WARNING("The alembic is not yet full!")) + return + else if(potion_reagent != 0 && base_reagent != 0 && !bubbling) //if there is something in there and it's not bubbling yet + bubbling = 1 + update_icon() + to_chat(user, SPAN_NOTICE("The alembic begins boiling the [potion_reagent] in the [base_reagent].")) + sleep(30) + bubbling = 0 + to_chat(user, SPAN_NOTICE("The alembic finishes brewing the potion!")) + spawn_potion() + potion_reagent = 0 + base_reagent = 0 + update_icon() + return + else if(bubbling) + to_chat(user, SPAN_WARNING("The alembic is already boiling!")) + return + +/obj/machinery/alembic/AltClick(mob/user) + if(potion_reagent == 0) + to_chat(user, SPAN_WARNING("There is nothing in the alembic!")) + return + else if(potion_reagent != 0 && !bubbling) //if there is something in there and it's not bubbling yet + if(!user.incapacitated() && Adjacent(user)) + user.put_in_hands(potion_reagent) + potion_reagent = 0 + update_icon() + else + return + else if(bubbling) + to_chat(user, SPAN_WARNING("The alembic is already boiling, it's too late to get your reagent back!")) + return + +/obj/machinery/alembic/proc/spawn_potion() + if(istype(base_reagent,expected_base)) + new product_potion(loc) + else + var/failed_product = pick(/obj/item/weapon/reagent_containers/glass/bottle/potion/plain, + /obj/item/weapon/reagent_containers/glass/bottle/potion/ethanol, + /obj/item/weapon/reagent_containers/glass/bottle/potion/sugar, + /obj/item/weapon/reagent_containers/glass/bottle/potion/capsaicin, + /obj/item/weapon/reagent_containers/glass/bottle/potion/soporific, + /obj/item/weapon/reagent_containers/glass/bottle/potion/lipostipo, + /obj/item/weapon/reagent_containers/glass/bottle/potion/phoron) + new failed_product(loc) + +//The actual ingredients! + +/obj/item/weapon/potion_material + name = "blood ruby" + desc = "An extremely hard but oddly brittle gem with a beautiful red colouration." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "blood_ruby" + var/base_reagent = /obj/item/weapon/potion_base/ichor + var/product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/healing + +/obj/item/weapon/potion_material/blood_ruby + +/obj/item/weapon/potion_material/ruby_eye + name = "ruby eye" + desc = "An odd gem in the shape of an eye, it has a strange static charge to the surface." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "ruby_eye" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/greater_healing + +/obj/item/weapon/potion_material/golden_scale + name = "golden scale" + desc = "A reptilian scale with an almost metalic texture and a shining gold surface." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "golden_scale" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist + +/obj/item/weapon/potion_material/frozen_dew + name = "frozen dew" + desc = "A bitter leaf with a small droplet of crystalised dew attached to it." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "frozen_dew" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/antidote + +/obj/item/weapon/potion_material/living_coral + name = "living coral" + desc = "Some coral that appears to be friving outside of the water, it has an oddly metallic scent." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "living_coral" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/water + +/obj/item/weapon/potion_material/rare_horn + name = "rare horn" + desc = "A sharp, straight horn from some unknown animal." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "rare_horn" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/regeneration + +/obj/item/weapon/potion_material/moldy_bread + name = "moldy bread" + desc = "A slice of bread that's clearly been left out for far too long." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "moldy_bread" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/panacea + +/obj/item/weapon/potion_material/glowing_gem + name = "glowing gem" + desc = "An pretty but rough gem that is literally glowing green, it tingles to touch." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "glowing_gem" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/magic + +/obj/item/weapon/potion_material/giant_toe + name = "giant toe" + desc = "One really large severed toe, in some state of suspended decomposition. It's gross and stinks." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "giant_toe" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/lightness + +/obj/item/weapon/potion_material/flesh_of_the_stars + name = "flesh of the stars" + desc = "A rare slab of meat with an unknown origin, said to have fallen from the sky." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "flesh_of_the_stars" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/bonerepair + +/obj/item/weapon/potion_material/spinning_poppy + name = "spinning poppy" + desc = "A small poppy flower that seems inclined to twirl without aid." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "spinning_poppy" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/pain + +/obj/item/weapon/potion_material/salt_mage + name = "salt mage" + desc = "A statuette made from salt crystals, it's adorned with a little mages hat." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "salt_mage" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/shrink + +/obj/item/weapon/potion_material/golden_grapes + name = "golden grapes" + desc = "A bunch of grapes with a shining golden skin, they smell strongly of some sort of solvent." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "golden_grapes" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/growth + +/obj/item/weapon/potion_material/fairy_house + name = "fairy house" + desc = "A moderately large mushroom with a speckled red cap and... a door on the front?" + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "fairy_house" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/faerie + +/obj/item/weapon/potion_material/thorny_bulb + name = "thorny bulb" + desc = "A flesh green plant bulb covered in thorns, it has a sulfur rich aroma." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "thorny_bulb" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation + +/obj/item/weapon/potion_material/ancient_egg + name = "ancient egg" + desc = "An egg, but seemingly really really old and long past rotten." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "ancient_egg" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/speed + +/obj/item/weapon/potion_material/crown_stem + name = "crown stem" + desc = "An odd little flower that looks like a crown, the leaves have a minty aroma." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "crown_stem" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/attractiveness + +/obj/item/weapon/potion_material/red_ingot + name = "red ingot" + desc = "An oddly red coloured block of iron, it seems rather brittle and wouldn't make for a good smithing material." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "red_ingot" + base_reagent = /obj/item/weapon/potion_base/alkahest + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/boyjuice + +/obj/item/weapon/potion_material/soft_diamond + name = "soft diamond" + desc = "A gem that looks much like a diamond, but is squishy to the touch." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "soft_diamond" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/girljuice + +/obj/item/weapon/potion_material/solid_mist + name = "solid mist" + desc = "A small purple stone that seems to be radiating some sort of mist." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "solid_mist" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/badpolymorph + +/obj/item/weapon/potion_material/spider_leg + name = "spider leg" + desc = "A severed limb from a spider, it seems to be oozing with green... something." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "spider_leg" + base_reagent = /obj/item/weapon/potion_base/aqua_regia + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/SOP + +/obj/item/weapon/potion_material/folded_dark + name = "folded dark" + desc = "A folded material that appears to be made of pure dark." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "folded_dark" + base_reagent = /obj/item/weapon/potion_base/ichor + product_potion = /obj/item/weapon/reagent_containers/glass/bottle/potion/truepolymorph + +//base ingredients + +/obj/item/weapon/potion_base/aqua_regia + name = "aqua regia" + desc = "A mixture of concentrated acids, be careful not to spill it! A base ingredient of many potions." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "aqua_regia" + w_class = ITEMSIZE_TINY + +/obj/item/weapon/potion_base/ichor + name = "ichor" + desc = "A thick and heavy red reagent said to be tinged with the blood of gods. A base ingredient of many potions." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "ichor" + w_class = ITEMSIZE_TINY + +/obj/item/weapon/potion_base/alkahest + name = "alkahest" + desc = "Also known as the universal solvent, said to be capable of dissolving metal rapidly. A base ingredient of many potions." + icon = 'icons/obj/chemical_potionreagents.dmi' + icon_state = "alkahest" + w_class = ITEMSIZE_TINY diff --git a/code/modules/reagents/machinery/dispenser/dispenser2.dm b/code/modules/reagents/machinery/dispenser/dispenser2.dm index 2d229f73aa..bd9c85b24c 100644 --- a/code/modules/reagents/machinery/dispenser/dispenser2.dm +++ b/code/modules/reagents/machinery/dispenser/dispenser2.dm @@ -77,7 +77,7 @@ SStgui.update_uis(src) /obj/machinery/chemical_dispenser/attackby(obj/item/weapon/W, mob/user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) playsound(src, W.usesound, 50, 1) to_chat(user, "You begin to [anchored ? "un" : ""]fasten \the [src].") if (do_after(user, 20 * W.toolspeed)) @@ -92,7 +92,7 @@ else if(istype(W, /obj/item/weapon/reagent_containers/chem_disp_cartridge)) add_cartridge(W, user) - else if(W.is_screwdriver()) + else if(W.has_tool_quality(TOOL_SCREWDRIVER)) var/label = tgui_input_list(user, "Which cartridge would you like to remove?", "Chemical Dispenser", cartridges) if(!label) return var/obj/item/weapon/reagent_containers/chem_disp_cartridge/C = remove_cartridge(label) @@ -134,7 +134,7 @@ data["amount"] = amount data["isBeakerLoaded"] = container ? 1 : 0 data["glass"] = accept_drinking - + var/beakerContents[0] if(container && container.reagents && container.reagents.reagent_list.len) for(var/datum/reagent/R in container.reagents.reagent_list) diff --git a/code/modules/reagents/machinery/dispenser/reagent_tank.dm b/code/modules/reagents/machinery/dispenser/reagent_tank.dm index df1af4cfd8..6c4d71181c 100644 --- a/code/modules/reagents/machinery/dispenser/reagent_tank.dm +++ b/code/modules/reagents/machinery/dispenser/reagent_tank.dm @@ -103,6 +103,11 @@ . = ..() reagents.add_reagent("water", 4000) +/obj/structure/reagent_dispensers/watertank/barrel + name = "water barrel" + desc = "A barrel for holding water." + icon_state = "waterbarrel" + //Fuel /obj/structure/reagent_dispensers/fueltank name = "fuel tank" @@ -173,7 +178,7 @@ modded = FALSE /obj/structure/reagent_dispensers/fueltank/barrel/attackby(obj/item/weapon/W as obj, mob/user as mob) - if (W.is_wrench()) //can't wrench it shut, it's always open + if (W.has_tool_quality(TOOL_WRENCH)) //can't wrench it shut, it's always open return return ..() //VOREStation Add End @@ -197,7 +202,7 @@ /obj/structure/reagent_dispensers/fueltank/attackby(obj/item/weapon/W as obj, mob/user as mob) src.add_fingerprint(user) - if (W.is_wrench()) + if (W.has_tool_quality(TOOL_WRENCH)) user.visible_message("[user] wrenches [src]'s faucet [modded ? "closed" : "open"].", \ "You wrench [src]'s faucet [modded ? "closed" : "open"]") modded = modded ? 0 : 1 @@ -355,7 +360,7 @@ return 1 /obj/structure/reagent_dispensers/water_cooler/attackby(obj/item/I as obj, mob/user as mob) - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) src.add_fingerprint(user) if(bottle) playsound(src, I.usesound, 50, 1) @@ -380,7 +385,7 @@ playsound(src, I.usesound, 50, 1) return - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(cupholder) playsound(src, I.usesound, 50, 1) to_chat(user, "You take the cup dispenser off.") @@ -463,6 +468,20 @@ . = ..() reagents.add_reagent("beer",1000) +/obj/structure/reagent_dispensers/beerkeg/wood + name = "beer keg" + desc = "A beer keg with a tap on it." + icon_state = "beertankfantasy" + +/obj/structure/reagent_dispensers/beerkeg/wine + name = "wine barrel" + desc = "A wine casket with a tap on it." + icon_state = "beertankfantasy" + +/obj/structure/reagent_dispensers/beerkeg/wine/Initialize() + . = ..() + reagents.add_reagent("redwine",1000) + /obj/structure/reagent_dispensers/beerkeg/fakenuke name = "nuclear beer keg" desc = "A beer keg in the form of a nuclear bomb! An absolute blast at parties!" @@ -492,3 +511,15 @@ reagents.splash_area(get_turf(src), 3) visible_message(span("danger", "The [src] bursts open, spreading oil all over the area.")) qdel(src) + +/obj/structure/reagent_dispensers/bloodbarrel + name = "blood barrel" + desc = "A beer keg." + icon = 'icons/obj/chemical_tanks.dmi' + icon_state = "bloodbarrel" + amount_per_transfer_from_this = 10 + +/obj/structure/reagent_dispensers/bloodbarrel/Initialize() + . = ..() + reagents.add_reagent("blood", 1000, list("donor"=null,"viruses"=null,"blood_DNA"=null,"blood_type"="O-","resistances"=null,"trace_chem"=null)) + diff --git a/code/modules/reagents/machinery/pump.dm b/code/modules/reagents/machinery/pump.dm index 6c9302d61e..0330547df2 100644 --- a/code/modules/reagents/machinery/pump.dm +++ b/code/modules/reagents/machinery/pump.dm @@ -57,7 +57,7 @@ src.reagents.trans_to_holder(R, src.reagents.total_volume) qdel(src.reagents) src.reagents = R - + /obj/machinery/pump/update_icon() ..() cut_overlays() @@ -81,7 +81,7 @@ /obj/machinery/pump/process() if(!on) return - + if(!anchored || !(cell?.use(active_power_usage))) set_state(FALSE) return @@ -141,18 +141,18 @@ /obj/machinery/pump/attackby(obj/item/weapon/W, mob/user) . = TRUE - if(W.is_screwdriver() && !open) + if(W.has_tool_quality(TOOL_SCREWDRIVER) && !open) to_chat(user, SPAN_NOTICE("You [unlocked ? "screw" : "unscrew"] the battery panel.")) unlocked = !unlocked - else if(W.is_crowbar() && unlocked) + else if(W.has_tool_quality(TOOL_CROWBAR) && unlocked) to_chat(user, open ? \ "You crowbar the battery panel in place." : \ "You remove the battery panel." \ ) open = !open - - else if(W.is_wrench()) + + else if(W.has_tool_quality(TOOL_WRENCH)) if(on) to_chat(user, "\The [src] is active. Turn it off before trying to move it!") return FALSE diff --git a/code/modules/reagents/reactions/instant/drinks.dm b/code/modules/reagents/reactions/instant/drinks.dm index c2e0521ee6..3f470a5714 100644 --- a/code/modules/reagents/reactions/instant/drinks.dm +++ b/code/modules/reagents/reactions/instant/drinks.dm @@ -768,7 +768,7 @@ name = "Decaf Mint Tea" id = "decafminttea" result = "decafminttea" - required_reagents = list("decaftea" = 5, "mint" = 1) + required_reagents = list("teadecaf" = 5, "mint" = 1) result_amount = 6 /decl/chemical_reaction/instant/drinks/lemontea @@ -782,7 +782,7 @@ name = "Decaf Lemon Tea" id = "decaflemontea" result = "decaflemontea" - required_reagents = list("decaftea" = 5, "lemonjuice" = 1) + required_reagents = list("teadecaf" = 5, "lemonjuice" = 1) result_amount = 6 /decl/chemical_reaction/instant/drinks/limetea @@ -796,7 +796,7 @@ name = "Decaf Lime Tea" id = "decaflimetea" result = "decaflimetea" - required_reagents = list("decaftea" = 5, "limejuice" = 1) + required_reagents = list("teadecaf" = 5, "limejuice" = 1) result_amount = 6 /decl/chemical_reaction/instant/drinks/orangetea @@ -810,7 +810,7 @@ name = "Decaf Orange Tea" id = "decaforangetea" result = "decaforangetea" - required_reagents = list("decaftea" = 5, "orangejuice" = 1) + required_reagents = list("teadecaf" = 5, "orangejuice" = 1) result_amount = 6 /decl/chemical_reaction/instant/drinks/berrytea @@ -824,7 +824,7 @@ name = "Decaf Berry Tea" id = "decafberrytea" result = "decafberrytea" - required_reagents = list("decaftea" = 5, "berryjuice" = 1) + required_reagents = list("teadecaf" = 5, "berryjuice" = 1) result_amount = 6 /decl/chemical_reaction/instant/drinks/sakebomb diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index e902c81a86..ef71cc5987 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -296,7 +296,7 @@ user.drop_from_inventory(src) qdel(src) return - else if(D.is_wirecutter()) + else if(D.has_tool_quality(TOOL_WIRECUTTER)) to_chat(user, "You cut a big hole in \the [src] with \the [D]. It's kinda useless as a bucket now.") user.put_in_hands(new /obj/item/clothing/head/helmet/bucket) user.drop_from_inventory(src) @@ -377,3 +377,12 @@ amount_per_transfer_from_this = 20 possible_transfer_amounts = list(10,20,30,60,120) volume = 120 + +/obj/item/weapon/reagent_containers/glass/pint_mug + desc = "A rustic pint mug designed for drinking ale." + name = "pint mug" + icon = 'icons/obj/drinks.dmi' + icon_state = "pint_mug" + matter = list(MAT_WOOD = 50) + drop_sound = 'sound/items/drop/wooden.ogg' + pickup_sound = 'sound/items/pickup/wooden.ogg' diff --git a/code/modules/reagents/reagent_containers/pill.dm b/code/modules/reagents/reagent_containers/pill.dm index b3b0a637cd..f3afbe9b51 100644 --- a/code/modules/reagents/reagent_containers/pill.dm +++ b/code/modules/reagents/reagent_containers/pill.dm @@ -301,7 +301,7 @@ /obj/item/weapon/reagent_containers/pill/iron name = "Iron (30u)" //VOREStation Edit - desc = "Used to aid in blood regeneration after bleeding." + desc = "Used to aid in blood regeneration after bleeding for red-blooded crew." icon_state = "pill1" /obj/item/weapon/reagent_containers/pill/iron/Initialize() @@ -309,6 +309,16 @@ reagents.add_reagent("iron", 30) //VOREStation Edit color = reagents.get_color() +/obj/item/weapon/reagent_containers/pill/copper + name = "Copper (30u)" + desc = "Used to aid in blood regeneration after bleeding for blue-blooded crew." + icon_state = "pill1" + +/obj/item/weapon/reagent_containers/pill/copper/Initialize() + . = ..() + reagents.add_reagent("copper", 30) + color = reagents.get_color() + //Not-quite-medicine /obj/item/weapon/reagent_containers/pill/happy name = "Happy pill" diff --git a/code/modules/reagents/reagents/_reagents.dm b/code/modules/reagents/reagents/_reagents.dm index 4e537d69d4..2393240d36 100644 --- a/code/modules/reagents/reagents/_reagents.dm +++ b/code/modules/reagents/reagents/_reagents.dm @@ -180,6 +180,8 @@ /datum/reagent/proc/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) M.bloodstr.add_reagent(id, removed) + if(src.id == M.species.blood_reagents) + M.add_chemical_effect(CE_BLOODRESTORE, 8 * removed) return /datum/reagent/proc/affect_touch(var/mob/living/carbon/M, var/alien, var/removed) diff --git a/code/modules/reagents/reagents/dispenser.dm b/code/modules/reagents/reagents/dispenser.dm index 9b01836a61..4942567dc0 100644 --- a/code/modules/reagents/reagents/dispenser.dm +++ b/code/modules/reagents/reagents/dispenser.dm @@ -79,10 +79,6 @@ taste_description = "pennies" color = "#6E3B08" -/datum/reagent/copper/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - if(alien == IS_SKRELL) - M.add_chemical_effect(CE_BLOODRESTORE, 8 * removed) - /datum/reagent/ethanol name = "Ethanol" //Parent class for all alcoholic reagents. id = "ethanol" @@ -246,10 +242,6 @@ reagent_state = SOLID color = "#353535" -/datum/reagent/iron/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) - if(alien != IS_DIONA && alien != IS_SKRELL) - M.add_chemical_effect(CE_BLOODRESTORE, 8 * removed) - /datum/reagent/lithium name = "Lithium" id = "lithium" diff --git a/code/modules/reagents/reagents/food_drinks_vr.dm b/code/modules/reagents/reagents/food_drinks_vr.dm index 6a5d19262a..985a223d94 100644 --- a/code/modules/reagents/reagents/food_drinks_vr.dm +++ b/code/modules/reagents/reagents/food_drinks_vr.dm @@ -623,4 +623,77 @@ id = "strawberry_protein_shake" description = "A mixture of water and protein commonly used as a meal supplement. This one has added strawberry flavoring." taste_description = "strawberry" - color = "#e28585" \ No newline at end of file + color = "#e28585" + +//SOUPS. Don't use the base soup reagent. +/datum/reagent/drink/soup + name = "Soup" + id = "generic_soup" + description = "An indistinct soupy mass of nominal goodness, but questionable flavour." + taste_description = "upsettingly bland soup" + color = "#9a9a9a" + nutrition = 30 //same as base nutriment + +/datum/reagent/drink/soup/tomato + name = "Tomato Soup" + id = "tomato_soup" + description = "A thick and creamy tomato soup. Delicious! Definitely not ketchup." + taste_description = "rich, creamy tomato" + color = "#e4612d" + allergen_type = ALLERGEN_FRUIT //tomatoes are fruit, etc. etc. + +/datum/reagent/drink/soup/mushroom + name = "Cream of Mushroom Soup" + id = "mushroom_soup" + description = "A rich, earthy mushroom soup." + taste_description = "earthy mushrooms" + color = "#a59a83" + allergen_type = ALLERGEN_FUNGI //shrooms! + +/datum/reagent/drink/soup/chicken + name = "Cream of Chicken Soup" + id = "chicken_soup" + description = "A fairly thick, warming chicken-based soup." + taste_description = "savoury chicken goodness" + color = "#d4c574" + allergen_type = ALLERGEN_MEAT //plain ol' chimken + +/datum/reagent/drink/soup/chicken_noodle + name = "Chicken Noodle Soup" + id = "chicken_noodle_soup" + description = "A thin chicken broth with added noodles. If you're lucky there might be some chunks of chicken and veggies in there! Maybe." + taste_description = "savoury chicken-noodle goodness" + color = "#a27a41" + allergen_type = ALLERGEN_MEAT|ALLERGEN_GRAINS|ALLERGEN_VEGETABLE //chicken + grain-based noodles + veggie chunks + +/datum/reagent/drink/soup/onion + name = "Onion Soup" + id = "onion_soup" + description = "A humble staple of humanity throughout the centuries." + taste_description = "caramelized onions" + color = "#5d3918" + allergen_type = ALLERGEN_VEGETABLE //onions are veg, right? + +/datum/reagent/drink/soup/vegetable + name = "Vegetable Soup" + id = "vegetable_soup" + description = "A mix of various kinds of tasty vegetables, in soup format!" + taste_description = "mixed vegetables" + color = "#824005" + allergen_type = ALLERGEN_VEGETABLE //mixed veg + +/datum/reagent/drink/soup/beet + name = "Beet Soup" + id = "beet_soup" + description = "A hearty mix of tomatoes and beets, with a meat stock base." + taste_description = "sour tomatoes and some killer beets" + color = "#471b1c" + allergen_type = ALLERGEN_MEAT|ALLERGEN_FRUIT|ALLERGEN_VEGETABLE //meat stock, tomatoes, and beets + +/datum/reagent/drink/soup/hot_and_sour + name = "Hot & Sour Soup" + id = "hot_n_sour_soup" + description = "A spicy tofu-based soup." + taste_description = "spicy, sour tofu" + color = "#5f1b06" + allergen_type = ALLERGEN_BEANS|ALLERGEN_VEGETABLE|ALLERGEN_FUNGI //tofu is soy-based, ergo, beans. base recipe also uses cabbage and mushroom. diff --git a/code/modules/reagents/reagents/medicine_vr.dm b/code/modules/reagents/reagents/medicine_vr.dm index 3809d02121..c326dd21df 100644 --- a/code/modules/reagents/reagents/medicine_vr.dm +++ b/code/modules/reagents/reagents/medicine_vr.dm @@ -139,3 +139,177 @@ M.adjust_nutrition(-20 * removed) if(M.weight < 500) M.weight += 0.3 + +/datum/reagent/polymorph + name = "Transforitine" + id = "polymorph" + description = "A chemical that instantly transforms the consumer into another creature." + taste_description = "luck" + reagent_state = LIQUID + color = "#a754de" + scannable = 1 + var/tf_type = /mob/living/simple_mob/animal/passive/mouse + var/tf_possible_types = list( + "mouse" = /mob/living/simple_mob/animal/passive/mouse, + "rat" = /mob/living/simple_mob/animal/passive/mouse/rat, + "giant rat" = /mob/living/simple_mob/vore/aggressive/rat, + "dust jumper" = /mob/living/simple_mob/vore/alienanimals/dustjumper, + "woof" = /mob/living/simple_mob/vore/woof, + "corgi" = /mob/living/simple_mob/animal/passive/dog/corgi, + "cat" = /mob/living/simple_mob/animal/passive/cat, + "chicken" = /mob/living/simple_mob/animal/passive/chicken, + "cow" = /mob/living/simple_mob/animal/passive/cow, + "lizard" = /mob/living/simple_mob/animal/passive/lizard, + "rabbit" = /mob/living/simple_mob/vore/rabbit, + "fox" = /mob/living/simple_mob/animal/passive/fox, + "fennec" = /mob/living/simple_mob/vore/fennec, + "cute fennec" = /mob/living/simple_mob/animal/passive/fennec, + "fennix" = /mob/living/simple_mob/vore/fennix, + "red panda" = /mob/living/simple_mob/vore/redpanda, + "opossum" = /mob/living/simple_mob/animal/passive/opossum, + "horse" = /mob/living/simple_mob/vore/horse, + "goose" = /mob/living/simple_mob/animal/space/goose, + "sheep" = /mob/living/simple_mob/vore/sheep, + "space bumblebee" = /mob/living/simple_mob/vore/bee, + "space bear" = /mob/living/simple_mob/animal/space/bear, + "voracious lizard" = /mob/living/simple_mob/vore/aggressive/dino, + "giant frog" = /mob/living/simple_mob/vore/aggressive/frog, + "jelly blob" = /mob/living/simple_mob/vore/jelly, + "wolf" = /mob/living/simple_mob/vore/wolf, + "direwolf" = /mob/living/simple_mob/vore/wolf/direwolf, + "great wolf" = /mob/living/simple_mob/vore/greatwolf, + "sect queen" = /mob/living/simple_mob/vore/sect_queen, + "sect drone" = /mob/living/simple_mob/vore/sect_drone, + "panther" = /mob/living/simple_mob/vore/aggressive/panther, + "giant snake" = /mob/living/simple_mob/vore/aggressive/giant_snake, + "deathclaw" = /mob/living/simple_mob/vore/aggressive/deathclaw, + "otie" = /mob/living/simple_mob/vore/otie, + "mutated otie" =/mob/living/simple_mob/vore/otie/feral, + "red otie" = /mob/living/simple_mob/vore/otie/red, + "defanged xenomorph" = /mob/living/simple_mob/vore/xeno_defanged, + "catslug" = /mob/living/simple_mob/vore/alienanimals/catslug, + "monkey" = /mob/living/carbon/human/monkey, + "wolpin" = /mob/living/carbon/human/wolpin, + "sparra" = /mob/living/carbon/human/sparram, + "saru" = /mob/living/carbon/human/sergallingm, + "sobaka" = /mob/living/carbon/human/sharkm, + "farwa" = /mob/living/carbon/human/farwa, + "neaera" = /mob/living/carbon/human/neaera, + "stok" = /mob/living/carbon/human/stok, + "weretiger" = /mob/living/simple_mob/vore/weretiger, + "dragon" = /mob/living/simple_mob/vore/bigdragon/friendly, + "leopardmander" = /mob/living/simple_mob/vore/leopardmander + ) + +/datum/reagent/polymorph/affect_blood(var/mob/living/carbon/target, var/removed) + var/mob/living/M = target + log_debug("polymorph start") + if(!istype(M)) + log_debug("polymorph istype") + return + if(M.tf_mob_holder) + log_debug("polymorph tf_holder") + var/mob/living/ourmob = M.tf_mob_holder + if(ourmob.ai_holder) + log_debug("polymorph ai") + var/datum/ai_holder/our_AI = ourmob.ai_holder + our_AI.set_stance(STANCE_IDLE) + M.tf_mob_holder = null + ourmob.ckey = M.ckey + var/turf/get_dat_turf = get_turf(target) + ourmob.loc = get_dat_turf + ourmob.forceMove(get_dat_turf) + ourmob.vore_selected = M.vore_selected + M.vore_selected = null + for(var/obj/belly/B as anything in M.vore_organs) + log_debug("polymorph belly") + B.loc = ourmob + B.forceMove(ourmob) + B.owner = ourmob + M.vore_organs -= B + ourmob.vore_organs += B + + ourmob.Life(1) + if(ishuman(M)) + log_debug("polymorph human") + for(var/obj/item/W in M) + log_debug("polymorph items") + if(istype(W, /obj/item/weapon/implant/backup) || istype(W, /obj/item/device/nif)) + log_debug("polymorph implants") + continue + M.drop_from_inventory(W) + + qdel(target) + return + else + log_debug("polymorph else") + if(M.stat == DEAD) //We can let it undo the TF, because the person will be dead, but otherwise things get weird. + log_debug("polymorph dead") + return + log_debug("polymorph not dead") + var/mob/living/new_mob = spawn_mob(M) + new_mob.faction = M.faction + + if(new_mob && isliving(new_mob)) + log_debug("polymorph new_mob") + for(var/obj/belly/B as anything in new_mob.vore_organs) + log_debug("polymorph new_mob belly") + new_mob.vore_organs -= B + qdel(B) + new_mob.vore_organs = list() + new_mob.name = M.name + new_mob.real_name = M.real_name + for(var/lang in M.languages) + new_mob.languages |= lang + M.copy_vore_prefs_to_mob(new_mob) + new_mob.vore_selected = M.vore_selected + if(ishuman(M)) + log_debug("polymorph ishuman part2") + var/mob/living/carbon/human/H = M + if(ishuman(new_mob)) + log_debug("polymorph ishuman(newmob)") + var/mob/living/carbon/human/N = new_mob + N.gender = H.gender + N.identifying_gender = H.identifying_gender + else + log_debug("polymorph gender else") + new_mob.gender = H.gender + else + log_debug("polymorph gender else 2") + new_mob.gender = M.gender + if(ishuman(new_mob)) + var/mob/living/carbon/human/N = new_mob + N.identifying_gender = M.gender + + for(var/obj/belly/B as anything in M.vore_organs) + B.loc = new_mob + B.forceMove(new_mob) + B.owner = new_mob + M.vore_organs -= B + new_mob.vore_organs += B + + new_mob.ckey = M.ckey + if(M.ai_holder && new_mob.ai_holder) + var/datum/ai_holder/old_AI = M.ai_holder + old_AI.set_stance(STANCE_SLEEP) + var/datum/ai_holder/new_AI = new_mob.ai_holder + new_AI.hostile = old_AI.hostile + new_AI.retaliate = old_AI.retaliate + M.loc = new_mob + M.forceMove(new_mob) + new_mob.tf_mob_holder = M + target.bloodstr.clear_reagents() //Got to clear all reagents to make sure mobs don't keep spawning. + target.ingested.clear_reagents() + target.touching.clear_reagents() + +/datum/reagent/polymorph/proc/spawn_mob(var/mob/living/target) + log_debug("polymorph proc spawn mob") + var/choice = pick(tf_possible_types) + tf_type = tf_possible_types[choice] + log_debug("polymorph [tf_type]") + if(!ispath(tf_type)) + log_debug("polymorph tf_type fail") + return + log_debug("polymorph tf_type pass") + var/new_mob = new tf_type(get_turf(target)) + return new_mob diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 76ff255292..ac02254e2c 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -289,45 +289,51 @@ if(default_deconstruction_screwdriver(user, I)) return - if(istype(I, /obj/item/weapon/weldingtool)) - if(panel_open) - var/obj/item/weapon/weldingtool/WT = I - if(!WT.remove_fuel(0, user)) - to_chat(user, "The welding tool must be on to complete this task.") - return - playsound(src, WT.usesound, 50, 1) - if(do_after(user, 20 * WT.toolspeed)) - if(!src || !WT.isOn()) return - to_chat(user, "You deconstruct the frame.") - new /obj/item/stack/material/steel( src.loc, 2 ) - qdel(src) - return + if(!panel_open) //It's probably better to just check this once instead of each time + return - if(istype(I, /obj/item/device/multitool)) - if(panel_open) - var/input = sanitize(tgui_input_text(usr, "What id would you like to give this conveyor switch?", "Multitool-Conveyor interface", id)) - if(!input) - to_chat(user, "No input found. Please hang up and try your call again.") - return - id = input - conveyors = list() // Clear list so they aren't double added. - for(var/obj/machinery/conveyor/C in machines) - if(C.id == id) - conveyors += C + if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/WT = I.get_welder() + if(!WT.remove_fuel(0, user)) + to_chat(user, "The welding tool must be on to complete this task.") + return + playsound(src, WT.usesound, 50, 1) + if(do_after(user, 20 * WT.toolspeed)) + if(!src || !WT.isOn()) return + to_chat(user, "You deconstruct the frame.") + new /obj/item/stack/material/steel( src.loc, 2 ) + qdel(src) return - if(istype(I, /obj/item/weapon/tool/wrench)) - if(panel_open) - if(oneway == 1) - to_chat(user, "You set the switch to two way operation.") - oneway = 0 - playsound(src, I.usesound, 50, 1) - return - else - to_chat(user, "You set the switch to one way operation.") - oneway = 1 - playsound(src, I.usesound, 50, 1) - return + if(I.has_tool_quality(TOOL_MULTITOOL)) + var/input = sanitize(tgui_input_text(usr, "What id would you like to give this conveyor switch?", "Multitool-Conveyor interface", id)) + if(!input) + to_chat(user, "No input found. Please hang up and try your call again.") + return + id = input + conveyors = list() // Clear list so they aren't double added. + for(var/obj/machinery/conveyor/C in machines) + if(C.id == id) + conveyors += C + return + + if(I.has_tool_quality(TOOL_WRENCH)) + if(oneway == 1) + to_chat(user, "You set the switch to two way operation.") + oneway = 0 + playsound(src, I.usesound, 50, 1) + return + else + to_chat(user, "You set the switch to one way operation.") + oneway = 1 + playsound(src, I.usesound, 50, 1) + return + + //Ports making conveyors fast from CHOMPstation + if(I.has_tool_quality(TOOL_WIRECUTTER)) + toggle_speed() + to_chat(user, "You adjust the speed of the conveyor switch") + return /obj/machinery/conveyor_switch/oneway oneway = 1 diff --git a/code/modules/recycling/disposal-construction.dm b/code/modules/recycling/disposal-construction.dm index 955be7f272..67b5c15e33 100644 --- a/code/modules/recycling/disposal-construction.dm +++ b/code/modules/recycling/disposal-construction.dm @@ -246,7 +246,7 @@ var/obj/structure/disposalpipe/CP = locate() in T // wrench: (un)anchor - if(I.is_wrench()) + if(I.has_tool_quality(TOOL_WRENCH)) if(anchored) anchored = FALSE if(ispipe) @@ -285,9 +285,9 @@ update() // weldingtool: convert to real pipe - else if(istype(I, /obj/item/weapon/weldingtool)) + else if(I.has_tool_quality(TOOL_WELDER)) if(anchored) - var/obj/item/weapon/weldingtool/W = I + var/obj/item/weapon/weldingtool/W = I.get_welder() if(W.remove_fuel(0,user)) playsound(src, W.usesound, 100, 1) to_chat(user, "Welding the [nicetype] in place.") diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index d900a3fc0a..a9a317b45d 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -56,7 +56,7 @@ src.add_fingerprint(user) if(mode<=0) // It's off - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(contents.len > 0) to_chat(user, "Eject the items first!") return @@ -70,11 +70,11 @@ playsound(src, I.usesound, 50, 1) to_chat(user, "You attach the screws around the power connection.") return - else if(istype(I, /obj/item/weapon/weldingtool) && mode==-1) + else if(I.has_tool_quality(TOOL_WELDER) && mode==-1) if(contents.len > 0) to_chat(user, "Eject the items first!") return - var/obj/item/weapon/weldingtool/W = I + var/obj/item/weapon/weldingtool/W = I.get_welder() if(W.remove_fuel(0,user)) playsound(src, W.usesound, 100, 1) to_chat(user, "You start slicing the floorweld off the disposal unit.") @@ -980,8 +980,8 @@ if(!T.is_plating()) return // prevent interaction with T-scanner revealed pipes src.add_fingerprint(user) - if(istype(I, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/W = I + if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/W = I.get_welder() if(W.remove_fuel(0,user)) playsound(src, W.usesound, 50, 1) @@ -1455,8 +1455,8 @@ if(!T.is_plating()) return // prevent interaction with T-scanner revealed pipes src.add_fingerprint(user) - if(istype(I, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/W = I + if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/W = I.get_welder() if(W.remove_fuel(0,user)) playsound(src, W.usesound, 100, 1) @@ -1576,7 +1576,7 @@ if(!I || !user) return src.add_fingerprint(user) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) if(mode==0) mode=1 to_chat(user, "You remove the screws around the power connection.") @@ -1587,8 +1587,8 @@ to_chat(user, "You attach the screws around the power connection.") playsound(src, I.usesound, 50, 1) return - else if(istype(I, /obj/item/weapon/weldingtool) && mode==1) - var/obj/item/weapon/weldingtool/W = I + else if(I.has_tool_quality(TOOL_WELDER) && mode==1) + var/obj/item/weapon/weldingtool/W = I.get_welder() if(W.remove_fuel(0,user)) playsound(src, W.usesound, 100, 1) to_chat(user, "You start slicing the floorweld off the disposal outlet.") diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index 8fe9646ac9..caa4df13bc 100755 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -437,13 +437,13 @@ if(!I || !user) return - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) c_mode = !c_mode playsound(src, I.usesound, 50, 1) to_chat(user, "You [c_mode ? "remove" : "attach"] the screws around the power connection.") return - if(istype(I, /obj/item/weapon/weldingtool) && c_mode==1) - var/obj/item/weapon/weldingtool/W = I + if(I.has_tool_quality(TOOL_WELDER) && c_mode==1) + var/obj/item/weapon/weldingtool/W = I.get_welder() if(!W.remove_fuel(0,user)) to_chat(user, "You need more welding fuel to complete this task.") return diff --git a/code/modules/research/designs/engineering.dm b/code/modules/research/designs/engineering.dm index ce41206708..b67a334310 100644 --- a/code/modules/research/designs/engineering.dm +++ b/code/modules/research/designs/engineering.dm @@ -19,7 +19,7 @@ id = "handdrill" req_tech = list(TECH_ENGINEERING = 3, TECH_MATERIAL = 2) materials = list(MAT_STEEL = 300, MAT_SILVER = 100) - build_path = /obj/item/weapon/tool/screwdriver/power + build_path = /obj/item/weapon/tool/transforming/powerdrill sort_string = "NAAAB" /datum/design/item/tool/jaws_life @@ -28,7 +28,7 @@ id = "jawslife" req_tech = list(TECH_ENGINEERING = 3, TECH_MATERIAL = 2) materials = list(MAT_STEEL = 300, MAT_SILVER = 100) - build_path = /obj/item/weapon/tool/crowbar/power + build_path = /obj/item/weapon/tool/transforming/jawsoflife sort_string = "NAAAC" // YW addition begins /datum/design/item/tool/rms diff --git a/code/modules/research/designs/misc_vr.dm b/code/modules/research/designs/misc_vr.dm index 1756d12493..12121fea11 100644 --- a/code/modules/research/designs/misc_vr.dm +++ b/code/modules/research/designs/misc_vr.dm @@ -30,6 +30,14 @@ build_path = /obj/item/device/slow_sizegun sort_string = "TAVBB" +/datum/design/item/general/bluespace_collar + name = "Bluespace collar" + id = "bluespacecollar" + req_tech = list(TECH_BLUESPACE = 3, TECH_MATERIAL = 3, TECH_POWER = 2) + materials = list(MAT_STEEL = 2000, MAT_GLASS = 2000) + build_path = /obj/item/clothing/accessory/collar/shock/bluespace + sort_string = "TAVBC" + /datum/design/item/general/bodysnatcher name = "Body Snatcher" id = "bodysnatcher" diff --git a/code/modules/security levels/keycard authentication.dm b/code/modules/security levels/keycard authentication.dm index daeae94946..effc14b222 100644 --- a/code/modules/security levels/keycard authentication.dm +++ b/code/modules/security levels/keycard authentication.dm @@ -42,7 +42,7 @@ event_triggered_by = usr broadcast_request() //This is the device making the initial event request. It needs to broadcast to other devices - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) to_chat(user, "You begin removing the faceplate from the [src]") playsound(src, W.usesound, 50, 1) if(do_after(user, 10 * W.toolspeed)) diff --git a/code/modules/shieldgen/emergency_shield.dm b/code/modules/shieldgen/emergency_shield.dm index d7d244bac4..a3908a6a55 100644 --- a/code/modules/shieldgen/emergency_shield.dm +++ b/code/modules/shieldgen/emergency_shield.dm @@ -280,7 +280,7 @@ return 1 /obj/machinery/shieldgen/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 100, 1) if(is_open) to_chat(user, "You close the panel.") @@ -300,7 +300,7 @@ to_chat(user, "You repair the [src]!") update_icon() - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(locked) to_chat(user, "The bolts are covered, unlocking this would retract the covers.") return diff --git a/code/modules/shieldgen/sheldwallgen.dm b/code/modules/shieldgen/sheldwallgen.dm index d03cd22c45..3f4b7c2922 100644 --- a/code/modules/shieldgen/sheldwallgen.dm +++ b/code/modules/shieldgen/sheldwallgen.dm @@ -157,7 +157,7 @@ /obj/machinery/shieldwallgen/attackby(obj/item/W, mob/user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) if(active) to_chat(user, "Turn off the field generator first.") return diff --git a/code/modules/shieldgen/shield_capacitor.dm b/code/modules/shieldgen/shield_capacitor.dm index 2bd6818d25..c32998a0a2 100644 --- a/code/modules/shieldgen/shield_capacitor.dm +++ b/code/modules/shieldgen/shield_capacitor.dm @@ -46,7 +46,7 @@ updateDialog() else to_chat(user, "Access denied.") - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) src.anchored = !src.anchored playsound(src, W.usesound, 75, 1) src.visible_message("\icon[src][bicon(src)] [src] has been [anchored ? "bolted to the floor" : "unbolted from the floor"] by [user].") diff --git a/code/modules/shieldgen/shield_gen.dm b/code/modules/shieldgen/shield_gen.dm index 2617d6c28f..3763f324d7 100644 --- a/code/modules/shieldgen/shield_gen.dm +++ b/code/modules/shieldgen/shield_gen.dm @@ -66,7 +66,7 @@ updateDialog() else to_chat(user, "Access denied.") - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) src.anchored = !src.anchored playsound(src, W.usesound, 75, 1) src.visible_message("\icon[src][bicon(src)] [src] has been [anchored?"bolted to the floor":"unbolted from the floor"] by [user].") diff --git a/code/modules/shieldgen/shield_generator.dm b/code/modules/shieldgen/shield_generator.dm index 2158a53d02..3f0f23ed37 100644 --- a/code/modules/shieldgen/shield_generator.dm +++ b/code/modules/shieldgen/shield_generator.dm @@ -357,12 +357,12 @@ overloaded = 0 /obj/machinery/power/shield_generator/attackby(obj/item/O as obj, mob/user as mob) - if(panel_open && (O?.is_multitool() || O?.is_wirecutter())) + if(panel_open && (O?.has_tool_quality(TOOL_MULTITOOL) || O?.has_tool_quality(TOOL_WIRECUTTER))) wires.Interact(user) return TRUE if(default_deconstruction_screwdriver(user, O)) return - if(O?.is_crowbar() || O?.is_wrench() || istype(O, /obj/item/weapon/storage/part_replacer)) + if(O?.has_tool_quality(TOOL_CROWBAR) || O?.has_tool_quality(TOOL_WRENCH) || istype(O, /obj/item/weapon/storage/part_replacer)) if(offline_for) to_chat(user, "Wait until \the [src] cools down from emergency shutdown first!") return diff --git a/code/modules/surgery/surgery.dm b/code/modules/surgery/surgery.dm index ee3e3e1963..0bf247f50b 100644 --- a/code/modules/surgery/surgery.dm +++ b/code/modules/surgery/surgery.dm @@ -41,16 +41,16 @@ for(var/P in allowed_procs) switch(P) if(IS_SCREWDRIVER) - if(tool.is_screwdriver()) + if(tool.has_tool_quality(TOOL_SCREWDRIVER)) return allowed_procs[P] if(IS_CROWBAR) - if(tool.is_crowbar()) + if(tool.has_tool_quality(TOOL_CROWBAR)) return allowed_procs[P] if(IS_WIRECUTTER) - if(tool.is_wirecutter()) + if(tool.has_tool_quality(TOOL_WIRECUTTER)) return allowed_procs[P] if(IS_WRENCH) - if(tool.is_wrench()) + if(tool.has_tool_quality(TOOL_WRENCH)) return allowed_procs[P] return 0 diff --git a/code/modules/tables/rack_vr.dm b/code/modules/tables/rack_vr.dm index af422bfb0a..eae2442fa5 100644 --- a/code/modules/tables/rack_vr.dm +++ b/code/modules/tables/rack_vr.dm @@ -31,4 +31,18 @@ /obj/structure/table/rack/gun_rack/steel/New() material = get_material_by_name(MAT_STEEL) - ..() \ No newline at end of file + ..() + +/obj/structure/table/rack/wood + color = "#A1662F" + +/obj/structure/table/rack/wood/New() + material = get_material_by_name(MAT_WOOD) + ..() + +/obj/structure/table/rack/shelf/wood + color = "#A1662F" + +/obj/structure/table/rack/shelf/wood/New() + material = get_material_by_name(MAT_WOOD) + ..() diff --git a/code/modules/tables/tables.dm b/code/modules/tables/tables.dm index 3e682a518d..698feefe2f 100644 --- a/code/modules/tables/tables.dm +++ b/code/modules/tables/tables.dm @@ -99,7 +99,7 @@ var/list/table_icon_cache = list() /obj/structure/table/attackby(obj/item/weapon/W, mob/user) - if(reinforced && W.is_screwdriver()) + if(reinforced && W.has_tool_quality(TOOL_SCREWDRIVER)) remove_reinforced(W, user) if(!reinforced) update_desc() @@ -107,7 +107,7 @@ var/list/table_icon_cache = list() update_material() return 1 - if(carpeted && W.is_crowbar()) + if(carpeted && W.has_tool_quality(TOOL_CROWBAR)) user.visible_message("\The [user] removes the carpet from \the [src].", "You remove the carpet from \the [src].") new carpeted_type(loc) @@ -127,7 +127,7 @@ var/list/table_icon_cache = list() else to_chat(user, "You don't have enough carpet!") - if(!reinforced && !carpeted && material && W.is_wrench()) + if(!reinforced && !carpeted && material && W.has_tool_quality(TOOL_WRENCH)) remove_material(W, user) if(!material) update_connections(1) @@ -138,12 +138,12 @@ var/list/table_icon_cache = list() update_material() return 1 - if(!carpeted && !reinforced && !material && W.is_wrench()) + if(!carpeted && !reinforced && !material && W.has_tool_quality(TOOL_WRENCH)) dismantle(W, user) return 1 - if(health < maxhealth && istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/F = W + if(health < maxhealth && W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/F = W.get_welder() if(F.welding) to_chat(user, "You begin reparing damage to \the [src].") playsound(src, F.usesound, 50, 1) @@ -366,7 +366,7 @@ var/list/table_icon_cache = list() if(material) for(var/i = 1 to 4) var/connect = connections?[i] || 0 - var/image/I = get_table_image(icon, "[material.icon_base]_[connect]", 1<<(i-1), material.icon_colour, 255 * material.opacity) + var/image/I = get_table_image(icon, "[material.table_icon_base]_[connect]", 1<<(i-1), material.icon_colour, 255 * material.opacity) add_overlay(I) // Reinforcements @@ -400,7 +400,7 @@ var/list/table_icon_cache = list() icon_state = "flip[type]" if(material) - var/image/I = image(icon, "[material.icon_base]_flip[type]") + var/image/I = image(icon, "[material.table_icon_base]_flip[type]") I.color = material.icon_colour I.alpha = 255 * material.opacity add_overlay(I) diff --git a/code/modules/tgui/states/vorepanel_vr.dm b/code/modules/tgui/states/vorepanel_vr.dm index 855c332c08..1928e7a984 100644 --- a/code/modules/tgui/states/vorepanel_vr.dm +++ b/code/modules/tgui/states/vorepanel_vr.dm @@ -13,6 +13,6 @@ GLOBAL_DATUM_INIT(tgui_vorepanel_state, /datum/tgui_state/vorepanel_state, new) return STATUS_CLOSE if(!user.client) return STATUS_CLOSE - if(user.stat == DEAD) + if(!isnewplayer(user) && user.stat == DEAD) return STATUS_DISABLED return STATUS_INTERACTIVE \ No newline at end of file diff --git a/code/modules/vchat/css/ss13styles.css b/code/modules/vchat/css/ss13styles.css index 66711a34b0..21a5c3dc16 100644 --- a/code/modules/vchat/css/ss13styles.css +++ b/code/modules/vchat/css/ss13styles.css @@ -102,6 +102,7 @@ body.inverted { .deadsay {color: #530FAD;} .inverted .deadsay {color: #732FCD;} /* Dark mode */ .radio {color: #008000;} +.inverted .radio {color: #00a800;} /* Dark mode */ .deptradio {color: #ff00ff;} /* when all other department colors fail */ .newscaster {color: #750000;} @@ -129,7 +130,13 @@ body.inverted { .inverted .emote {color: #FFFFFF;} .alert {color: #ff0000;} h1.alert, h2.alert {color: #000000;} -.nif {} /* VOREStation Add */ +/* VOREStation Add Start */ +.nif {} +.psay {color: #800080;font-style: italic;} +.inverted .psay {color: #e300e4;font-style: italic;} +.pemote {color: #800080;font-style: italic;} +.inverted .pemote {color: #e300e4;font-style: italic;} +/* VOREStation Add End */ /* Game Messages */ @@ -153,15 +160,17 @@ h1.alert, h2.alert {color: #000000;} /* Languages */ -.alien {color: #543354;} +.alien {color: #543354;font-style: italic;} .tajaran {color: #803B56;} .tajaran_signlang {color: #941C1C;} .akhani {color: #AC398C;} .skrell {color: #00B0B3;} .skrellfar {color: #70FCFF;} .soghun {color: #50BA6C;} -.solcom {color: #3333CE;} /* VOREStation Edit */ -.changeling {color: #800080;} +.solcom {color: #3333CE;} +.inverted .solcom {color: #6da6f0;} +.changeling {color: #800080;font-style: italic;} +.inverted .changeling {color: #b000b1;} .sergal {color: #0077FF;} .birdsongc {color: #CC9900;} .vulpkanin {color: #B97A57;} @@ -177,14 +186,18 @@ h1.alert, h2.alert {color: #000000;} .zaddat {color: #941C1C;} .rough {font-family: "Trebuchet MS", cursive, sans-serif;} .say_quote {font-family: Georgia, Verdana, sans-serif;} +.say_quote_italics {font-style: italic; font-family: Georgia, Verdana, sans-serif;} .terminus {font-family: "Times New Roman", Times, serif, sans-serif} .interface {color: #330033;} .spacer {color: #9c660b;} /* VOREStation Add */ .blob {color: #ff950d; font-weight: bold; font-style: italic;} +.teppi {color: #816540; word-spacing:4pt; font-family: "Segoe Script Bold","Segoe Script",sans-serif,Verdana;} +.shadekin {color: #be3cc5; font-size: 150%; font-weight: bold; font-family: "Gabriola", cursive, sans-serif;} /* YW Edit start */ -.psionic {color: #993399;} -.wingdings {font-family: Wingdings, Webdings} +.psionic {color: #993399;} +.wingdings {font-family: Wingdings, Webdings} /* YW Edit End */ + .black {color: #000000;} .darkgray {color: #808080;} .gray {color: #A9A9A9;} diff --git a/code/modules/vchat/js/vchat.js b/code/modules/vchat/js/vchat.js index ba224e3328..557c4c5140 100644 --- a/code/modules/vchat/js/vchat.js +++ b/code/modules/vchat/js/vchat.js @@ -145,7 +145,7 @@ function start_vue() { //The table to map game css classes to our vchat categories type_table: [ { - matches: ".filter_say, .say, .emote, .emote_subtle", //VOREStation Edit + matches: ".filter_say, .say, .emote, .emotesubtle", //VOREStation Edit becomes: "vc_localchat", pretty: "Local Chat", tooltip: "In-character local messages (say, emote, etc)", @@ -209,6 +209,14 @@ function start_vue() { required: false, admin: false }, + { + matches: ".psay, .pemote", + becomes: "vc_pmessage", + pretty: "Pred/Prey Messages", + tooltip: "Messages from / to absorbed or dominated prey", + required: false, + admin: false + }, //VOREStation Add End { matches: ".mentor_channel, .mentor", diff --git a/code/modules/vchat/js/vchat.min.js b/code/modules/vchat/js/vchat.min.js index 2c6bd03b5e..4a220ec820 100644 --- a/code/modules/vchat/js/vchat.min.js +++ b/code/modules/vchat/js/vchat.min.js @@ -1 +1 @@ -!function(){var e=console.log;console.log=function(t){send_debug(t),e.apply(console,arguments)};var t=console.error;console.error=function(e){send_debug(e),t.apply(console,arguments)},window.onerror=function(e,t,s,a,n){var o="";return n&&n.stack&&(o=n.stack),send_debug(e+" ("+t+"@"+s+":"+a+") "+n+"|UA: "+navigator.userAgent+"|Stack: "+o),!0}}();var vueapp,vchat_opts={msBeforeDropped:3e4,cookiePrefix:"vst-",alwaysShow:["vc_looc","vc_system"],vchatTabsVer:1},DARKMODE_COLORS={buttonBgColor:"#40628a",buttonTextColor:"#FFFFFF",windowBgColor:"#272727",highlightColor:"#009900",tabTextColor:"#FFFFFF",tabBackgroundColor:"#272727"},LIGHTMODE_COLORS={buttonBgColor:"none",buttonTextColor:"#000000",windowBgColor:"none",highlightColor:"#007700",tabTextColor:"#000000",tabBackgroundColor:"none"},set_storage=set_cookie,get_storage=get_cookie,domparser=new DOMParser;storageAvailable("localStorage")&&(set_storage=set_localstorage,get_storage=get_localstorage);var vchat_state={ready:!1,byond_ip:null,byond_cid:null,byond_ckey:null,lastPingReceived:0,latency_sent:0,lastId:0};function start_vchat(){start_vue(),vchat_state.ready=!0,push_Topic("done_loading"),push_Topic_showingnum(this.showingnum),doWinset("htmloutput",{"is-visible":!0}),doWinset("oldoutput",{"is-visible":!1}),doWinset("chatloadlabel",{"is-visible":!1}),setInterval(check_ping,vchat_opts.msBeforeDropped),send_debug("VChat Loaded!")}function start_vue(){vueapp=new Vue({el:"#app",data:{messages:[],shown_messages:[],unshown_messages:0,archived_messages:[],tabs:[{name:"Main",categories:[],immutable:!0,active:!0}],unread_messages:{},editing:!1,paused:!1,latency:0,reconnecting:!1,ext_styles:"",is_admin:!1,inverted:!1,crushing:3,animated:!1,fontsize:.9,lineheight:130,showingnum:200,type_table:[{matches:".filter_say, .say, .emote, .emote_subtle",becomes:"vc_localchat",pretty:"Local Chat",tooltip:"In-character local messages (say, emote, etc)",required:!1,admin:!1},{matches:".filter_radio, .alert, .syndradio, .centradio, .airadio, .entradio, .comradio, .secradio, .engradio, .medradio, .sciradio, .supradio, .srvradio, .expradio, .radio, .deptradio, .newscaster",becomes:"vc_radio",pretty:"Radio Comms",tooltip:"All departments of radio messages",required:!1,admin:!1},{matches:".filter_notice, .notice:not(.pm), .adminnotice, .info, .sinister, .cult",becomes:"vc_info",pretty:"Notices",tooltip:"Non-urgent messages from the game and items",required:!1,admin:!1},{matches:".filter_warning, .warning:not(.pm), .critical, .userdanger, .italics",becomes:"vc_warnings",pretty:"Warnings",tooltip:"Urgent messages from the game and items",required:!1,admin:!1},{matches:".filter_deadsay, .deadsay",becomes:"vc_deadchat",pretty:"Deadchat",tooltip:"All of deadchat",required:!1,admin:!1},{matches:".filter_pray",becomes:"vc_pray",pretty:"Pray",tooltip:"Prayer messages",required:!1,admin:!1},{matches:".ooc, .filter_ooc",becomes:"vc_globalooc",pretty:"Global OOC",tooltip:"The bluewall of global OOC messages",required:!1,admin:!1},{matches:".nif",becomes:"vc_nif",pretty:"NIF Messages",tooltip:"Messages from the NIF itself and people inside",required:!1,admin:!1},{matches:".mentor_channel, .mentor",becomes:"vc_mentor",pretty:"Mentor messages",tooltip:"Mentorchat and mentor pms",required:!1,admin:!1},{matches:".filter_pm, .pm",becomes:"vc_adminpm",pretty:"Admin PMs",tooltip:"Messages to/from admins ('adminhelps')",required:!1,admin:!1},{matches:".filter_ASAY, .admin_channel",becomes:"vc_adminchat",pretty:"Admin Chat",tooltip:"ASAY messages",required:!1,admin:!0},{matches:".filter_MSAY, .mod_channel",becomes:"vc_modchat",pretty:"Mod Chat",tooltip:"MSAY messages",required:!1,admin:!0},{matches:".filter_ESAY, .event_channel",becomes:"vc_eventchat",pretty:"Event Chat",tooltip:"ESAY messages",required:!1,admin:!0},{matches:".filter_combat, .danger",becomes:"vc_combat",pretty:"Combat Logs",tooltip:"Urist McTraitor has stabbed you with a knife!",required:!1,admin:!1},{matches:".filter_adminlogs, .log_message",becomes:"vc_adminlogs",pretty:"Admin Logs",tooltip:"ADMIN LOG: Urist McAdmin has jumped to coordinates X, Y, Z",required:!1,admin:!0},{matches:".filter_attacklogs",becomes:"vc_attacklogs",pretty:"Attack Logs",tooltip:"Urist McTraitor has shot John Doe",required:!1,admin:!0},{matches:".filter_debuglogs",becomes:"vc_debuglogs",pretty:"Debug Logs",tooltip:"DEBUG: SSPlanets subsystem Recover().",required:!1,admin:!0},{matches:".looc",becomes:"vc_looc",pretty:"Local OOC",tooltip:"Local OOC messages, always enabled",required:!0},{matches:".rlooc",becomes:"vc_rlooc",pretty:"Remote LOOC",tooltip:"Remote LOOC messages",required:!1,admin:!0},{matches:".boldannounce, .filter_system",becomes:"vc_system",pretty:"System Messages",tooltip:"Messages from your client, always enabled",required:!0},{matches:".unsorted",becomes:"vc_unsorted",pretty:"Unsorted",tooltip:"Messages that don't have any filters.",required:!1,admin:!1}]},mounted:function(){this.load_settings();var e=new XMLHttpRequest;e.open("GET","ss13styles.css"),e.onreadystatechange=(function(){this.ext_styles=e.responseText}).bind(this),e.send()},updated:function(){this.editing||this.paused||window.scrollTo(0,document.getElementById("messagebox").scrollHeight)},watch:{reconnecting:function(e,t){!0==e&&!1==t?this.internal_message("Your client has lost connection to the server, or there is severe lag. Your client will reconnect if possible."):!1==e&&!0==t&&this.internal_message("Your client has reconnected to the server.")},inverted:function(e){set_storage("darkmode",e),e?(document.body.classList.add("inverted"),switch_ui_mode(DARKMODE_COLORS)):(document.body.classList.remove("inverted"),switch_ui_mode(LIGHTMODE_COLORS))},crushing:function(e){set_storage("crushing",e)},animated:function(e){set_storage("animated",e)},fontsize:function(e,t){if(isNaN(e)){this.fontsize=t;return}e<.2?this.fontsize=.2:e>5&&(this.fontsize=5),set_storage("fontsize",e)},lineheight:function(e,t){if(!isFinite(e)){this.lineheight=t;return}e<100?this.lineheight=100:e>200&&(this.lineheight=200),set_storage("lineheight",e)},showingnum:function(e,t){if(!isFinite(e)){this.showingnum=t;return}(e=Math.floor(e))<50?this.showingnum=50:e>2e3&&(this.showingnum=2e3),set_storage("showingnum",this.showingnum),push_Topic_showingnum(this.showingnum),this.attempt_archive()},current_categories:function(e,t){e.length&&this.apply_filter(e)}},computed:{active_tab:function(){return this.tabs.find(function(e){return e.active})},ping_classes:function(){return this.latency?"?"==this.latency?"grey":this.latency<0?"red":this.latency<=200?"green":this.latency<=400?"yellow":"grey":this.reconnecting?"red":"green"},current_categories:function(){return this.active_tab==this.tabs[0]?[]:this.active_tab.categories.concat(vchat_opts.alwaysShow)}},methods:{load_settings:function(){this.inverted=get_storage("darkmode",!1),this.crushing=get_storage("crushing",3),this.animated=get_storage("animated",!1),this.fontsize=get_storage("fontsize",.9),this.lineheight=get_storage("lineheight",130),this.showingnum=get_storage("showingnum",200),isNaN(this.crushing)&&(this.crushing=3),isNaN(this.fontsize)&&(this.fontsize=.9),this.load_tabs()},load_tabs:function(){var e=get_storage("tabs");if(e){var t=JSON.parse(e);if(!t.version||!t.tabs){this.internal_message("There was a problem loading your tabs. Any new ones you make will be saved, however.");return}if(!t.version==vchat_opts.vchatTabsVer){this.internal_message("Your saved tabs are for an older version of VChat and must be recreated, sorry.");return}this.tabs.push.apply(this.tabs,t.tabs)}},save_tabs:function(){var e={version:vchat_opts.vchatTabsVer,tabs:[]};this.tabs.forEach(function(t){if(!t.immutable){var s=t.name,a=[];t.categories.forEach(function(e){a.push(e)}),e.tabs.push({name:s,categories:a,immutable:!1,active:!1})}}),set_storage("tabs",JSON.stringify(e))},switchtab:function(e){e!=this.active_tab&&(this.active_tab.active=!1,e.active=!0,e.categories.forEach(function(e){this.unread_messages[e]=0},this),this.apply_filter(this.current_categories))},editmode:function(){this.editing=!this.editing,this.save_tabs()},pause:function(){this.paused=!this.paused},newtab:function(){this.tabs.push({name:"New Tab",categories:[],immutable:!1,active:!1}),this.switchtab(this.tabs[this.tabs.length-1])},renametab:function(){if(!this.active_tab.immutable){var e=this.active_tab,t=window.prompt("Type the desired tab name:",e.name);null!==t&&""!==t&&null!==e&&(e.name=t)}},deltab:function(e){e||(e=this.active_tab),!e.immutable&&(this.switchtab(this.tabs[0]),this.tabs.splice(this.tabs.indexOf(e),1))},movetab:function(e,t){if(e&&!e.immutable){var s=this.tabs.indexOf(e);this.tabs.splice(s+t,0,this.tabs.splice(s,1)[0])}},tab_unread_count:function(e){var t=0,s=this.unread_messages;return e.categories.find(function(e){s[e]&&(t+=s[e])}),t},tab_unread_categories:function(e){var t=!1,s=this.unread_messages;return e.categories.find(function(e){if(s[e])return t=!0,!0}),{red:t,grey:!t}},attempt_archive:function(){if(this.messages.length>this.showingnum){var e=this.messages.splice(0,20);Array.prototype.push.apply(this.archived_messages,e)}},apply_filter:function(e){this.shown_messages.splice(0),this.unshown_messages=0,this.messages.forEach(function(t){e.indexOf(t.category)>-1&&this.shown_messages.push(t)},this),this.archived_messages.forEach(function(t){e.indexOf(t.category)>-1&&this.unshown_messages++},this)},add_message:function(e){let t={time:e.time,category:"error",content:e.message,repeats:1};if(t.category=this.get_category(t.content),"vc_unsorted"==t.category&&(t.content=""+t.content+""),this.crushing){let s=this.messages.slice(-this.crushing);for(let a=s.length-1;a>=0;a--){let n=s[a];n.content==t.content&&(t.repeats+=n.repeats,this.messages.splice(this.messages.indexOf(n),1))}}t.content=t.content.replace(/(\b(https?):\/\/[\-A-Z0-9+&@#\/%?=~_|!:,.;]*[\-A-Z0-9+&@#\/%=~_|])/img,'$1'),this.current_categories.length&&0>this.current_categories.indexOf(t.category)?(isNaN(this.unread_messages[t.category])&&(this.unread_messages[t.category]=0),this.unread_messages[t.category]+=1):this.current_categories.length&&this.shown_messages.push(t),t.id=++vchat_state.lastId,this.attempt_archive(),this.messages.push(t)},internal_message:function(e){let t={time:this.messages.length?this.messages.slice(-1).time+1:0,category:"vc_system",content:"[VChat Internal] "+e+""};t.id=++vchat_state.lastId,this.messages.push(t)},on_mouseup:function(e){let t=e.target;"getSelection"in window&&!1===window.getSelection().isCollapsed||t&&("INPUT"===t.tagName||"TEXTAREA"===t.tagName)||(focusMapWindow(),e.preventDefault(),e.target.click())},click_message:function(e){let t=e.target;if("A"===t.tagName){e.stopPropagation(),e.preventDefault?e.preventDefault():e.returnValue=!1;var s=t.getAttribute("href");"?"==s[0]||s.length>=8&&"byond://"==s.substring(0,8)?window.location=s:window.location="byond://?action=openLink&link="+encodeURIComponent(s)}},get_category:function(e){if(!vchat_state.ready){push_Topic("not_ready");return}let t=domparser.parseFromString(e,"text/html").querySelector("span"),s="vc_unsorted";return t&&this.type_table.find(function(e){if(t.msMatchesSelector(e.matches))return s=e.becomes,!0}),s},save_chatlog:function(){var e="",t=this.archived_messages.concat(this.messages),s=this.current_categories;t.forEach(function(t){(0==s.length||s.indexOf(t.category)>=0)&&(e+=t.content,t.repeats>1&&(e+="(x"+t.repeats+")"),e+="
\n")}),e+="";var a=new Date,n=String(a.getHours());n.length<2&&(n="0"+n);var o=String(a.getMinutes());o.length<2&&(o="0"+o);var i=String(a.getDate());i.length<2&&(i="0"+i);var r=String(a.getMonth()+1);r.length<2&&(r="0"+r);var c="log"+(" "+String(a.getFullYear())+"-"+r+"-"+i+" ("+n+" "+o)+").html",l=document.createElement("a");if(void 0!==l.download)l.href="data:attachment/text,"+encodeURI(e),l.target="_blank",l.download=c,l.click();else{var h=new Blob([e],{type:"text/html;charset=utf8;"});saved=window.navigator.msSaveOrOpenBlob(h,c)}},do_latency_test:function(){send_latency_check()},blur_this:function(e){e.target.blur()}}})}function check_ping(){Date.now()-vchat_state.lastPingReceived>vchat_opts.msBeforeDropped&&(vueapp.reconnecting=!0)}function send_latency_check(){vchat_state.latency_sent||(vchat_state.latency_sent=Date.now(),vueapp.latency="?",push_Topic("ping"),setTimeout(function(){"?"==vchat_state.latency_ms&&(vchat_state.latency_ms=999)},1e3),setTimeout(function(){vchat_state.latency_sent=0,vueapp.latency=0},5e3))}function get_latency_check(){vchat_state.latency_sent&&(vueapp.latency=Date.now()-vchat_state.latency_sent)}function byondDecode(e){e=e.replace(/\+/g,"%20");try{e=decodeURIComponent(e)}catch(t){e=unescape(e)}return JSON.parse(e)}function putmessage(e){Array.isArray(e=byondDecode(e))?e.forEach(function(e){vueapp.add_message(e)}):"object"==typeof e&&vueapp.add_message(e)}function system_message(e){vueapp.internal_message(e)}function push_Topic(e){window.location="?_src_=chat&proc="+e}function push_Topic_showingnum(e){window.location="?_src_=chat&showingnum="+e}function focusMapWindow(){window.location="byond://winset?mapwindow.map.focus=true"}function send_debug(e){push_Topic("debug¶m[message]="+encodeURIComponent(e))}function get_event(e){if(!vchat_state.ready){push_Topic("not_ready");return}var t={evttype:"internal_error",event:e};switch((t=byondDecode(e)).evttype){case"internal_error":system_message("Event parse error: "+e);break;case"byond_player":send_client_data(),vueapp.is_admin="true"===t.admin,vchat_state.byond_ip=t.address,vchat_state.byond_cid=t.cid,vchat_state.byond_ckey=t.ckey,set_storage("ip",vchat_state.byond_ip),set_storage("cid",vchat_state.byond_cid),set_storage("ckey",vchat_state.byond_ckey);break;case"keepalive":vchat_state.lastPingReceived=Date.now(),vueapp.reconnecting=!1;break;case"pong":get_latency_check();break;case"availability":push_Topic("done_loading");break;default:system_message("Didn't know what to do with event: "+e)}}function send_client_data(){push_Topic("ident¶m[clientdata]="+JSON.stringify({ip:get_storage("ip"),cid:get_storage("cid"),ckey:get_storage("ckey")}))}function set_localstorage(e,t){window.localStorage.setItem(vchat_opts.cookiePrefix+e,t)}function get_localstorage(e,t){let s=window.localStorage.getItem(vchat_opts.cookiePrefix+e);return"null"===s||null===s?s=t:"true"===s?s=!0:"false"===s?s=!1:isNaN(s)||(s=+s),s}function set_cookie(e,t){let s=new Date;s.setFullYear(s.getFullYear()+1);let a=s.toUTCString();document.cookie=vchat_opts.cookiePrefix+e+"="+t+";expires="+a+";path=/"}function get_cookie(e,t){var s={cookie:null,localstorage:null,indexeddb:null};let a=document.cookie.split(";"),n={};a.forEach(function(e){let s=e.replace(vchat_opts.cookiePrefix,"").trim(),a=s.search("="),o=decodeURIComponent(s.substring(0,a)),i=decodeURIComponent(s.substring(a+1));"null"==i||null===i?i=t:"true"===i?i=!0:"false"===i?i=!1:isNaN(i)||(i=+i),n[o]=i}),s.cookie=n[e]}var SKIN_BUTTONS=["rpane.textb","rpane.infob","rpane.wikib","rpane.forumb","rpane.rulesb","rpane.github","rpane.discord","rpane.mapb","rpane.changelog","mainwindow.saybutton","mainwindow.mebutton","mainwindow.hotkey_toggle"],SKIN_ELEMENTS=["mainwindow","mainwindow.mainvsplit","mainwindow.tooltip","rpane","rpane.rpanewindow","rpane.mediapanel",];function switch_ui_mode(e){doWinset(SKIN_BUTTONS.reduce(function(t,s){return t[s+".background-color"]=e.buttonBgColor,t},{})),doWinset(SKIN_BUTTONS.reduce(function(t,s){return t[s+".text-color"]=e.buttonTextColor,t},{})),doWinset(SKIN_ELEMENTS.reduce(function(t,s){return t[s+".background-color"]=e.windowBgColor,t},{})),doWinset("infowindow",{"background-color":e.tabBackgroundColor,"text-color":e.tabTextColor}),doWinset("infowindow.info",{"background-color":e.tabBackgroundColor,"text-color":e.tabTextColor,"highlight-color":e.highlightColor,"tab-text-color":e.tabTextColor,"tab-background-color":e.tabBackgroundColor})}function doWinset(e,t){void 0===t&&(t=e,e=null);var s="byond://winset?";e&&(s+="id="+e+"&"),s+=Object.keys(t).map(function(e){return e+"="+encodeURIComponent(t[e])}).join("&"),window.location=s} +!function(){var e=console.log;console.log=function(t){send_debug(t),e.apply(console,arguments)};var t=console.error;console.error=function(e){send_debug(e),t.apply(console,arguments)},window.onerror=function(e,t,s,a,n){var o="";return n&&n.stack&&(o=n.stack),send_debug(e+" ("+t+"@"+s+":"+a+") "+n+"|UA: "+navigator.userAgent+"|Stack: "+o),!0}}();var vueapp,vchat_opts={msBeforeDropped:3e4,cookiePrefix:"vst-",alwaysShow:["vc_looc","vc_system"],vchatTabsVer:1},DARKMODE_COLORS={buttonBgColor:"#40628a",buttonTextColor:"#FFFFFF",windowBgColor:"#272727",highlightColor:"#009900",tabTextColor:"#FFFFFF",tabBackgroundColor:"#272727"},LIGHTMODE_COLORS={buttonBgColor:"none",buttonTextColor:"#000000",windowBgColor:"none",highlightColor:"#007700",tabTextColor:"#000000",tabBackgroundColor:"none"},set_storage=set_cookie,get_storage=get_cookie,domparser=new DOMParser;storageAvailable("localStorage")&&(set_storage=set_localstorage,get_storage=get_localstorage);var vchat_state={ready:!1,byond_ip:null,byond_cid:null,byond_ckey:null,lastPingReceived:0,latency_sent:0,lastId:0};function start_vchat(){start_vue(),vchat_state.ready=!0,push_Topic("done_loading"),push_Topic_showingnum(this.showingnum),doWinset("htmloutput",{"is-visible":!0}),doWinset("oldoutput",{"is-visible":!1}),doWinset("chatloadlabel",{"is-visible":!1}),setInterval(check_ping,vchat_opts.msBeforeDropped),send_debug("VChat Loaded!")}function start_vue(){vueapp=new Vue({el:"#app",data:{messages:[],shown_messages:[],unshown_messages:0,archived_messages:[],tabs:[{name:"Main",categories:[],immutable:!0,active:!0}],unread_messages:{},editing:!1,paused:!1,latency:0,reconnecting:!1,ext_styles:"",is_admin:!1,inverted:!1,crushing:3,animated:!1,fontsize:.9,lineheight:130,showingnum:200,type_table:[{matches:".filter_say, .say, .emote, .emotesubtle",becomes:"vc_localchat",pretty:"Local Chat",tooltip:"In-character local messages (say, emote, etc)",required:!1,admin:!1},{matches:".filter_radio, .alert, .syndradio, .centradio, .airadio, .entradio, .comradio, .secradio, .engradio, .medradio, .sciradio, .supradio, .srvradio, .expradio, .radio, .deptradio, .newscaster",becomes:"vc_radio",pretty:"Radio Comms",tooltip:"All departments of radio messages",required:!1,admin:!1},{matches:".filter_notice, .notice:not(.pm), .adminnotice, .info, .sinister, .cult",becomes:"vc_info",pretty:"Notices",tooltip:"Non-urgent messages from the game and items",required:!1,admin:!1},{matches:".filter_warning, .warning:not(.pm), .critical, .userdanger, .italics",becomes:"vc_warnings",pretty:"Warnings",tooltip:"Urgent messages from the game and items",required:!1,admin:!1},{matches:".filter_deadsay, .deadsay",becomes:"vc_deadchat",pretty:"Deadchat",tooltip:"All of deadchat",required:!1,admin:!1},{matches:".filter_pray",becomes:"vc_pray",pretty:"Pray",tooltip:"Prayer messages",required:!1,admin:!1},{matches:".ooc, .filter_ooc",becomes:"vc_globalooc",pretty:"Global OOC",tooltip:"The bluewall of global OOC messages",required:!1,admin:!1},{matches:".nif",becomes:"vc_nif",pretty:"NIF Messages",tooltip:"Messages from the NIF itself and people inside",required:!1,admin:!1},{matches:".psay, .pemote",becomes:"vc_pmessage",pretty:"Pred/Prey Messages",tooltip:"Messages from / to absorbed or dominated prey",required:!1,admin:!1},{matches:".mentor_channel, .mentor",becomes:"vc_mentor",pretty:"Mentor messages",tooltip:"Mentorchat and mentor pms",required:!1,admin:!1},{matches:".filter_pm, .pm",becomes:"vc_adminpm",pretty:"Admin PMs",tooltip:"Messages to/from admins ('adminhelps')",required:!1,admin:!1},{matches:".filter_ASAY, .admin_channel",becomes:"vc_adminchat",pretty:"Admin Chat",tooltip:"ASAY messages",required:!1,admin:!0},{matches:".filter_MSAY, .mod_channel",becomes:"vc_modchat",pretty:"Mod Chat",tooltip:"MSAY messages",required:!1,admin:!0},{matches:".filter_ESAY, .event_channel",becomes:"vc_eventchat",pretty:"Event Chat",tooltip:"ESAY messages",required:!1,admin:!0},{matches:".filter_combat, .danger",becomes:"vc_combat",pretty:"Combat Logs",tooltip:"Urist McTraitor has stabbed you with a knife!",required:!1,admin:!1},{matches:".filter_adminlogs, .log_message",becomes:"vc_adminlogs",pretty:"Admin Logs",tooltip:"ADMIN LOG: Urist McAdmin has jumped to coordinates X, Y, Z",required:!1,admin:!0},{matches:".filter_attacklogs",becomes:"vc_attacklogs",pretty:"Attack Logs",tooltip:"Urist McTraitor has shot John Doe",required:!1,admin:!0},{matches:".filter_debuglogs",becomes:"vc_debuglogs",pretty:"Debug Logs",tooltip:"DEBUG: SSPlanets subsystem Recover().",required:!1,admin:!0},{matches:".looc",becomes:"vc_looc",pretty:"Local OOC",tooltip:"Local OOC messages, always enabled",required:!0},{matches:".rlooc",becomes:"vc_rlooc",pretty:"Remote LOOC",tooltip:"Remote LOOC messages",required:!1,admin:!0},{matches:".boldannounce, .filter_system",becomes:"vc_system",pretty:"System Messages",tooltip:"Messages from your client, always enabled",required:!0},{matches:".unsorted",becomes:"vc_unsorted",pretty:"Unsorted",tooltip:"Messages that don't have any filters.",required:!1,admin:!1}]},mounted:function(){this.load_settings();var e=new XMLHttpRequest;e.open("GET","ss13styles.css"),e.onreadystatechange=(function(){this.ext_styles=e.responseText}).bind(this),e.send()},updated:function(){this.editing||this.paused||window.scrollTo(0,document.getElementById("messagebox").scrollHeight)},watch:{reconnecting:function(e,t){!0==e&&!1==t?this.internal_message("Your client has lost connection to the server, or there is severe lag. Your client will reconnect if possible."):!1==e&&!0==t&&this.internal_message("Your client has reconnected to the server.")},inverted:function(e){set_storage("darkmode",e),e?(document.body.classList.add("inverted"),switch_ui_mode(DARKMODE_COLORS)):(document.body.classList.remove("inverted"),switch_ui_mode(LIGHTMODE_COLORS))},crushing:function(e){set_storage("crushing",e)},animated:function(e){set_storage("animated",e)},fontsize:function(e,t){if(isNaN(e)){this.fontsize=t;return}e<.2?this.fontsize=.2:e>5&&(this.fontsize=5),set_storage("fontsize",e)},lineheight:function(e,t){if(!isFinite(e)){this.lineheight=t;return}e<100?this.lineheight=100:e>200&&(this.lineheight=200),set_storage("lineheight",e)},showingnum:function(e,t){if(!isFinite(e)){this.showingnum=t;return}(e=Math.floor(e))<50?this.showingnum=50:e>2e3&&(this.showingnum=2e3),set_storage("showingnum",this.showingnum),push_Topic_showingnum(this.showingnum),this.attempt_archive()},current_categories:function(e,t){e.length&&this.apply_filter(e)}},computed:{active_tab:function(){return this.tabs.find(function(e){return e.active})},ping_classes:function(){return this.latency?"?"==this.latency?"grey":this.latency<0?"red":this.latency<=200?"green":this.latency<=400?"yellow":"grey":this.reconnecting?"red":"green"},current_categories:function(){return this.active_tab==this.tabs[0]?[]:this.active_tab.categories.concat(vchat_opts.alwaysShow)}},methods:{load_settings:function(){this.inverted=get_storage("darkmode",!1),this.crushing=get_storage("crushing",3),this.animated=get_storage("animated",!1),this.fontsize=get_storage("fontsize",.9),this.lineheight=get_storage("lineheight",130),this.showingnum=get_storage("showingnum",200),isNaN(this.crushing)&&(this.crushing=3),isNaN(this.fontsize)&&(this.fontsize=.9),this.load_tabs()},load_tabs:function(){var e=get_storage("tabs");if(e){var t=JSON.parse(e);if(!t.version||!t.tabs){this.internal_message("There was a problem loading your tabs. Any new ones you make will be saved, however.");return}if(!t.version==vchat_opts.vchatTabsVer){this.internal_message("Your saved tabs are for an older version of VChat and must be recreated, sorry.");return}this.tabs.push.apply(this.tabs,t.tabs)}},save_tabs:function(){var e={version:vchat_opts.vchatTabsVer,tabs:[]};this.tabs.forEach(function(t){if(!t.immutable){var s=t.name,a=[];t.categories.forEach(function(e){a.push(e)}),e.tabs.push({name:s,categories:a,immutable:!1,active:!1})}}),set_storage("tabs",JSON.stringify(e))},switchtab:function(e){e!=this.active_tab&&(this.active_tab.active=!1,e.active=!0,e.categories.forEach(function(e){this.unread_messages[e]=0},this),this.apply_filter(this.current_categories))},editmode:function(){this.editing=!this.editing,this.save_tabs()},pause:function(){this.paused=!this.paused},newtab:function(){this.tabs.push({name:"New Tab",categories:[],immutable:!1,active:!1}),this.switchtab(this.tabs[this.tabs.length-1])},renametab:function(){if(!this.active_tab.immutable){var e=this.active_tab,t=window.prompt("Type the desired tab name:",e.name);null!==t&&""!==t&&null!==e&&(e.name=t)}},deltab:function(e){e||(e=this.active_tab),!e.immutable&&(this.switchtab(this.tabs[0]),this.tabs.splice(this.tabs.indexOf(e),1))},movetab:function(e,t){if(e&&!e.immutable){var s=this.tabs.indexOf(e);this.tabs.splice(s+t,0,this.tabs.splice(s,1)[0])}},tab_unread_count:function(e){var t=0,s=this.unread_messages;return e.categories.find(function(e){s[e]&&(t+=s[e])}),t},tab_unread_categories:function(e){var t=!1,s=this.unread_messages;return e.categories.find(function(e){if(s[e])return t=!0,!0}),{red:t,grey:!t}},attempt_archive:function(){if(this.messages.length>this.showingnum){var e=this.messages.splice(0,20);Array.prototype.push.apply(this.archived_messages,e)}},apply_filter:function(e){this.shown_messages.splice(0),this.unshown_messages=0,this.messages.forEach(function(t){e.indexOf(t.category)>-1&&this.shown_messages.push(t)},this),this.archived_messages.forEach(function(t){e.indexOf(t.category)>-1&&this.unshown_messages++},this)},add_message:function(e){let t={time:e.time,category:"error",content:e.message,repeats:1};if(t.category=this.get_category(t.content),"vc_unsorted"==t.category&&(t.content=""+t.content+""),this.crushing){let s=this.messages.slice(-this.crushing);for(let a=s.length-1;a>=0;a--){let n=s[a];n.content==t.content&&(t.repeats+=n.repeats,this.messages.splice(this.messages.indexOf(n),1))}}t.content=t.content.replace(/(\b(https?):\/\/[\-A-Z0-9+&@#\/%?=~_|!:,.;]*[\-A-Z0-9+&@#\/%=~_|])/img,'$1'),this.current_categories.length&&0>this.current_categories.indexOf(t.category)?(isNaN(this.unread_messages[t.category])&&(this.unread_messages[t.category]=0),this.unread_messages[t.category]+=1):this.current_categories.length&&this.shown_messages.push(t),t.id=++vchat_state.lastId,this.attempt_archive(),this.messages.push(t)},internal_message:function(e){let t={time:this.messages.length?this.messages.slice(-1).time+1:0,category:"vc_system",content:"[VChat Internal] "+e+""};t.id=++vchat_state.lastId,this.messages.push(t)},on_mouseup:function(e){let t=e.target;"getSelection"in window&&!1===window.getSelection().isCollapsed||t&&("INPUT"===t.tagName||"TEXTAREA"===t.tagName)||(focusMapWindow(),e.preventDefault(),e.target.click())},click_message:function(e){let t=e.target;if("A"===t.tagName){e.stopPropagation(),e.preventDefault?e.preventDefault():e.returnValue=!1;var s=t.getAttribute("href");"?"==s[0]||s.length>=8&&"byond://"==s.substring(0,8)?window.location=s:window.location="byond://?action=openLink&link="+encodeURIComponent(s)}},get_category:function(e){if(!vchat_state.ready){push_Topic("not_ready");return}let t=domparser.parseFromString(e,"text/html").querySelector("span"),s="vc_unsorted";return t&&this.type_table.find(function(e){if(t.msMatchesSelector(e.matches))return s=e.becomes,!0}),s},save_chatlog:function(){var e="",t=this.archived_messages.concat(this.messages),s=this.current_categories;t.forEach(function(t){(0==s.length||s.indexOf(t.category)>=0)&&(e+=t.content,t.repeats>1&&(e+="(x"+t.repeats+")"),e+="
\n")}),e+="";var a=new Date,n=String(a.getHours());n.length<2&&(n="0"+n);var o=String(a.getMinutes());o.length<2&&(o="0"+o);var i=String(a.getDate());i.length<2&&(i="0"+i);var r=String(a.getMonth()+1);r.length<2&&(r="0"+r);var c="log"+(" "+String(a.getFullYear())+"-"+r+"-"+i+" ("+n+" "+o)+").html",l=document.createElement("a");if(void 0!==l.download)l.href="data:attachment/text,"+encodeURI(e),l.target="_blank",l.download=c,l.click();else{var h=new Blob([e],{type:"text/html;charset=utf8;"});saved=window.navigator.msSaveOrOpenBlob(h,c)}},do_latency_test:function(){send_latency_check()},blur_this:function(e){e.target.blur()}}})}function check_ping(){Date.now()-vchat_state.lastPingReceived>vchat_opts.msBeforeDropped&&(vueapp.reconnecting=!0)}function send_latency_check(){vchat_state.latency_sent||(vchat_state.latency_sent=Date.now(),vueapp.latency="?",push_Topic("ping"),setTimeout(function(){"?"==vchat_state.latency_ms&&(vchat_state.latency_ms=999)},1e3),setTimeout(function(){vchat_state.latency_sent=0,vueapp.latency=0},5e3))}function get_latency_check(){vchat_state.latency_sent&&(vueapp.latency=Date.now()-vchat_state.latency_sent)}function byondDecode(e){e=e.replace(/\+/g,"%20");try{e=decodeURIComponent(e)}catch(t){e=unescape(e)}return JSON.parse(e)}function putmessage(e){Array.isArray(e=byondDecode(e))?e.forEach(function(e){vueapp.add_message(e)}):"object"==typeof e&&vueapp.add_message(e)}function system_message(e){vueapp.internal_message(e)}function push_Topic(e){window.location="?_src_=chat&proc="+e}function push_Topic_showingnum(e){window.location="?_src_=chat&showingnum="+e}function focusMapWindow(){window.location="byond://winset?mapwindow.map.focus=true"}function send_debug(e){push_Topic("debug¶m[message]="+encodeURIComponent(e))}function get_event(e){if(!vchat_state.ready){push_Topic("not_ready");return}var t={evttype:"internal_error",event:e};switch((t=byondDecode(e)).evttype){case"internal_error":system_message("Event parse error: "+e);break;case"byond_player":send_client_data(),vueapp.is_admin="true"===t.admin,vchat_state.byond_ip=t.address,vchat_state.byond_cid=t.cid,vchat_state.byond_ckey=t.ckey,set_storage("ip",vchat_state.byond_ip),set_storage("cid",vchat_state.byond_cid),set_storage("ckey",vchat_state.byond_ckey);break;case"keepalive":vchat_state.lastPingReceived=Date.now(),vueapp.reconnecting=!1;break;case"pong":get_latency_check();break;case"availability":push_Topic("done_loading");break;default:system_message("Didn't know what to do with event: "+e)}}function send_client_data(){push_Topic("ident¶m[clientdata]="+JSON.stringify({ip:get_storage("ip"),cid:get_storage("cid"),ckey:get_storage("ckey")}))}function set_localstorage(e,t){window.localStorage.setItem(vchat_opts.cookiePrefix+e,t)}function get_localstorage(e,t){let s=window.localStorage.getItem(vchat_opts.cookiePrefix+e);return"null"===s||null===s?s=t:"true"===s?s=!0:"false"===s?s=!1:isNaN(s)||(s=+s),s}function set_cookie(e,t){let s=new Date;s.setFullYear(s.getFullYear()+1);let a=s.toUTCString();document.cookie=vchat_opts.cookiePrefix+e+"="+t+";expires="+a+";path=/"}function get_cookie(e,t){var s={cookie:null,localstorage:null,indexeddb:null};let a=document.cookie.split(";"),n={};a.forEach(function(e){let s=e.replace(vchat_opts.cookiePrefix,"").trim(),a=s.search("="),o=decodeURIComponent(s.substring(0,a)),i=decodeURIComponent(s.substring(a+1));"null"==i||null===i?i=t:"true"===i?i=!0:"false"===i?i=!1:isNaN(i)||(i=+i),n[o]=i}),s.cookie=n[e]}var SKIN_BUTTONS=["rpane.textb","rpane.infob","rpane.wikib","rpane.forumb","rpane.rulesb","rpane.github","rpane.discord","rpane.mapb","rpane.changelog","mainwindow.saybutton","mainwindow.mebutton","mainwindow.hotkey_toggle"],SKIN_ELEMENTS=["mainwindow","mainwindow.mainvsplit","mainwindow.tooltip","rpane","rpane.rpanewindow","rpane.mediapanel",];function switch_ui_mode(e){doWinset(SKIN_BUTTONS.reduce(function(t,s){return t[s+".background-color"]=e.buttonBgColor,t},{})),doWinset(SKIN_BUTTONS.reduce(function(t,s){return t[s+".text-color"]=e.buttonTextColor,t},{})),doWinset(SKIN_ELEMENTS.reduce(function(t,s){return t[s+".background-color"]=e.windowBgColor,t},{})),doWinset("infowindow",{"background-color":e.tabBackgroundColor,"text-color":e.tabTextColor}),doWinset("infowindow.info",{"background-color":e.tabBackgroundColor,"text-color":e.tabTextColor,"highlight-color":e.highlightColor,"tab-text-color":e.tabTextColor,"tab-background-color":e.tabBackgroundColor})}function doWinset(e,t){void 0===t&&(t=e,e=null);var s="byond://winset?";e&&(s+="id="+e+"&"),s+=Object.keys(t).map(function(e){return e+"="+encodeURIComponent(t[e])}).join("&"),window.location=s} diff --git a/code/modules/vehicles/cargo_train.dm b/code/modules/vehicles/cargo_train.dm index 34c8d2bec4..850eed66b1 100644 --- a/code/modules/vehicles/cargo_train.dm +++ b/code/modules/vehicles/cargo_train.dm @@ -68,7 +68,7 @@ return ..() /obj/vehicle/train/trolley/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(open && W.is_wirecutter()) + if(open && W.has_tool_quality(TOOL_WIRECUTTER)) passenger_allowed = !passenger_allowed user.visible_message("[user] [passenger_allowed ? "cuts" : "mends"] a cable in [src].","You [passenger_allowed ? "cut" : "mend"] the load limiter cable.") else diff --git a/code/modules/vehicles/construction.dm b/code/modules/vehicles/construction.dm index 20adccd5f0..3c81ccc6ae 100644 --- a/code/modules/vehicles/construction.dm +++ b/code/modules/vehicles/construction.dm @@ -129,7 +129,7 @@ return if(7) - if(W.is_wrench() || W.is_screwdriver()) + if(W.has_tool_quality(TOOL_WRENCH) || W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) to_chat(user, "You begin your finishing touches on \the [src].") if(do_after(user, 20) && build_stage == 7) @@ -179,7 +179,7 @@ return if(2) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) to_chat(user, "You close up \the [src].") var/obj/vehicle/train/trolley/trailer/product = new(src) @@ -260,7 +260,7 @@ return if(6) - if(W.is_wrench() || W.is_screwdriver()) + if(W.has_tool_quality(TOOL_WRENCH) || W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) to_chat(user, "You begin your finishing touches on \the [src].") if(do_after(user, 20) && build_stage == 6) @@ -360,7 +360,7 @@ return if(7) - if(W.is_wrench() || W.is_screwdriver()) + if(W.has_tool_quality(TOOL_WRENCH) || W.has_tool_quality(TOOL_SCREWDRIVER)) playsound(src, W.usesound, 50, 1) to_chat(user, "You begin your finishing touches on \the [src].") if(do_after(user, 20) && build_stage == 7) diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm index cd42104667..6fbb98c549 100644 --- a/code/modules/vehicles/vehicle.dm +++ b/code/modules/vehicles/vehicle.dm @@ -99,19 +99,19 @@ if(istype(W, /obj/item/weapon/hand_labeler)) return if(mechanical) - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) if(!locked) open = !open update_icon() to_chat(user, "Maintenance panel is now [open ? "opened" : "closed"].") playsound(src, W.usesound, 50, 1) - else if(W.is_crowbar() && cell && open) + else if(W.has_tool_quality(TOOL_CROWBAR) && cell && open) remove_cell(user) else if(istype(W, /obj/item/weapon/cell) && !cell && open) insert_cell(W, user) - else if(istype(W, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/T = W + else if(W.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/T = W.get_welder() if(T.welding) if(health < maxhealth) if(open) diff --git a/code/modules/virus2/centrifuge.dm b/code/modules/virus2/centrifuge.dm index ee2385d90d..4cfb570a8d 100644 --- a/code/modules/virus2/centrifuge.dm +++ b/code/modules/virus2/centrifuge.dm @@ -10,7 +10,7 @@ var/datum/disease2/disease/virus2 = null /obj/machinery/computer/centrifuge/attackby(var/obj/item/O as obj, var/mob/user as mob) - if(O.is_screwdriver()) + if(O.has_tool_quality(TOOL_SCREWDRIVER)) return ..(O,user) if(default_unfasten_wrench(user, O, 20)) diff --git a/code/modules/virus2/diseasesplicer.dm b/code/modules/virus2/diseasesplicer.dm index fb682f51d1..263404ea1f 100644 --- a/code/modules/virus2/diseasesplicer.dm +++ b/code/modules/virus2/diseasesplicer.dm @@ -12,7 +12,7 @@ var/scanning = 0 /obj/machinery/computer/diseasesplicer/attackby(var/obj/item/I as obj, var/mob/user as mob) - if(I.is_screwdriver()) + if(I.has_tool_quality(TOOL_SCREWDRIVER)) return ..(I,user) if(default_unfasten_wrench(user, I, 20)) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index a8aa1fb10a..cff407872c 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -57,10 +57,9 @@ var/selective_preference = DM_DIGEST // Which type of selective bellymode do we default to? var/eating_privacy_local = "default" //Overrides eating_privacy_global if not "default". Determines if attempt/success messages are subtle/loud var/silicon_belly_overlay_preference = "Sleeper" //Selects between placing belly overlay in sleeper or normal vore mode. Exclusive - var/visible_belly_minimum_prey = 1 //What LAZYLEN(vore_selected.contents) we require to show the belly. Customizable - var/overlay_min_prey_size = 0 //Minimum prey size for belly overlay to show. 0 to disable - var/override_min_prey_size = FALSE //If true, exceeding override prey number will override minimum size requirements - var/override_min_prey_num = 1 //We check belly contents against this to override min size + var/belly_mob_mult = 1 //Multiplier for how filling mob types are in borg bellies + var/belly_item_mult = 1 //Multiplier for how filling items are in borg borg bellies. Items are also weighted on item size + var/belly_overall_mult = 1 //Multiplier applied ontop of any other specific multipliers // Generally just used by AI var/autotransferchance = 0 // % Chance of prey being autotransferred to transfer location @@ -238,10 +237,9 @@ "save_digest_mode", "eating_privacy_local", "silicon_belly_overlay_preference", - "visible_belly_minimum_prey", - "overlay_min_prey_size", - "override_min_prey_size", - "override_min_prey_num", + "belly_mob_mult", + "belly_item_mult", + "belly_overall_mult", ) if (save_digest_mode == 1) @@ -252,10 +250,11 @@ /obj/belly/Initialize() . = ..() //If not, we're probably just in a prefs list or something. - if(isliving(loc)) + if(ismob(loc)) owner = loc owner.vore_organs |= src - START_PROCESSING(SSbellies, src) + if(isliving(loc)) + START_PROCESSING(SSbellies, src) /obj/belly/Destroy() STOP_PROCESSING(SSbellies, src) @@ -1264,10 +1263,9 @@ dupe.save_digest_mode = save_digest_mode dupe.eating_privacy_local = eating_privacy_local dupe.silicon_belly_overlay_preference = silicon_belly_overlay_preference - dupe.visible_belly_minimum_prey = visible_belly_minimum_prey - dupe.overlay_min_prey_size = overlay_min_prey_size - dupe.override_min_prey_size = override_min_prey_size - dupe.override_min_prey_num = override_min_prey_num + dupe.belly_mob_mult = belly_mob_mult + dupe.belly_item_mult = belly_item_mult + dupe.belly_overall_mult = belly_overall_mult //// Object-holding variables //struggle_messages_outside - strings diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 22dc52c800..e2a16c9463 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -1,17 +1,6 @@ ///////////////////// Mob Living ///////////////////// /mob/living - var/digestable = TRUE // Can the mob be digested inside a belly? - var/devourable = TRUE // Can the mob be devoured at all? - var/feeding = TRUE // Can the mob be vorishly force fed or fed to others? - var/absorbable = TRUE // Are you allowed to absorb this person? - var/resizable = TRUE // Can other people resize you? (Usually ignored for self-resizes) - var/digest_leave_remains = FALSE // Will this mob leave bones/skull/etc after the melty demise? - var/allowmobvore = TRUE // Will simplemobs attempt to eat the mob? - var/allow_inbelly_spawning = FALSE // Will we even bother with attempts of someone to spawn in in one of our bellies? var/showvoreprefs = TRUE // Determines if the mechanical vore preferences button will be displayed on the mob or not. - var/obj/belly/vore_selected // Default to no vore capability. - var/list/vore_organs = list() // List of vore containers inside a mob - var/absorbed = FALSE // If a mob is absorbed into another var/list/temp_language_sources = list() //VOREStation Addition - Absorbs add languages to the pred var/list/temp_languages = list() //VOREStation Addition - Absorbs add languages to the pred var/prey_controlled = FALSE //VOREStation Addition @@ -23,35 +12,20 @@ var/revive_ready = REVIVING_READY // Only used for creatures that have the xenochimera regen ability, so far. var/revive_finished = 0 // Only used for xenochimera regen, allows us to find out when the regen will finish. var/metabolism = 0.0015 - var/vore_taste = null // What the character tastes like - var/vore_smell = null // What the character smells like var/no_vore = FALSE // If the character/mob can vore. var/restrict_vore_ventcrawl = FALSE // Self explanatory - var/noisy = FALSE // Toggle audible hunger. var/absorbing_prey = 0 // Determines if the person is using the succubus drain or not. See station_special_abilities_vr. var/drain_finalized = 0 // Determines if the succubus drain will be KO'd/absorbed. Can be toggled on at any time. var/fuzzy = 0 // Preference toggle for sharp/fuzzy icon. var/voice_freq = 0 // Preference for character voice frequency var/list/voice_sounds_list = list() // The sound list containing our voice sounds! - var/permit_healbelly = TRUE - var/stumble_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway - var/slip_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway - var/drop_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway - var/throw_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway - var/food_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway - var/can_be_drop_prey = FALSE - var/can_be_drop_pred = FALSE - var/allow_spontaneous_tf = FALSE // Obviously. var/next_preyloop // For Fancy sound internal loop var/stuffing_feeder = FALSE // Can feed foods to others whole, like trash eater can eat them on their own. var/adminbus_trash = FALSE // For abusing trash eater for event shenanigans. var/adminbus_eat_minerals = FALSE // This creature subsists on a diet of pure adminium. var/vis_height = 32 // Sprite height used for resize features. - var/show_vore_fx = TRUE // Show belly fullscreens - var/selective_preference = DM_DEFAULT // Preference for selective bellymode var/appendage_color = "#e03997" //Default pink. Used for the 'long_vore' trait. var/appendage_alt_setting = FALSE // Dictates if 'long_vore' user pulls prey to them or not. 1 = user thrown towards target. - var/eating_privacy_global = FALSE //Makes eating attempt/success messages only reach for subtle range if true, overwritten by belly-specific var var/regen_sounds = list( 'sound/effects/mob_effects/xenochimera/regen_1.ogg', 'sound/effects/mob_effects/xenochimera/regen_2.ogg', @@ -60,31 +34,6 @@ 'sound/effects/mob_effects/xenochimera/regen_5.ogg' ) - var/nutrition_message_visible = TRUE - var/list/nutrition_messages = list( - "They are starving! You can hear their stomach snarling from across the room!", - "They are extremely hungry. A deep growl occasionally rumbles from their empty stomach.", - "", - "They have a stuffed belly, bloated fat and round from eating too much.", - "They have a rotund, thick gut. It bulges from their body obscenely, close to sagging under its own weight.", - "They are sporting a large, round, sagging stomach. It contains at least their body weight worth of glorping slush.", - "They are engorged with a huge stomach that sags and wobbles as they move. They must have consumed at least twice their body weight. It looks incredibly soft.", - "Their stomach is firmly packed with digesting slop. They must have eaten at least a few times worth their body weight! It looks hard for them to stand, and their gut jiggles when they move.", - "They are so absolutely stuffed that you aren't sure how it's possible for them to move. They can't seem to swell any bigger. The surface of their belly looks sorely strained!", - "They are utterly filled to the point where it's hard to even imagine them moving, much less comprehend it when they do. Their gut is swollen to monumental sizes and amount of food they consumed must be insane.") - var/weight_message_visible = TRUE - var/list/weight_messages = list( - "They are terribly lithe and frail!", - "They have a very slender frame.", - "They have a lightweight, athletic build.", - "They have a healthy, average body.", - "They have a thick, curvy physique.", - "They have a plush, chubby figure.", - "They have an especially plump body with a round potbelly and large hips.", - "They have a very fat frame with a bulging potbelly, squishy rolls of pudge, very wide hips, and plump set of jiggling thighs.", - "They are incredibly obese. Their massive potbelly sags over their waistline while their fat ass would probably require two chairs to sit down comfortably!", - "They are so morbidly obese, you wonder how they can even stand, let alone waddle around the station. They can't get any fatter without being immobilized.") - // // Hook for generic creation of stuff on new creatures // @@ -97,7 +46,7 @@ //return TRUE to hook-caller return TRUE -/mob/living/proc/init_vore() +/mob/proc/init_vore() //Something else made organs, meanwhile. if(LAZYLEN(vore_organs)) return TRUE @@ -112,7 +61,7 @@ return TRUE //Or, we can create a basic one for them - if(!LAZYLEN(vore_organs)) + if(!LAZYLEN(vore_organs) && isliving(src)) LAZYINITLIST(vore_organs) var/obj/belly/B = new /obj/belly(src) vore_selected = B @@ -236,7 +185,7 @@ // // Verb for saving vore preferences to save file // -/mob/living/proc/save_vore_prefs() +/mob/proc/save_vore_prefs() if(!client || !client.prefs_vr) return FALSE if(!copy_to_prefs_vr()) @@ -246,7 +195,7 @@ return TRUE -/mob/living/proc/apply_vore_prefs() +/mob/proc/apply_vore_prefs() if(!client || !client.prefs_vr) return FALSE if(!client.prefs_vr.load_vore()) @@ -256,7 +205,7 @@ return TRUE -/mob/living/proc/copy_to_prefs_vr() +/mob/proc/copy_to_prefs_vr() if(!client || !client.prefs_vr) to_chat(src,"You attempted to save your vore prefs but somehow you're in this character without a client.prefs_vr variable. Tell a dev.") return FALSE @@ -305,7 +254,7 @@ // // Proc for applying vore preferences, given bellies // -/mob/living/proc/copy_from_prefs_vr(var/bellies = TRUE) +/mob/proc/copy_from_prefs_vr(var/bellies = TRUE) if(!client || !client.prefs_vr) to_chat(src,"You attempted to apply your vore prefs but somehow you're in this character without a client.prefs_vr variable. Tell a dev.") return FALSE @@ -344,7 +293,9 @@ weight_messages = P.weight_messages if(bellies) - release_vore_contents(silent = TRUE) + if(isliving(src)) + var/mob/living/L = src + L.release_vore_contents(silent = TRUE) vore_organs.Cut() for(var/entry in P.belly_prefs) list_to_object(entry,src) @@ -1219,7 +1170,7 @@ var/mob/living/owner = parent if(owner.client) create_mob_button(parent) - owner.verbs |= /mob/living/proc/insidePanel + owner.verbs |= /mob/proc/insidePanel owner.vorePanel = new(owner) /datum/component/vore_panel/UnregisterFromParent() @@ -1230,7 +1181,7 @@ owner?.client?.screen -= screen_icon UnregisterSignal(screen_icon, COMSIG_CLICK) qdel_null(screen_icon) - owner.verbs -= /mob/living/proc/insidePanel + owner.verbs -= /mob/proc/insidePanel qdel_null(owner.vorePanel) /datum/component/vore_panel/proc/create_mob_button(mob/user) diff --git a/code/modules/vore/eating/mob_vr.dm b/code/modules/vore/eating/mob_vr.dm new file mode 100644 index 0000000000..8796bf4a27 --- /dev/null +++ b/code/modules/vore/eating/mob_vr.dm @@ -0,0 +1,51 @@ +/mob + var/digestable = TRUE // Can the mob be digested inside a belly? + var/devourable = TRUE // Can the mob be devoured at all? + var/feeding = TRUE // Can the mob be vorishly force fed or fed to others? + var/absorbable = TRUE // Are you allowed to absorb this person? + var/resizable = TRUE // Can other people resize you? (Usually ignored for self-resizes) + var/digest_leave_remains = FALSE // Will this mob leave bones/skull/etc after the melty demise? + var/allowmobvore = TRUE // Will simplemobs attempt to eat the mob? + var/allow_inbelly_spawning = FALSE // Will we even bother with attempts of someone to spawn in in one of our bellies? + var/obj/belly/vore_selected // Default to no vore capability. + var/list/vore_organs = list() // List of vore containers inside a mob + var/absorbed = FALSE // If a mob is absorbed into another + var/vore_taste = null // What the character tastes like + var/vore_smell = null // What the character smells like + var/noisy = FALSE // Toggle audible hunger. + var/permit_healbelly = TRUE + var/stumble_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway + var/slip_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway + var/drop_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway + var/throw_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway + var/food_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway + var/can_be_drop_prey = FALSE + var/can_be_drop_pred = FALSE + var/allow_spontaneous_tf = FALSE // Obviously. + var/show_vore_fx = TRUE // Show belly fullscreens + var/selective_preference = DM_DEFAULT // Preference for selective bellymode + var/eating_privacy_global = FALSE //Makes eating attempt/success messages only reach for subtle range if true, overwritten by belly-specific var + var/nutrition_message_visible = TRUE + var/list/nutrition_messages = list( + "They are starving! You can hear their stomach snarling from across the room!", + "They are extremely hungry. A deep growl occasionally rumbles from their empty stomach.", + "", + "They have a stuffed belly, bloated fat and round from eating too much.", + "They have a rotund, thick gut. It bulges from their body obscenely, close to sagging under its own weight.", + "They are sporting a large, round, sagging stomach. It contains at least their body weight worth of glorping slush.", + "They are engorged with a huge stomach that sags and wobbles as they move. They must have consumed at least twice their body weight. It looks incredibly soft.", + "Their stomach is firmly packed with digesting slop. They must have eaten at least a few times worth their body weight! It looks hard for them to stand, and their gut jiggles when they move.", + "They are so absolutely stuffed that you aren't sure how it's possible for them to move. They can't seem to swell any bigger. The surface of their belly looks sorely strained!", + "They are utterly filled to the point where it's hard to even imagine them moving, much less comprehend it when they do. Their gut is swollen to monumental sizes and amount of food they consumed must be insane.") + var/weight_message_visible = TRUE + var/list/weight_messages = list( + "They are terribly lithe and frail!", + "They have a very slender frame.", + "They have a lightweight, athletic build.", + "They have a healthy, average body.", + "They have a thick, curvy physique.", + "They have a plush, chubby figure.", + "They have an especially plump body with a round potbelly and large hips.", + "They have a very fat frame with a bulging potbelly, squishy rolls of pudge, very wide hips, and plump set of jiggling thighs.", + "They are incredibly obese. Their massive potbelly sags over their waistline while their fat ass would probably require two chairs to sit down comfortably!", + "They are so morbidly obese, you wonder how they can even stand, let alone waddle around the station. They can't get any fatter without being immobilized.") diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index bb8cf1359c..15d05d269d 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -23,20 +23,27 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", "not_quite_tumby", "could_it_be_a_tumby") -/mob/living +/mob var/datum/vore_look/vorePanel -/mob/living/proc/insidePanel() +/mob/proc/insidePanel() set name = "Vore Panel" set category = "IC" + if(SSticker.current_state == GAME_STATE_INIT) + return + + if(!isliving(src)) + init_vore() + if(!vorePanel) - log_debug("[src] ([type], \ref[src]) didn't have a vorePanel and tried to use the verb.") + if(!isnewplayer(src)) + log_debug("[src] ([type], \ref[src]) didn't have a vorePanel and tried to use the verb.") vorePanel = new(src) vorePanel.tgui_interact(src) -/mob/living/proc/updateVRPanel() //Panel popup update call from belly events. +/mob/proc/updateVRPanel() //Panel popup update call from belly events. if(vorePanel) SStgui.update_uis(vorePanel) @@ -44,11 +51,11 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", // Callback Handler for the Inside form // /datum/vore_look - var/mob/living/host // Note, we do this in case we ever want to allow people to view others vore panels + var/mob/host // Note, we do this in case we ever want to allow people to view others vore panels var/unsaved_changes = FALSE var/show_pictures = TRUE -/datum/vore_look/New(mob/living/new_host) +/datum/vore_look/New(mob/new_host) if(istype(new_host)) host = new_host . = ..() @@ -221,10 +228,9 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", "colorization_enabled" = selected.colorization_enabled, "eating_privacy_local" = selected.eating_privacy_local, "silicon_belly_overlay_preference" = selected.silicon_belly_overlay_preference, - "visible_belly_minimum_prey" = selected.visible_belly_minimum_prey, - "overlay_min_prey_size" = selected.overlay_min_prey_size, - "override_min_prey_size" = selected.override_min_prey_size, - "override_min_prey_num" = selected.override_min_prey_num, + "belly_mob_mult" = selected.belly_mob_mult, + "belly_item_mult" = selected.belly_item_mult, + "belly_overall_mult" = selected.belly_overall_mult, ) @@ -393,7 +399,11 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", return set_attr(usr, params) if("saveprefs") - if(host.real_name != host.client.prefs.real_name || (!ishuman(host) && !issilicon(host))) + if(isnewplayer(host)) + var/choice = tgui_alert(usr, "Warning: Saving your vore panel while in the lobby will save it to the CURRENTLY LOADED character slot, and potentially overwrite it. Are you SURE you want to overwrite your current slot with these vore bellies?", "WARNING!", list("No, abort!", "Yes, save.")) + if(choice != "Yes, save.") + return TRUE + else if(host.real_name != host.client.prefs.real_name || (!ishuman(host) && !issilicon(host))) var/choice = tgui_alert(usr, "Warning: Saving your vore panel while playing what is very-likely not your normal character will overwrite whatever character you have loaded in character setup. Maybe this is your 'playing a simple mob' slot, though. Are you SURE you want to overwrite your current slot with these vore bellies?", "WARNING!", list("No, abort!", "Yes, save.")) if(choice != "Yes, save.") return TRUE @@ -716,6 +726,7 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", var/list/available_options = list("Examine", "Eject", "Move", "Transfer") if(ishuman(target)) available_options += "Transform" + available_options += "Health Check" if(isliving(target)) var/mob/living/datarget = target if(datarget.client) @@ -862,12 +873,36 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", b.absorb_living(ourtarget) if("Cancel") return + if("Health Check") + var/mob/living/carbon/human/H = target + var/target_health = round((H.health/H.getMaxHealth())*100) + var/condition + var/condition_consequences + to_chat(usr, "\The [target] is at [target_health]% health.") + if(H.blinded) + condition += "blinded" + condition_consequences += "hear emotes" + if(H.paralysis) + if(condition) + condition += " and " + condition_consequences += " or " + condition += "paralysed" + condition_consequences += "make emotes" + if(H.sleeping) + if(condition) + condition += " and " + condition_consequences += " or " + condition += "sleeping" + condition_consequences += "hear or do anything" + if(condition) + to_chat(usr, "\The [target] is currently [condition], they will not be able to [condition_consequences].") + return + /datum/vore_look/proc/set_attr(mob/user, params) if(!host.vore_selected) tgui_alert_async(usr, "No belly selected to modify.") return FALSE - var/attr = params["attribute"] switch(attr) if("b_name") @@ -1154,48 +1189,39 @@ var/global/list/belly_colorable_only_fullscreens = list("a_synth_flesh_mono", host.vore_selected.eating_privacy_local = privacy_choice . = TRUE if("b_silicon_belly") - var/belly_choice = tgui_alert(usr, "Choose whether you'd like your belly overlay to show from sleepers \ - or from normal vore bellies. NOTE: This ONLY applies to silicons, not human mobs!", "Belly Overlay Preference", - list("Sleeper", "Vorebelly")) + var/belly_choice = tgui_alert(usr, "Choose whether you'd like your belly overlay to show from sleepers, \ + normal vore bellies, or an average of the two. NOTE: This ONLY applies to silicons, not human mobs!", "Belly Overlay \ + Preference", + list("Sleeper", "Vorebelly", "Both")) if(belly_choice == null) return FALSE host.vore_selected.silicon_belly_overlay_preference = belly_choice host.update_icon() . = TRUE - if("b_min_belly_number_flat") - var/new_min_belly = tgui_input_number(user, "Choose the amount of prey your belly must contain \ - at absolute minimum (should be lower or equal to minimum prey override if prey override is ON)", - "Set minimum prey amount", host.vore_selected.visible_belly_minimum_prey, max_value = 100, min_value = 1) - if(new_min_belly == null) + if("b_belly_mob_mult") + var/new_prey_mult = tgui_input_number(user, "Choose the multiplier for mobs contributing to belly size, ranging from 0 to 5. Set to 0 to disable mobs contributing to belly size", + "Set Prey Multiplier", host.vore_selected.belly_mob_mult, max_value = 5, min_value = 0) + if(new_prey_mult == null) return FALSE - var/new_new_min_belly = CLAMP(new_min_belly, 1, 100) //Clamping at 100 rather than infinity. Should be close to infinity tho. - host.vore_selected.visible_belly_minimum_prey = new_new_min_belly + host.vore_selected.belly_mob_mult = CLAMP(new_prey_mult, 0, 5) //Max at 5 because in no world will a borg have more than 5 bellies host.update_icon() . = TRUE - if("b_min_belly_prey_size") - var/new_belly_size = tgui_input_number(user, "Choose the required size prey must be to trigger belly overlay, \ - ranging from 25% to 200%. Set to 0 to disable size checks", "Set Belly Examine Size.", max_value = 200, min_value = 0) - if(new_belly_size == null) + if("b_belly_item_mult") + var/new_item_mult = tgui_input_number(user, "Choose the multiplier for items contributing to belly size, \ + ranging from 0 to 10. (Item size affects how much they contribute as well) Set to 0 to disable size checks", "Set Item Multiplier", host.vore_selected.belly_item_mult, max_value = 10, min_value = 0) + if(new_item_mult == null) return FALSE - else if(new_belly_size == 0) - host.vore_selected.overlay_min_prey_size = 0 else - var/new_new_belly_size = CLAMP(new_belly_size, 25, 200) - host.vore_selected.overlay_min_prey_size = (new_new_belly_size/100) + host.vore_selected.belly_item_mult = CLAMP(new_item_mult, 0, 10) //Max at 10 because items contribute less than mobs, in general host.update_icon() . = TRUE - if("b_override_min_belly_prey_size") - host.vore_selected.override_min_prey_size = !host.vore_selected.override_min_prey_size - host.update_icon() - . = TRUE - if("b_min_belly_number_override") - var/new_min_prey = tgui_input_number(user, "Choose the amount of prey your belly must contain to override min prey size \ - to show belly overlay ignoring prey size requirement. Toggle Prey Override MUST be ON to work", - "Set minimum prey amount", host.vore_selected.override_min_prey_num, max_value = 100, min_value = 1) - if(new_min_prey == null) + if("b_belly_overall_mult") + var/new_overall_mult = tgui_input_number(user, "Choose the overall multiplier to be applied to belly contents after specific multipliers, ranging from 0 to 5. Set to 0 to disable showing belly sprites at all.", + "Set minimum prey amount", host.vore_selected.belly_overall_mult, max_value = 5, min_value = 0) + if(new_overall_mult == null) return FALSE - var/new_new_min_prey = CLAMP(new_min_prey, 1, 100) //Clamping at 100 rather than infinity. Should be close to infinity tho. - host.vore_selected.override_min_prey_num = new_new_min_prey + else + host.vore_selected.belly_overall_mult = CLAMP(new_overall_mult, 0, 5) // Max at 5 because... no reason to go higher at that point host.update_icon() . = TRUE if("b_fancy_sound") diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index c99f2eb3e9..de9be69996 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -197,9 +197,9 @@ item_state = "brittrenchcoat" //For general use -/obj/item/clothing/suit/storage/vest/hoscoat/nazi_greatcoat +/obj/item/clothing/suit/storage/vest/hoscoat/ancient_greatcoat name = "Greatcoat" - desc = "Perfect attire for kicking down the doors of suspected dissidents; this coat gives off an imposing look, while offering a luxuriously plush fur liner." + desc = "This coat gives off an imposing look, while offering a luxuriously plush fur liner." icon = 'icons/vore/custom_clothes_vr.dmi' icon_state = "greatcoat" @@ -2716,3 +2716,13 @@ Departamental Swimsuits, for general use name = "pink crop bomber" desc = "A pink crop bomber jacket that is just barely able to zip up at the front. It has a small Virgo Orbital Research Establishment patch on each shoulder." icon_state = "parriz_jacket" + +//verysoft: Casey Brown +/obj/item/clothing/glasses/big_round + name = "big round blue glasses" + desc = "A set of glasses! They are big, round, and very reflective, catching the light and obscuring the eyes!" + icon = 'icons/inventory/eyes/item_vr.dmi' + icon_override = 'icons/inventory/eyes/mob_vr.dmi' + icon_state = "bigroundglasses" + slot_flags = SLOT_EYES | SLOT_EARS + glasses_layer_above = TRUE diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index 7ca4cdae6c..d31348300d 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -1,9 +1,11 @@ // Adding needed defines to /mob/living // Note: Polaris had this on /mob/living/carbon/human We need it higher up for animals and stuff. -/mob/living - var/holder_default +/mob var/step_mechanics_pref = TRUE // Allow participation in macro-micro step mechanics var/pickup_pref = TRUE // Allow participation in macro-micro pickup mechanics + +/mob/living + var/holder_default var/pickup_active = TRUE // Toggle whether your help intent picks up micros or pets them // Define holder_type on types we want to be scoop-able diff --git a/code/modules/vore/resizing/sizegun_slow_vr.dm b/code/modules/vore/resizing/sizegun_slow_vr.dm index d6edc19361..648c0f91c7 100644 --- a/code/modules/vore/resizing/sizegun_slow_vr.dm +++ b/code/modules/vore/resizing/sizegun_slow_vr.dm @@ -218,4 +218,4 @@ /obj/item/device/slow_sizegun/proc/color_box(list/box_segments, new_color, new_time) for(var/i in box_segments) - animate(i, color = new_color, time = new_time) \ No newline at end of file + animate(i, color = new_color, time = new_time) diff --git a/code/modules/vore/weight/fitness_machines_vr.dm b/code/modules/vore/weight/fitness_machines_vr.dm index ca6267ba49..2f09e9a36f 100644 --- a/code/modules/vore/weight/fitness_machines_vr.dm +++ b/code/modules/vore/weight/fitness_machines_vr.dm @@ -55,7 +55,7 @@ "A honk emits from the punching bag as you hit it") /obj/machinery/fitness/heavy/attackby(obj/item/W, mob/living/user) - if(W.is_wrench()) + if(W.has_tool_quality(TOOL_WRENCH)) add_fingerprint(user) user.visible_message("[user] has [anchored ? "un" : ""]secured \the [src].", "You [anchored ? "un" : ""]secure \the [src].") anchored = !anchored diff --git a/code/modules/xenoarcheaology/finds/finds.dm b/code/modules/xenoarcheaology/finds/finds.dm index aa620393dd..de7b6382b0 100644 --- a/code/modules/xenoarcheaology/finds/finds.dm +++ b/code/modules/xenoarcheaology/finds/finds.dm @@ -41,8 +41,8 @@ qdel(src) return - if(istype(I, /obj/item/weapon/weldingtool)) - var/obj/item/weapon/weldingtool/W = I + if(I.has_tool_quality(TOOL_WELDER)) + var/obj/item/weapon/weldingtool/W = I.get_welder() if(W.isOn()) if(W.get_fuel() >= 2) var/obj/item/inside = locate() in src diff --git a/code/modules/xenoarcheaology/tools/suspension_generator.dm b/code/modules/xenoarcheaology/tools/suspension_generator.dm index bb7d714aa0..4449d85db5 100644 --- a/code/modules/xenoarcheaology/tools/suspension_generator.dm +++ b/code/modules/xenoarcheaology/tools/suspension_generator.dm @@ -91,7 +91,7 @@ /obj/machinery/suspension_gen/attackby(obj/item/W as obj, mob/user as mob) if(!locked && !suspension_field && default_deconstruction_screwdriver(user, W)) return - else if(W.is_wrench()) + else if(W.has_tool_quality(TOOL_WRENCH)) if(!suspension_field) if(anchored) anchored = 0 diff --git a/code/modules/xenobio2/machinery/core_extractor.dm b/code/modules/xenobio2/machinery/core_extractor.dm index e2882001e1..8f55143be2 100644 --- a/code/modules/xenobio2/machinery/core_extractor.dm +++ b/code/modules/xenobio2/machinery/core_extractor.dm @@ -26,11 +26,11 @@ /obj/machinery/slime/extractor/attackby(var/obj/item/W, var/mob/user) //Let's try to deconstruct first. - if(W.is_screwdriver() && !inuse) + if(W.has_tool_quality(TOOL_SCREWDRIVER) && !inuse) default_deconstruction_screwdriver(user, W) return - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) default_deconstruction_crowbar(user, W) return diff --git a/code/modules/xenobio2/machinery/injector.dm b/code/modules/xenobio2/machinery/injector.dm index 3e31b54cd8..6b18e89073 100644 --- a/code/modules/xenobio2/machinery/injector.dm +++ b/code/modules/xenobio2/machinery/injector.dm @@ -88,11 +88,11 @@ /obj/machinery/xenobio2/manualinjector/attackby(var/obj/item/W, var/mob/user) //Let's try to deconstruct first. - if(W.is_screwdriver()) + if(W.has_tool_quality(TOOL_SCREWDRIVER)) default_deconstruction_screwdriver(user, W) return - if(W.is_crowbar() && !occupant) + if(W.has_tool_quality(TOOL_CROWBAR) && !occupant) default_deconstruction_crowbar(user, W) return diff --git a/code/modules/xenobio2/machinery/slime_replicator.dm b/code/modules/xenobio2/machinery/slime_replicator.dm index 30c3e372a5..c7b7b3c567 100644 --- a/code/modules/xenobio2/machinery/slime_replicator.dm +++ b/code/modules/xenobio2/machinery/slime_replicator.dm @@ -24,11 +24,11 @@ /obj/machinery/slime/replicator/attackby(var/obj/item/W, var/mob/user) //Let's try to deconstruct first. - if(W.is_screwdriver() && !inuse) + if(W.has_tool_quality(TOOL_SCREWDRIVER) && !inuse) default_deconstruction_screwdriver(user, W) return - if(W.is_crowbar()) + if(W.has_tool_quality(TOOL_CROWBAR)) default_deconstruction_crowbar(user, W) return diff --git a/code/stylesheet.dm b/code/stylesheet.dm index 413792f93b..073d91bd39 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -96,7 +96,7 @@ h1.alert, h2.alert {color: #000000;} /* Languages */ -.alien {color: #543354;} +.alien {color: #543354;font-style: italic;} .tajaran {color: #803B56;} .tajaran_signlang {color: #941C1C;} .akhani {color: #AC398C;} @@ -104,7 +104,7 @@ h1.alert, h2.alert {color: #000000;} .skrellfar {color: #70FCFF;} .soghun {color: #50BA6C;} .solcom {color: #22228B;} -.changeling {color: #800080;} +.changeling {color: #800080;font-style: italic;} .sergal {color: #0077FF;} .birdsongc {color: #CC9900;} .vulpkanin {color: #B97A57;} @@ -119,10 +119,13 @@ h1.alert, h2.alert {color: #000000;} .promethean {color: #5A5A5A;} .rough {font-family: "Trebuchet MS", cursive, sans-serif;} .say_quote {font-family: Georgia, Verdana, sans-serif;} +.say_quote_italics {font-style: italic; font-family: Georgia, Verdana, sans-serif;} .terminus {font-family: "Times New Roman", Times, serif, sans-serif} .interface {color: #330033;} .spacer {color: #9c660b;} /* VOREStation Add */ .blob {color: #ff950d; font-weight: bold; font-style: italic;} +.teppi {color: #816540; word-spacing:4pt; font-family: "Segoe Script Bold","Segoe Script",sans-serif,Verdana;} +.shadekin {color: #be3cc5; font-size: 150%; font-weight: bold; font-family: "Gabriola", cursive, sans-serif;} .psionic {color: #993399;} /*YWedit*/ BIG IMG.icon {width: 32px; height: 32px;} diff --git a/html/archivedchangelog.html b/html/archivedchangelog.html index 9831f594c1..cbd6206420 100644 --- a/html/archivedchangelog.html +++ b/html/archivedchangelog.html @@ -241,7 +241,7 @@ Stick old posts here to prevent cluttering of main changelog.

August 22, 2012

Cael_Aislinn updated:

+
@@ -300,7 +300,7 @@ Stick old posts here to prevent cluttering of main changelog.
  • Fixed the bug where helmets would not turn off when placed into backpacks.
  • Added more "cancel" buttons to various dialogs.
  • - +

    CIB updated:

    • Fixed the bug where the preview image in the character creation panel was broken.
    • @@ -555,7 +555,7 @@ Stick old posts here to prevent cluttering of main changelog.
    • Added Flashkirby's RIG and cow sprites!
    • Removed and added some new AI Ion laws, credit: Ispil.
    - +

    Abi79 updated:

    • Everyone should now be able to see the properly formatted changelog.
    • @@ -851,7 +851,7 @@ Stick old posts here to prevent cluttering of main changelog.

      ?How they get on-board: The quartermaster can now set the receiver frequency of his supplycomp circuit board. A bit simplistic as of now, will work on it later. Building a supplycomp with a properly set up circuitboard will give access to the Contraband crate.

      ?How they're used: Unfold the rolled poster on any wall or r_wall to create the poster. There are currently 17 designs, with the possibility of me adding more.

      ?How to get rid of them: You can rip them using your hand... To cleanly extract them and not ruin them for future use, however, you can use a pair of wirecutters. -

      ?How they're classified: They're contraband, so it's perfectly okay for security officers to confiscate them. Punishment for contraband-providers (or end-users, if you want to go full nazi) is up to the situational commanding officers. +

      ?How they're classified: They're contraband, so it's perfectly okay for security officers to confiscate them. Punishment for contraband-providers is up to the situational commanding officers.
    • Merged 'Game' and 'Lobby' tabs during pre-game into one tab
    • Added the little red x to the late-join job list
    • Late-joiners are warned if the shuttle is past the point of recall, and if the shuttle has already left the station
    • diff --git a/icons/_nanomaps/tether_nanomap_z1.png b/icons/_nanomaps/tether_nanomap_z1.png index f818d7d085..f6188b7881 100644 Binary files a/icons/_nanomaps/tether_nanomap_z1.png and b/icons/_nanomaps/tether_nanomap_z1.png differ diff --git a/icons/_nanomaps/tether_nanomap_z3.png b/icons/_nanomaps/tether_nanomap_z3.png index 45438a40d9..b3ba9a92f0 100644 Binary files a/icons/_nanomaps/tether_nanomap_z3.png and b/icons/_nanomaps/tether_nanomap_z3.png differ diff --git a/icons/effects/weather.dmi b/icons/effects/weather.dmi index dc29f8fd2e..24f68f31eb 100644 Binary files a/icons/effects/weather.dmi and b/icons/effects/weather.dmi differ diff --git a/icons/inventory/accessory/item_vr.dmi b/icons/inventory/accessory/item_vr.dmi index 6f84a0e538..de59e5e17d 100644 Binary files a/icons/inventory/accessory/item_vr.dmi and b/icons/inventory/accessory/item_vr.dmi differ diff --git a/icons/inventory/accessory/mob_vr.dmi b/icons/inventory/accessory/mob_vr.dmi index 3ddbd06479..f3509128a7 100644 Binary files a/icons/inventory/accessory/mob_vr.dmi and b/icons/inventory/accessory/mob_vr.dmi differ diff --git a/icons/inventory/back/mob.dmi b/icons/inventory/back/mob.dmi index ce764ee6c5..f9c36d0277 100644 Binary files a/icons/inventory/back/mob.dmi and b/icons/inventory/back/mob.dmi differ diff --git a/icons/inventory/eyes/item_vr.dmi b/icons/inventory/eyes/item_vr.dmi index cc158df7ad..bf46a541b6 100644 Binary files a/icons/inventory/eyes/item_vr.dmi and b/icons/inventory/eyes/item_vr.dmi differ diff --git a/icons/inventory/eyes/mob_vr.dmi b/icons/inventory/eyes/mob_vr.dmi index 2a413394e9..73d341e889 100644 Binary files a/icons/inventory/eyes/mob_vr.dmi and b/icons/inventory/eyes/mob_vr.dmi differ diff --git a/icons/misc/random_spawners.dmi b/icons/misc/random_spawners.dmi index 27e55fc9ec..9db4770062 100644 Binary files a/icons/misc/random_spawners.dmi and b/icons/misc/random_spawners.dmi differ diff --git a/icons/mob/62x62robot_vr.dmi b/icons/mob/62x62robot_vr.dmi index bbb6d319d8..6cf7bd0a4e 100644 Binary files a/icons/mob/62x62robot_vr.dmi and b/icons/mob/62x62robot_vr.dmi differ diff --git a/icons/mob/64x64robot_vr.dmi b/icons/mob/64x64robot_vr.dmi new file mode 100644 index 0000000000..3e5bc39124 Binary files /dev/null and b/icons/mob/64x64robot_vr.dmi differ diff --git a/icons/mob/alienanimals_x32.dmi b/icons/mob/alienanimals_x32.dmi index 16dffa37a3..f118a398d6 100644 Binary files a/icons/mob/alienanimals_x32.dmi and b/icons/mob/alienanimals_x32.dmi differ diff --git a/icons/mob/drakeborg/drakeborg_vr.dmi b/icons/mob/drakeborg/drakeborg_vr.dmi index 2165e78525..282836da49 100644 Binary files a/icons/mob/drakeborg/drakeborg_vr.dmi and b/icons/mob/drakeborg/drakeborg_vr.dmi differ diff --git a/icons/mob/hud_jobs_vr.dmi b/icons/mob/hud_jobs_vr.dmi index ca0df7de06..8d55dfc600 100644 Binary files a/icons/mob/hud_jobs_vr.dmi and b/icons/mob/hud_jobs_vr.dmi differ diff --git a/icons/mob/human_face_alt.dmi b/icons/mob/human_face_alt.dmi index 6d02bc14bf..6172ddf26e 100644 Binary files a/icons/mob/human_face_alt.dmi and b/icons/mob/human_face_alt.dmi differ diff --git a/icons/mob/human_face_alt_add.dmi b/icons/mob/human_face_alt_add.dmi index 9007a281f5..b585079d73 100644 Binary files a/icons/mob/human_face_alt_add.dmi and b/icons/mob/human_face_alt_add.dmi differ diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi index 67f87812fe..31052106d3 100644 Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ diff --git a/icons/mob/human_races/r_def_nevrean.dmi b/icons/mob/human_races/r_def_nevrean.dmi index 42c18e18d6..1cbc45d861 100644 Binary files a/icons/mob/human_races/r_def_nevrean.dmi and b/icons/mob/human_races/r_def_nevrean.dmi differ diff --git a/icons/mob/human_races/r_nevrean.dmi b/icons/mob/human_races/r_nevrean.dmi index d2bebc171a..0fc87f63cb 100644 Binary files a/icons/mob/human_races/r_nevrean.dmi and b/icons/mob/human_races/r_nevrean.dmi differ diff --git a/icons/mob/items/lefthand_melee_vr.dmi b/icons/mob/items/lefthand_melee_vr.dmi index 2cc11d8ed8..7d54473391 100644 Binary files a/icons/mob/items/lefthand_melee_vr.dmi and b/icons/mob/items/lefthand_melee_vr.dmi differ diff --git a/icons/mob/items/righthand_melee_vr.dmi b/icons/mob/items/righthand_melee_vr.dmi index 29134f5dcb..12afb64f34 100644 Binary files a/icons/mob/items/righthand_melee_vr.dmi and b/icons/mob/items/righthand_melee_vr.dmi differ diff --git a/icons/mob/raptorborg/raptor.dmi b/icons/mob/raptorborg/raptor.dmi index c553840790..7253c1fa72 100644 Binary files a/icons/mob/raptorborg/raptor.dmi and b/icons/mob/raptorborg/raptor.dmi differ diff --git a/icons/mob/robot/combat_large.dmi b/icons/mob/robot/combat_large.dmi index 4c3c3f3a3e..0319962e5f 100644 Binary files a/icons/mob/robot/combat_large.dmi and b/icons/mob/robot/combat_large.dmi differ diff --git a/icons/mob/robot/combat_medic_wide.dmi b/icons/mob/robot/combat_medic_wide.dmi index d0e1a707ef..f4a51ce6cd 100644 Binary files a/icons/mob/robot/combat_medic_wide.dmi and b/icons/mob/robot/combat_medic_wide.dmi differ diff --git a/icons/mob/robot/crisis_large.dmi b/icons/mob/robot/crisis_large.dmi index 67bee2af0c..c15c4ee5c7 100644 Binary files a/icons/mob/robot/crisis_large.dmi and b/icons/mob/robot/crisis_large.dmi differ diff --git a/icons/mob/robot/crisis_wide.dmi b/icons/mob/robot/crisis_wide.dmi index 8b6859fd1d..3d9189bcbd 100644 Binary files a/icons/mob/robot/crisis_wide.dmi and b/icons/mob/robot/crisis_wide.dmi differ diff --git a/icons/mob/robot/engineering_large.dmi b/icons/mob/robot/engineering_large.dmi index b85e6c1143..74986efb5c 100644 Binary files a/icons/mob/robot/engineering_large.dmi and b/icons/mob/robot/engineering_large.dmi differ diff --git a/icons/mob/robot/engineering_wide.dmi b/icons/mob/robot/engineering_wide.dmi index bb244f9f2f..64ef71cd16 100644 Binary files a/icons/mob/robot/engineering_wide.dmi and b/icons/mob/robot/engineering_wide.dmi differ diff --git a/icons/mob/robot/fluff_wide.dmi b/icons/mob/robot/fluff_wide.dmi index b465bbf4d7..fffe15feca 100644 Binary files a/icons/mob/robot/fluff_wide.dmi and b/icons/mob/robot/fluff_wide.dmi differ diff --git a/icons/mob/robot/janitor_large.dmi b/icons/mob/robot/janitor_large.dmi index 3b3f31b440..178d861f5c 100644 Binary files a/icons/mob/robot/janitor_large.dmi and b/icons/mob/robot/janitor_large.dmi differ diff --git a/icons/mob/robot/janitor_wide.dmi b/icons/mob/robot/janitor_wide.dmi index ba5ae9e598..f1679d41a2 100644 Binary files a/icons/mob/robot/janitor_wide.dmi and b/icons/mob/robot/janitor_wide.dmi differ diff --git a/icons/mob/robot/lost_wide.dmi b/icons/mob/robot/lost_wide.dmi index c4e3d39787..17a6f3b9b7 100644 Binary files a/icons/mob/robot/lost_wide.dmi and b/icons/mob/robot/lost_wide.dmi differ diff --git a/icons/mob/robot/mechanist_wide.dmi b/icons/mob/robot/mechanist_wide.dmi new file mode 100644 index 0000000000..91eb6a15d4 Binary files /dev/null and b/icons/mob/robot/mechanist_wide.dmi differ diff --git a/icons/mob/robot/medical_large.dmi b/icons/mob/robot/medical_large.dmi index 3c4f4861bb..6a2945d5da 100644 Binary files a/icons/mob/robot/medical_large.dmi and b/icons/mob/robot/medical_large.dmi differ diff --git a/icons/mob/robot/mining_large.dmi b/icons/mob/robot/mining_large.dmi index 2542e68618..685076d204 100644 Binary files a/icons/mob/robot/mining_large.dmi and b/icons/mob/robot/mining_large.dmi differ diff --git a/icons/mob/robot/mining_wide.dmi b/icons/mob/robot/mining_wide.dmi index 9660050664..d550fc4e9a 100644 Binary files a/icons/mob/robot/mining_wide.dmi and b/icons/mob/robot/mining_wide.dmi differ diff --git a/icons/mob/robot/science_large.dmi b/icons/mob/robot/science_large.dmi index 1d9f1976c1..389a4856ae 100644 Binary files a/icons/mob/robot/science_large.dmi and b/icons/mob/robot/science_large.dmi differ diff --git a/icons/mob/robot/science_wide.dmi b/icons/mob/robot/science_wide.dmi index 8853969952..581e41fb1b 100644 Binary files a/icons/mob/robot/science_wide.dmi and b/icons/mob/robot/science_wide.dmi differ diff --git a/icons/mob/robot/security_large.dmi b/icons/mob/robot/security_large.dmi index 8020f48552..6f891fb185 100644 Binary files a/icons/mob/robot/security_large.dmi and b/icons/mob/robot/security_large.dmi differ diff --git a/icons/mob/robot/security_wide.dmi b/icons/mob/robot/security_wide.dmi index 0522c435ba..af499dc56e 100644 Binary files a/icons/mob/robot/security_wide.dmi and b/icons/mob/robot/security_wide.dmi differ diff --git a/icons/mob/robot/service_large.dmi b/icons/mob/robot/service_large.dmi index b4f4578f38..9fe00af4dd 100644 Binary files a/icons/mob/robot/service_large.dmi and b/icons/mob/robot/service_large.dmi differ diff --git a/icons/mob/robot/service_wide.dmi b/icons/mob/robot/service_wide.dmi index 1d27455662..1ec76e9e83 100644 Binary files a/icons/mob/robot/service_wide.dmi and b/icons/mob/robot/service_wide.dmi differ diff --git a/icons/mob/robot/service_wide_booze.dmi b/icons/mob/robot/service_wide_booze.dmi index 9a05c3086b..467a7facaf 100644 Binary files a/icons/mob/robot/service_wide_booze.dmi and b/icons/mob/robot/service_wide_booze.dmi differ diff --git a/icons/mob/robot/surgical_large.dmi b/icons/mob/robot/surgical_large.dmi index aafac8c7bd..9928442c4c 100644 Binary files a/icons/mob/robot/surgical_large.dmi and b/icons/mob/robot/surgical_large.dmi differ diff --git a/icons/mob/robot/surgical_wide.dmi b/icons/mob/robot/surgical_wide.dmi index 853a17306e..78460e145c 100644 Binary files a/icons/mob/robot/surgical_wide.dmi and b/icons/mob/robot/surgical_wide.dmi differ diff --git a/icons/mob/screen1.dmi b/icons/mob/screen1.dmi index 842909d3ec..c2990df7fe 100644 Binary files a/icons/mob/screen1.dmi and b/icons/mob/screen1.dmi differ diff --git a/icons/mob/tallborg/tallborg.dmi b/icons/mob/tallborg/tallborg.dmi index 64dc3c74a7..54a3edc9eb 100644 Binary files a/icons/mob/tallborg/tallborg.dmi and b/icons/mob/tallborg/tallborg.dmi differ diff --git a/icons/mob/vore.dmi b/icons/mob/vore.dmi index 72cc43e31d..6c14f7e1ac 100644 Binary files a/icons/mob/vore.dmi and b/icons/mob/vore.dmi differ diff --git a/icons/mob/vore/ears_32x64.dmi b/icons/mob/vore/ears_32x64.dmi index 5c6e3b6598..cfae3acbcb 100644 Binary files a/icons/mob/vore/ears_32x64.dmi and b/icons/mob/vore/ears_32x64.dmi differ diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi index bd621ffe2d..a7b1f425b0 100644 Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index f5ab42e17d..fafe63b1c6 100644 Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ diff --git a/icons/mob/vore/wings_vr.dmi b/icons/mob/vore/wings_vr.dmi index 3eb91889e5..a5ebaa2b71 100644 Binary files a/icons/mob/vore/wings_vr.dmi and b/icons/mob/vore/wings_vr.dmi differ diff --git a/icons/mob/vore128x64.dmi b/icons/mob/vore128x64.dmi index a8422c16bd..ef728e2a19 100644 Binary files a/icons/mob/vore128x64.dmi and b/icons/mob/vore128x64.dmi differ diff --git a/icons/mob/vore64x32.dmi b/icons/mob/vore64x32.dmi index 62fe533917..93115c62cc 100644 Binary files a/icons/mob/vore64x32.dmi and b/icons/mob/vore64x32.dmi differ diff --git a/icons/mob/vore_raptor.dmi b/icons/mob/vore_raptor.dmi new file mode 100644 index 0000000000..479923d44e Binary files /dev/null and b/icons/mob/vore_raptor.dmi differ diff --git a/icons/mob/vore_scel.dmi b/icons/mob/vore_scel.dmi new file mode 100644 index 0000000000..9e4f21d50e Binary files /dev/null and b/icons/mob/vore_scel.dmi differ diff --git a/icons/obj/abductor.dmi b/icons/obj/abductor.dmi index e5ffc375a3..226e2abd63 100644 Binary files a/icons/obj/abductor.dmi and b/icons/obj/abductor.dmi differ diff --git a/icons/obj/bureaucracy_vr.dmi b/icons/obj/bureaucracy_vr.dmi index 2b27fee277..b275d0b968 100644 Binary files a/icons/obj/bureaucracy_vr.dmi and b/icons/obj/bureaucracy_vr.dmi differ diff --git a/icons/obj/chemical.dmi b/icons/obj/chemical.dmi index b904a5c2dc..2dbb310fde 100644 Binary files a/icons/obj/chemical.dmi and b/icons/obj/chemical.dmi differ diff --git a/icons/obj/chemical_potionreagents.dmi b/icons/obj/chemical_potionreagents.dmi new file mode 100644 index 0000000000..d9da43bf29 Binary files /dev/null and b/icons/obj/chemical_potionreagents.dmi differ diff --git a/icons/obj/chemical_tanks.dmi b/icons/obj/chemical_tanks.dmi index 2775483204..a172c575ee 100644 Binary files a/icons/obj/chemical_tanks.dmi and b/icons/obj/chemical_tanks.dmi differ diff --git a/icons/obj/closets/chest.dmi b/icons/obj/closets/chest.dmi new file mode 100644 index 0000000000..66e51b7d9d Binary files /dev/null and b/icons/obj/closets/chest.dmi differ diff --git a/icons/obj/closets/decals/wall_double.dmi b/icons/obj/closets/decals/wall_double.dmi index 9a47f92f6b..ba78f6675f 100644 Binary files a/icons/obj/closets/decals/wall_double.dmi and b/icons/obj/closets/decals/wall_double.dmi differ diff --git a/icons/obj/cooking_machines.dmi b/icons/obj/cooking_machines.dmi index b8c3ea6f5d..3f6623cbd4 100644 Binary files a/icons/obj/cooking_machines.dmi and b/icons/obj/cooking_machines.dmi differ diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 35911a76e8..6e3cd24503 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ diff --git a/icons/obj/device_vr.dmi b/icons/obj/device_vr.dmi index ab5c3e87ec..726639b267 100644 Binary files a/icons/obj/device_vr.dmi and b/icons/obj/device_vr.dmi differ diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 3cc43086bb..be1c3a8172 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ diff --git a/icons/obj/fence.dmi b/icons/obj/fence.dmi index 31b1abef3c..0d8bc382db 100644 Binary files a/icons/obj/fence.dmi and b/icons/obj/fence.dmi differ diff --git a/icons/obj/flora/underwaterflora.dmi b/icons/obj/flora/underwaterflora.dmi new file mode 100644 index 0000000000..452bb45dfa Binary files /dev/null and b/icons/obj/flora/underwaterflora.dmi differ diff --git a/icons/obj/food_package.dmi b/icons/obj/food_package.dmi index f9c30c9608..cf22ac48ed 100644 Binary files a/icons/obj/food_package.dmi and b/icons/obj/food_package.dmi differ diff --git a/icons/obj/food_snacks.dmi b/icons/obj/food_snacks.dmi index 84350f88bf..6962741815 100644 Binary files a/icons/obj/food_snacks.dmi and b/icons/obj/food_snacks.dmi differ diff --git a/icons/obj/food_vr.dmi b/icons/obj/food_vr.dmi index 35ecb88dcb..1e79233304 100644 Binary files a/icons/obj/food_vr.dmi and b/icons/obj/food_vr.dmi differ diff --git a/icons/obj/furniture.dmi b/icons/obj/furniture.dmi index 485cc6a46e..6df4edab48 100644 Binary files a/icons/obj/furniture.dmi and b/icons/obj/furniture.dmi differ diff --git a/icons/obj/gun.dmi b/icons/obj/gun.dmi index a807f04c9a..f59d1369e1 100644 Binary files a/icons/obj/gun.dmi and b/icons/obj/gun.dmi differ diff --git a/icons/obj/gun_vr.dmi b/icons/obj/gun_vr.dmi index 538ff61b76..87369e81ea 100644 Binary files a/icons/obj/gun_vr.dmi and b/icons/obj/gun_vr.dmi differ diff --git a/icons/obj/keys.dmi b/icons/obj/keys.dmi new file mode 100644 index 0000000000..9dcc8e412a Binary files /dev/null and b/icons/obj/keys.dmi differ diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index eda319d76b..d1162bad55 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ diff --git a/icons/obj/lighting_neon.dmi b/icons/obj/lighting_neon.dmi index 4c72f3f24f..e1ab3523aa 100644 Binary files a/icons/obj/lighting_neon.dmi and b/icons/obj/lighting_neon.dmi differ diff --git a/icons/obj/lighting_vr.dmi b/icons/obj/lighting_vr.dmi index 5af18932e8..5ecb4ac4e1 100644 Binary files a/icons/obj/lighting_vr.dmi and b/icons/obj/lighting_vr.dmi differ diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index 79c778bd12..269e75ffb6 100644 Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ diff --git a/icons/obj/props/decor64x64.dmi b/icons/obj/props/decor64x64.dmi index 2cfca942dd..0a02cb8f45 100644 Binary files a/icons/obj/props/decor64x64.dmi and b/icons/obj/props/decor64x64.dmi differ diff --git a/icons/obj/props/fantasy.dmi b/icons/obj/props/fantasy.dmi new file mode 100644 index 0000000000..71c189910e Binary files /dev/null and b/icons/obj/props/fantasy.dmi differ diff --git a/icons/obj/reagentfillings.dmi b/icons/obj/reagentfillings.dmi index 91d596a570..ad545f692f 100644 Binary files a/icons/obj/reagentfillings.dmi and b/icons/obj/reagentfillings.dmi differ diff --git a/icons/obj/stacks.dmi b/icons/obj/stacks.dmi index 2bf50ebc2f..1bcd94faea 100644 Binary files a/icons/obj/stacks.dmi and b/icons/obj/stacks.dmi differ diff --git a/icons/obj/tesla_engine/tesla_coil.dmi b/icons/obj/tesla_engine/tesla_coil.dmi index 96a6c636d8..d30dba3ee5 100644 Binary files a/icons/obj/tesla_engine/tesla_coil.dmi and b/icons/obj/tesla_engine/tesla_coil.dmi differ diff --git a/icons/obj/trash.dmi b/icons/obj/trash.dmi index e3663011dd..e8841c78cc 100644 Binary files a/icons/obj/trash.dmi and b/icons/obj/trash.dmi differ diff --git a/icons/obj/watercloset.dmi b/icons/obj/watercloset.dmi index 7acb724e5b..847c97fc23 100644 Binary files a/icons/obj/watercloset.dmi and b/icons/obj/watercloset.dmi differ diff --git a/icons/obj/weapons_vr.dmi b/icons/obj/weapons_vr.dmi index 591c65ab09..968c6e8ef2 100644 Binary files a/icons/obj/weapons_vr.dmi and b/icons/obj/weapons_vr.dmi differ diff --git a/icons/turf/outdoors.dmi b/icons/turf/outdoors.dmi index 5b9ee2d7a5..5895a29740 100644 Binary files a/icons/turf/outdoors.dmi and b/icons/turf/outdoors.dmi differ diff --git a/icons/turf/outdoors_edge.dmi b/icons/turf/outdoors_edge.dmi index 764336a4f0..98c65a4a0d 100644 Binary files a/icons/turf/outdoors_edge.dmi and b/icons/turf/outdoors_edge.dmi differ diff --git a/icons/turf/wall_masks.dmi b/icons/turf/wall_masks.dmi index 36d780c69d..2f7b329130 100644 Binary files a/icons/turf/wall_masks.dmi and b/icons/turf/wall_masks.dmi differ diff --git a/icons/turf/wall_masks_vr.dmi b/icons/turf/wall_masks_vr.dmi index 3c535a654f..ff773ba65b 100644 Binary files a/icons/turf/wall_masks_vr.dmi and b/icons/turf/wall_masks_vr.dmi differ diff --git a/interface/interface.dm b/interface/interface.dm index 02fdecedb6..1a2771d81b 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -80,6 +80,19 @@ to_chat(src, "The Discord URL is not set in the server configuration.") return +/client/verb/patreon() + set name = "Patreon" + set desc = "Visit the patreon" + set hidden = 1 + + if(config.patreonurl) + if(tgui_alert(usr, "This will open the Patreon in your browser. Are you sure?","Visit Website",list("Yes","No"))=="No") + return + src << link(config.patreonurl) + else + to_chat(src, "The Patreon URL is not set in the server configuration.") + return + /client/verb/hotkeys_help() set name = "hotkeys-help" set category = "OOC" diff --git a/interface/skin.dmf b/interface/skin.dmf index d95de322a2..c3683f6846 100644 --- a/interface/skin.dmf +++ b/interface/skin.dmf @@ -1337,6 +1337,18 @@ window "rpane" saved-params = "splitter" right = "outputwindow" is-vert = false + elem "patreon" + type = BUTTON + pos = 488,0 + size = 60x16 + anchor1 = -1,-1 + anchor2 = -1,-1 + background-color = '#005813' + text-color = #FFFFFF + saved-params = "is-checked" + text = "Patreon" + command = "patreon" + group = "rpanemode" elem "discord" type = BUTTON pos = 428,0 diff --git a/maps/_templates_and_guidance/Mapping Guides/Complete Room Checklist.dmm b/maps/_templates_and_guidance/Mapping Guides/Complete Room Checklist.dmm index a9f89ac5cd..a59a1e47d2 100644 --- a/maps/_templates_and_guidance/Mapping Guides/Complete Room Checklist.dmm +++ b/maps/_templates_and_guidance/Mapping Guides/Complete Room Checklist.dmm @@ -37,7 +37,6 @@ pixel_x = -24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/item/device/radio/intercom{ @@ -55,8 +54,6 @@ "m" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -93,8 +90,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -115,8 +110,6 @@ "B" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, diff --git a/maps/cynosure/cynosure-1.dmm b/maps/cynosure/cynosure-1.dmm index 9cdce7fb08..c1e2c80f52 100644 --- a/maps/cynosure/cynosure-1.dmm +++ b/maps/cynosure/cynosure-1.dmm @@ -1,8 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18,8 +16,6 @@ "ac" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -71,13 +67,9 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/zone_divider, @@ -151,8 +143,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -179,7 +169,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -297,8 +286,6 @@ /area/surface/station/hallway/primary/bmt/north) "aI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -394,8 +381,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -466,8 +451,6 @@ name = "Outpost Hallway" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -499,8 +482,6 @@ /area/surface/station/engineering/hallway/bmt) "bf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -535,8 +516,6 @@ /area/surface/station/maintenance/substation/engineering/bmt) "bl" = ( /obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -550,8 +529,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -594,7 +571,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -625,8 +601,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -645,8 +619,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -685,8 +657,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -710,12 +680,9 @@ }, /obj/structure/railing, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/item/weapon/storage/box/lights/mixed, @@ -776,8 +743,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -803,8 +768,6 @@ "bK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -812,12 +775,9 @@ "bL" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ @@ -840,8 +800,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -926,8 +884,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -937,8 +893,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -990,8 +944,6 @@ /area/surface/station/construction/genetics) "cb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1007,8 +959,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -1029,16 +979,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/white, @@ -1082,8 +1028,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -1182,8 +1126,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner, @@ -1234,8 +1176,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -1313,7 +1253,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/portable_atmospherics/powered/scrubber, @@ -1363,8 +1302,6 @@ }, /obj/machinery/meter, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -1455,21 +1392,15 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, /area/surface/outpost/research/xenoarcheology/smes) "dk" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -1488,8 +1419,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1522,8 +1451,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -1543,8 +1470,6 @@ /area/surface/station/maintenance/medical/west) "dq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1588,8 +1513,6 @@ /area/surface/station/hallway/secondary/bmt/eaststairwell) "dv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -1622,8 +1545,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -1720,8 +1641,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/zone_divider, @@ -1735,8 +1654,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1763,8 +1680,6 @@ "dN" = ( /obj/item/stack/tile/floor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1830,8 +1745,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -1866,8 +1779,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating/sif/planetuse{ @@ -1881,8 +1792,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -1894,8 +1803,6 @@ "eg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/white, @@ -1921,8 +1828,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -1990,13 +1895,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated, @@ -2018,8 +1919,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/stack/tile/floor, @@ -2046,8 +1945,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/intercom{ @@ -2058,8 +1955,6 @@ /area/surface/station/rnd/hallway/bmt) "ez" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2106,8 +2001,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -2140,8 +2033,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2160,8 +2051,6 @@ "eO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -2239,7 +2128,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -2258,8 +2146,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -2324,12 +2210,9 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/up, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/railing, @@ -2358,8 +2241,6 @@ /area/surface/station/construction/warehouse) "fi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2414,8 +2295,6 @@ /area/surface/outpost/research/xenoarcheology/isolation_c) "fo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2581,8 +2460,6 @@ /area/surface/outpost/research/xenoarcheology/smes) "fM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -2602,8 +2479,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -2685,8 +2560,6 @@ "ga" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -2703,8 +2576,6 @@ /area/surface/station/construction/genetics) "gd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2717,8 +2588,6 @@ /area/surface/station/maintenance/engineering/south) "ge" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -2736,8 +2605,6 @@ /area/surface/station/rnd/storage) "gg" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2757,8 +2624,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -2772,7 +2637,6 @@ /area/surface/station/mining_main) "gl" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2794,8 +2658,6 @@ /area/surface/outpost/research/xenoarcheology/isolation_b) "gm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2831,8 +2693,6 @@ "gr" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -2846,8 +2706,6 @@ /area/surface/outpost/research/xenoarcheology/smes) "gv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2877,8 +2735,6 @@ /area/surface/outpost/research/xenoarcheology/entrance) "gy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2908,8 +2764,6 @@ "gC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -2961,8 +2815,6 @@ target_pressure = 315 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel, @@ -2988,8 +2840,6 @@ /area/surface/station/maintenance/substation/medbay/bmt) "gJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3019,8 +2869,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -3066,11 +2914,9 @@ "gS" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable, @@ -3086,7 +2932,6 @@ "gU" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable, @@ -3146,15 +2991,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/rnd/storage) "hf" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -3176,7 +3018,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -3207,8 +3048,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -3247,8 +3086,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3271,8 +3108,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -3308,8 +3143,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -3328,8 +3161,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning, @@ -3337,8 +3168,6 @@ /area/surface/station/medical/hallway/bmt) "hy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -3386,8 +3215,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -3405,28 +3232,21 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/surface/station/rnd/toxins_launch) "hG" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -3438,8 +3258,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -3465,8 +3283,6 @@ /area/surface/station/medical/morgue) "hK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3477,8 +3293,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -3500,13 +3314,9 @@ "hM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -3532,8 +3342,6 @@ /area/surface/station/maintenance/substation/cargo/bmt) "hR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3575,8 +3383,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/anomaly_container, @@ -3638,13 +3444,9 @@ "ig" = ( /obj/structure/disposalpipe/junction, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -3724,8 +3526,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -3758,8 +3558,6 @@ /area/surface/station/maintenance/incinerator) "it" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3769,8 +3567,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -3780,13 +3576,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -3915,8 +3707,6 @@ }, /obj/item/device/gps/science, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -3931,12 +3721,9 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/disposalpipe/up, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/railing{ @@ -4046,8 +3833,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -4088,8 +3873,6 @@ }, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -4112,8 +3895,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -4157,8 +3938,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -4171,14 +3950,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/white, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light, @@ -4208,8 +3983,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4219,8 +3992,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -4247,8 +4018,6 @@ /area/surface/outpost/research/xenoarcheology/isolation_a) "jp" = ( /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -4279,13 +4048,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -4308,8 +4073,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -4335,8 +4098,6 @@ /area/surface/station/rnd/toxins_launch) "jy" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4390,7 +4151,6 @@ /area/surface/station/hallway/primary/bmt/west) "jD" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -4535,8 +4295,6 @@ /area/surface/station/vault) "jP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4614,13 +4372,9 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated/dark, @@ -4632,8 +4386,6 @@ /area/surface/station/maintenance/substation/research/bmt) "ka" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4690,8 +4442,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4713,8 +4463,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4739,8 +4487,6 @@ /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -4805,8 +4551,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -4837,8 +4581,6 @@ /area/surface/outpost/research/xenoarcheology/exp_prep) "kD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4899,8 +4641,6 @@ /area/surface/station/mining_main) "kJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4978,8 +4718,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/research{ @@ -4990,8 +4728,6 @@ /area/surface/outpost/research/xenoarcheology/longtermstorage) "kQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -5012,8 +4748,6 @@ /area/surface/station/maintenance/eaststairwell) "kT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5052,13 +4786,9 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/yellow, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/white, @@ -5119,8 +4849,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -5170,7 +4898,6 @@ /area/surface/station/hallway/primary/bmt/south) "lu" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -5230,8 +4957,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -5273,8 +4998,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -5328,8 +5051,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5349,8 +5070,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -5400,8 +5119,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -5427,8 +5144,6 @@ /area/surface/station/rnd/hallway/bmt) "lQ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -5442,8 +5157,6 @@ /area/surface/outpost/research/xenoarcheology/entrance) "lR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5453,8 +5166,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -5474,18 +5185,12 @@ /area/surface/cave/explored/normal) "lT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -5513,8 +5218,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5550,13 +5253,9 @@ "ma" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -5581,8 +5280,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -5612,8 +5309,6 @@ /area/surface/station/hallway/primary/bmt/east) "md" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5637,8 +5332,6 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -5675,7 +5368,6 @@ /obj/random/soap, /obj/random/soap, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -5797,8 +5489,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -5815,13 +5505,9 @@ /area/surface/station/rnd/mixing) "mz" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5830,8 +5516,6 @@ /area/surface/outpost/research/xenoarcheology/entrance) "mA" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5855,13 +5539,9 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -5873,13 +5553,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/basement{ @@ -5926,8 +5602,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/white, @@ -5949,8 +5623,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5973,8 +5645,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -6099,8 +5769,6 @@ name = "Biohazard Shutter" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -6256,8 +5924,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6265,8 +5931,6 @@ "nD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -6284,13 +5948,9 @@ /area/surface/station/engineering/drone_fabrication) "nF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated/dark, @@ -6404,8 +6064,6 @@ /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -6414,8 +6072,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -6437,8 +6093,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -6480,8 +6134,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -6616,13 +6268,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -6717,8 +6365,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6762,15 +6408,12 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/disposalpipe/up{ dir = 8 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/railing{ @@ -6845,8 +6488,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -6858,13 +6499,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated, @@ -6882,8 +6519,6 @@ /area/surface/station/maintenance/substation/medbay/bmt) "oW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -6918,8 +6553,6 @@ /area/surface/station/maintenance/medical/south) "pb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -6947,8 +6580,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/security/telescreen{ @@ -6961,8 +6592,6 @@ /area/surface/station/rnd/toxins_launch) "pf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6972,8 +6601,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -6982,8 +6609,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7013,8 +6638,6 @@ "pm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -7155,8 +6778,6 @@ /area/surface/station/medical/hallway/bmt) "pD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -7182,13 +6803,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7226,8 +6843,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7245,8 +6860,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7259,8 +6872,6 @@ /area/surface/station/engineering/hallway/bmt) "pM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -7327,8 +6938,6 @@ "pV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7353,7 +6962,6 @@ /area/surface/station/hallway/primary/bmt/south) "qb" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -7378,13 +6986,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -7408,7 +7012,6 @@ "qh" = ( /obj/structure/cable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/firedoor/border_only, @@ -7418,8 +7021,6 @@ /area/surface/station/storage/tech) "qj" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -7429,8 +7030,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -7440,13 +7039,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -7502,8 +7097,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /mob/living/simple_mob/animal/passive/mouse/brown/Tom, @@ -7515,8 +7108,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -7536,7 +7127,6 @@ /area/surface/station/engineering/auxiliary_engineering) "qr" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -7592,8 +7182,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/turretid/stun{ @@ -7616,8 +7204,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -7664,8 +7250,6 @@ /obj/effect/floor_decal/rust, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating/sif/planetuse{ @@ -7678,8 +7262,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -7705,13 +7287,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -7784,8 +7362,6 @@ /area/surface/station/rnd/server) "qQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -7859,8 +7435,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7967,8 +7541,6 @@ /area/surface/station/maintenance/substation/medbay/bmt) "rm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -8012,8 +7584,6 @@ "rr" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8084,8 +7654,6 @@ /area/surface/station/mining_main/locker) "rA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8096,8 +7664,6 @@ /area/surface/station/maintenance/engineering/south) "rB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -8153,8 +7719,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -8194,7 +7758,6 @@ /area/surface/station/rnd/server) "rM" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -8217,13 +7780,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -8236,7 +7795,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -8284,8 +7842,6 @@ "rU" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8302,8 +7858,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -8341,8 +7895,6 @@ /area/surface/station/medical/hallway/bmt) "rY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8376,8 +7928,6 @@ /area/surface/station/maintenance/substation/research/bmt) "se" = ( /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -8402,8 +7952,6 @@ /area/surface/station/rnd/server) "sg" = ( /obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -8450,8 +7998,6 @@ "sn" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8502,8 +8048,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -8537,8 +8081,6 @@ /obj/machinery/atmospherics/valve/digital, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -8569,8 +8111,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -8612,7 +8152,6 @@ /area/surface/station/medical/hallway/bmt) "sI" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -8651,8 +8190,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green, @@ -8702,7 +8239,6 @@ /area/surface/outpost/research/xenoarcheology/exp_prep) "sO" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow, @@ -8783,8 +8319,6 @@ /area/surface/station/hallway/primary/bmt/west/elevator) "sT" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/old_tile/gray, @@ -8801,8 +8335,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_research{ @@ -8813,8 +8345,6 @@ /area/surface/outpost/research/xenoarcheology/analysis) "sX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -8852,8 +8382,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -9132,8 +8660,6 @@ /area/surface/station/maintenance/research/east) "tG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -9188,13 +8714,9 @@ /area/surface/station/rnd/hallway/bmt) "tP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -9207,8 +8729,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9236,7 +8756,6 @@ /area/surface/station/hallway/primary/bmt/east) "tT" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable, @@ -9254,8 +8773,6 @@ name = "Stairwell" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -9280,8 +8797,6 @@ "tW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel, @@ -9317,8 +8832,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -9329,11 +8842,9 @@ /area/surface/outpost/research/xenoarcheology/anomaly) "ua" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/firedoor/border_only, @@ -9418,8 +8929,6 @@ /area/surface/station/mining_main/storage) "ul" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -9494,8 +9003,6 @@ /area/surface/station/storage/tech) "uA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9533,8 +9040,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated, @@ -9603,8 +9108,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -9641,8 +9144,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -9684,8 +9185,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/standard, @@ -9713,8 +9212,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -9736,8 +9233,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -9786,8 +9281,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9821,8 +9314,6 @@ /area/surface/station/rnd/test_area) "vm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/rust, @@ -9870,8 +9361,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -9898,8 +9387,6 @@ /area/surface/outpost/research/xenoarcheology/entrance) "vv" = ( /obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -9911,8 +9398,6 @@ "vw" = ( /obj/effect/catwalk_plated/dark, /obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -9921,12 +9406,9 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/railing{ @@ -9964,13 +9446,9 @@ /area/surface/station/hallway/primary/bmt/south) "vz" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10001,8 +9479,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -10051,8 +9527,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -10062,8 +9536,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -10082,8 +9554,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/reagent_dispensers/fueltank, @@ -10113,11 +9583,9 @@ "vR" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -10133,8 +9601,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -10251,8 +9717,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10291,8 +9755,6 @@ }, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ @@ -10321,13 +9783,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor/corner, @@ -10341,8 +9799,6 @@ /area/surface/station/maintenance/research/east) "wp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -10365,8 +9821,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -10382,8 +9836,6 @@ "ws" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -10423,13 +9875,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -10502,8 +9950,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -10519,8 +9965,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -10536,7 +9980,6 @@ /area/surface/station/mining_main/exterior) "wK" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -10559,8 +10002,6 @@ /area/surface/outpost/research/xenoarcheology/analysis) "wL" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10600,8 +10041,6 @@ "wP" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -10677,16 +10116,12 @@ /area/surface/station/mining_main/refinery) "xc" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, /area/surface/station/maintenance/security) "xe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -10709,8 +10144,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -10754,8 +10187,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -10796,14 +10227,10 @@ pixel_x = -24 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -10840,8 +10267,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -10866,8 +10291,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -10881,8 +10304,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -10935,8 +10356,6 @@ "xG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -10948,8 +10367,6 @@ "xJ" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -10997,8 +10414,6 @@ "xO" = ( /obj/machinery/space_heater, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -11013,7 +10428,6 @@ /area/surface/outpost/research/xenoarcheology/smes) "xP" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -11092,8 +10506,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/station_map{ @@ -11156,8 +10568,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -11192,8 +10602,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite/corner, @@ -11222,8 +10630,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -11243,8 +10649,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/research{ @@ -11255,8 +10659,6 @@ /area/surface/station/rnd/storage) "yr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -11264,7 +10666,6 @@ /area/surface/station/mining_main/refinery) "ys" = ( /obj/structure/cable/heavyduty{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/terminal{ @@ -11351,8 +10752,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/firealarm{ @@ -11360,8 +10759,6 @@ pixel_x = -24 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -11453,8 +10850,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light/small{ @@ -11504,13 +10899,9 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -11604,7 +10995,6 @@ "yY" = ( /obj/structure/table/steel, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -11642,8 +11032,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -11654,7 +11042,6 @@ /area/surface/station/maintenance/research/east) "za" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -11692,8 +11079,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -11716,8 +11101,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/zone_divider, @@ -11775,8 +11158,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11791,7 +11172,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/purple/border, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -11813,13 +11193,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -11878,8 +11254,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated, @@ -11901,8 +11275,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -11921,8 +11293,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -12024,8 +11394,6 @@ "zZ" = ( /obj/effect/floor_decal/rust, /obj/structure/cable/heavyduty{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -12042,8 +11410,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/white{ @@ -12091,11 +11457,9 @@ /area/surface/station/hallway/secondary/bmt/weststairwell) "Ag" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable, @@ -12161,8 +11525,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -12200,8 +11562,6 @@ "Ar" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm{ @@ -12269,7 +11629,6 @@ }, /obj/machinery/cell_charger, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -12298,8 +11657,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/neutral, @@ -12310,8 +11667,6 @@ /area/surface/station/mining_main/storage) "AD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -12321,8 +11676,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -12350,8 +11703,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7, @@ -12387,8 +11738,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -12406,8 +11755,6 @@ /area/surface/station/rnd/mixing) "AL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -12446,13 +11793,9 @@ /area/surface/cave/unexplored/deep) "AR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -12495,8 +11838,6 @@ "AU" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12530,8 +11871,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -12574,8 +11913,6 @@ /area/surface/station/medical/storage/second_storage) "Bb" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12596,8 +11933,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -12655,8 +11990,6 @@ "Bk" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -12732,7 +12065,6 @@ /area/surface/station/maintenance/engineering/south) "Br" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/table/steel, @@ -12758,11 +12090,9 @@ /area/surface/station/mining_main/storage) "Bs" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable, @@ -12779,8 +12109,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12793,8 +12121,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -12812,8 +12138,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/white, @@ -12855,8 +12179,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12870,8 +12192,6 @@ /area/surface/outpost/research/xenoarcheology/isolation_a) "BF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12897,8 +12217,6 @@ /area/surface/station/engineering/hallway/bmt) "BI" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12917,8 +12235,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -13002,13 +12318,9 @@ "BU" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13016,8 +12328,6 @@ "BV" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -13034,8 +12344,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -13067,8 +12375,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -13107,8 +12413,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/zone_divider, @@ -13250,8 +12554,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/zone_divider, @@ -13278,8 +12580,6 @@ }, /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -13376,16 +12676,12 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/surface/station/mining_main) "CJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -13455,8 +12751,6 @@ dir = 5 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/table/steel, @@ -13470,8 +12764,6 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -13535,8 +12827,6 @@ /area/surface/station/hallway/primary/bmt/west/elevator) "De" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -13586,8 +12876,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -13606,7 +12894,6 @@ /area/surface/station/rnd/hallway/bmt) "Dl" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -13625,8 +12912,6 @@ /obj/machinery/door/firedoor/border_only, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13645,8 +12930,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -13687,8 +12970,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -13737,8 +13018,6 @@ /area/surface/outpost/research/xenoarcheology/anomaly) "Dw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13770,7 +13049,6 @@ "DA" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -13847,7 +13125,6 @@ /area/surface/station/hallway/primary/bmt/west) "DN" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -13889,8 +13166,6 @@ /area/surface/outpost/research/xenoarcheology/anomaly) "DQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -13898,7 +13173,6 @@ /area/surface/station/maintenance/engineering/north) "DR" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/firedoor/border_only, @@ -13941,7 +13215,6 @@ "DV" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -14041,8 +13314,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner, @@ -14065,8 +13336,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -14094,8 +13363,6 @@ "Ep" = ( /obj/effect/floor_decal/rust, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -14149,8 +13416,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -14250,8 +13515,6 @@ /area/surface/station/mining_main/locker) "EH" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -14273,8 +13536,6 @@ /area/surface/station/rnd/mixing) "EK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -14311,8 +13572,6 @@ "EP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -14372,8 +13631,6 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -14493,8 +13750,6 @@ /obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -14517,8 +13772,6 @@ /area/surface/station/engineering/hallway/bmt) "Fl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14551,8 +13804,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -14577,8 +13828,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -14681,12 +13930,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -14714,8 +13960,6 @@ "FM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -14753,8 +13997,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -14779,8 +14021,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -14844,13 +14084,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -14870,8 +14106,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14899,8 +14133,6 @@ pixel_x = 22 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -14927,8 +14159,6 @@ "Gm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -14962,8 +14192,6 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/yellow/bordercorner, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14976,8 +14204,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -14993,7 +14219,6 @@ /obj/random/maintenance/engineering, /obj/random/maintenance/clean, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -15068,8 +14293,6 @@ "Gy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -15175,8 +14398,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -15199,8 +14420,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -15226,7 +14445,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -15306,7 +14524,6 @@ "Hj" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -15327,8 +14544,6 @@ /area/surface/outpost/research/xenoarcheology/analysis) "Ho" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -15377,8 +14592,6 @@ dir = 4 }, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -15520,8 +14733,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -15650,8 +14861,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -15663,8 +14872,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/reagent_dispensers/watertank, @@ -15730,8 +14937,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -15765,8 +14970,6 @@ pixel_y = 22 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -15820,8 +15023,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -15848,13 +15049,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -15875,8 +15072,6 @@ /area/surface/outpost/research/xenoarcheology/smes) "Ix" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15948,8 +15143,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -15960,16 +15153,12 @@ }, /obj/effect/catwalk_plated/dark, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/surface/station/maintenance/substation/medbay/bmt) "IM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16113,8 +15302,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green, @@ -16138,8 +15325,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -16198,8 +15383,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -16235,8 +15418,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/command{ @@ -16254,8 +15435,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -16268,8 +15447,6 @@ "Jy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -16284,8 +15461,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -16327,8 +15502,6 @@ /area/surface/station/engineering/hallway/bmt) "JG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16350,8 +15523,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/directions/cargo{ @@ -16428,8 +15599,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -16512,8 +15681,6 @@ /area/surface/station/construction/genetics) "JY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16565,8 +15732,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -16617,8 +15782,6 @@ /area/surface/station/rnd/toxins_launch) "Kn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -16738,8 +15901,6 @@ /area/surface/station/storage/tech) "Kz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -16769,13 +15930,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -16832,8 +15989,6 @@ /area/surface/station/rnd/mixing) "KK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16886,7 +16041,6 @@ /area/surface/station/maintenance/incinerator) "KR" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -16948,16 +16102,12 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, /area/surface/station/hallway/primary/bmt/west/elevator) "KW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -16977,8 +16127,6 @@ /area/surface/station/rnd/hallway/bmt) "KX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/weapon/ore/lead{ @@ -16993,8 +16141,6 @@ "La" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -17048,8 +16194,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -17074,8 +16218,6 @@ /area/surface/outpost/research/xenoarcheology/anomaly) "Lk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17088,8 +16230,6 @@ /area/surface/station/maintenance/mining) "Ll" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -17097,8 +16237,6 @@ "Ln" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -17144,16 +16282,12 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/extinguisher_cabinet{ @@ -17212,8 +16346,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -17244,8 +16376,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -17258,8 +16388,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -17288,8 +16416,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -17361,16 +16487,12 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/surface/station/mining_main) "LR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -17379,11 +16501,9 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -17419,7 +16539,6 @@ dir = 6 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -17441,8 +16560,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -17460,8 +16577,6 @@ req_one_access = list(12) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -17493,7 +16608,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -17511,8 +16625,6 @@ /area/surface/station/maintenance/medical/west) "Me" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -17572,8 +16684,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -17588,8 +16698,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -17677,8 +16785,6 @@ "Mz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -17694,8 +16800,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -17707,8 +16811,6 @@ /area/surface/station/medical/hallway/bmt) "MC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17728,8 +16830,6 @@ /area/surface/outpost/research/xenoarcheology/isolation_a) "ME" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17740,8 +16840,6 @@ }, /obj/effect/catwalk_plated/dark, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -17757,8 +16855,6 @@ /area/surface/station/maintenance/research/east) "MG" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17789,13 +16885,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -17824,8 +16916,6 @@ "MN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -17890,8 +16980,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -17901,8 +16989,6 @@ dir = 5 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -17970,8 +17056,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -18011,8 +17095,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -18084,8 +17166,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -18098,7 +17178,6 @@ /area/surface/station/engineering/hallway/bmt) "Nu" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -18196,8 +17275,6 @@ id = "mining_external" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -18276,13 +17353,9 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -18356,8 +17429,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/meter, @@ -18365,8 +17436,6 @@ /area/surface/station/maintenance/security) "NV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18478,8 +17547,6 @@ dir = 1 }, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -18514,7 +17581,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/catwalk_plated/dark, @@ -18528,8 +17594,6 @@ "Ok" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18585,8 +17649,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -18652,8 +17714,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -18686,8 +17746,6 @@ /area/surface/station/maintenance/research/east) "OB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -18702,12 +17760,9 @@ "OC" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/railing{ @@ -18752,7 +17807,6 @@ /area/surface/outpost/research/xenoarcheology/exp_prep) "OG" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/bed/chair/wheelchair, @@ -18773,13 +17827,9 @@ /area/surface/station/medical/storage/second_storage) "OH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -18845,13 +17895,9 @@ /area/surface/station/mining_main) "ON" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor{ @@ -18870,15 +17916,11 @@ /area/surface/station/storage/tech) "OO" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/white, @@ -18922,8 +17964,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -18961,7 +18001,6 @@ /area/surface/station/engineering/hallway/bmt) "OZ" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -19011,7 +18050,6 @@ pixel_y = -12 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/catwalk_plated/dark, @@ -19034,8 +18072,6 @@ "Pe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -19052,8 +18088,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19085,7 +18119,6 @@ /area/surface/station/storage/tech) "Pj" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -19123,8 +18156,6 @@ /area/surface/station/vault) "Pn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19163,8 +18194,6 @@ "Ps" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -19178,8 +18207,6 @@ "Pu" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19225,8 +18252,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall, @@ -19239,8 +18264,6 @@ name = "Cargo automatic shutoff valve" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -19250,8 +18273,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -19259,8 +18280,6 @@ "PC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -19287,7 +18306,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -19327,7 +18345,6 @@ output_level = 150000 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -19417,8 +18434,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -19451,8 +18466,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -19474,7 +18487,6 @@ "PV" = ( /obj/structure/cable, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/firedoor/border_only, @@ -19490,8 +18502,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -19502,8 +18512,6 @@ /area/surface/station/rnd/hallway/bmt) "PY" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19576,8 +18584,6 @@ /area/surface/station/hallway/primary/bmt/west) "Qe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/portables_connector{ @@ -19648,8 +18654,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -19667,8 +18671,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_research{ @@ -19679,8 +18681,6 @@ /area/surface/station/rnd/mixing) "Qs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -19747,8 +18747,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/vault/bolted, @@ -19776,12 +18774,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -19894,8 +18889,6 @@ /area/surface/station/maintenance/substation/cargo/bmt) "QO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19914,8 +18907,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -19928,8 +18919,6 @@ "QQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -19945,8 +18934,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -19976,7 +18963,6 @@ /area/surface/station/mining_main/locker) "QV" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -20008,8 +18994,6 @@ /area/surface/outpost/research/xenoarcheology/entrance) "QX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -20020,8 +19004,6 @@ /area/surface/station/maintenance/engineering/north) "QY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -20041,8 +19023,6 @@ /area/surface/station/hallway/primary/bmt/south) "Rc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -20111,8 +19091,6 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/white, @@ -20137,7 +19115,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -20165,8 +19142,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated/dark, @@ -20179,11 +19154,9 @@ "Rp" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -20193,8 +19166,6 @@ "Rq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -20223,8 +19194,6 @@ /area/surface/station/rnd/toxins_launch) "Rt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -20251,8 +19220,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -20262,8 +19229,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -20283,8 +19248,6 @@ "RA" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -20306,8 +19269,6 @@ /area/surface/outpost/research/xenoarcheology/smes) "RD" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20400,8 +19361,6 @@ /area/surface/station/medical/hallway/bmt) "RO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -20433,8 +19392,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/brown/bordercorner2{ @@ -20460,8 +19417,6 @@ "RS" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/alarm{ @@ -20482,7 +19437,6 @@ /area/surface/station/hallway/primary/bmt/north) "RY" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -20510,8 +19464,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -20526,8 +19478,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -20558,8 +19508,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -20610,7 +19558,6 @@ /area/surface/outpost/research/xenoarcheology/exp_prep) "Si" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -20629,8 +19576,6 @@ /area/surface/station/maintenance/security) "Sj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -20662,8 +19607,6 @@ /area/surface/outpost/research/xenoarcheology/longtermstorage) "Sn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -20753,8 +19696,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20800,8 +19741,6 @@ /area/surface/cave/explored/normal) "SF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -20817,8 +19756,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -20970,7 +19907,6 @@ /area/surface/station/hallway/primary/bmt/west) "Td" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -20991,8 +19927,6 @@ "Te" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -21011,8 +19945,6 @@ }, /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -21021,8 +19953,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -21076,8 +20006,6 @@ name = "Hallway" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -21087,21 +20015,15 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/effect/catwalk_plated/white, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/standard, /obj/item/weapon/storage/box/gloves, /obj/item/weapon/storage/box/monkeycubes, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -21141,8 +20063,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -21152,8 +20072,6 @@ /area/surface/station/rnd/hallway/bmt) "TD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -21180,8 +20098,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -21191,8 +20107,6 @@ /area/surface/station/mining_main/locker) "TH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor, @@ -21226,8 +20140,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -21277,8 +20189,6 @@ }, /obj/effect/map_helper/airlock/door/int_door, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/access_button/airlock_interior{ @@ -21319,8 +20229,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -21341,8 +20249,6 @@ /area/surface/outpost/research/xenoarcheology/isolation_c) "Ub" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -21394,15 +20300,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/surface/station/maintenance/medical/south) "Ui" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -21423,8 +20326,6 @@ "Uj" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -21450,8 +20351,6 @@ /area/surface/station/hallway/primary/bmt/west) "Ul" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -21600,13 +20499,9 @@ /area/surface/station/maintenance/research/east) "UD" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21654,8 +20549,6 @@ req_one_access = list(32) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -21726,8 +20619,6 @@ /area/surface/outpost/research/xenoarcheology/anomaly) "UR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/tvalve/mirrored/bypass{ @@ -21819,8 +20710,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -21839,8 +20728,6 @@ "Vd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -21861,16 +20748,12 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/valve, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, /area/surface/station/maintenance/research/east) "Vg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -21884,7 +20767,6 @@ /area/surface/station/hallway/primary/bmt/west) "Vj" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -21906,8 +20788,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -21939,23 +20819,17 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/bmt/west) "Vp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -21976,8 +20850,6 @@ /area/surface/station/maintenance/weststairwell/bmt) "Vs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -22026,8 +20898,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -22092,8 +20962,6 @@ "VH" = ( /obj/machinery/space_heater, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22107,13 +20975,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated/dark, @@ -22151,8 +21015,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -22297,8 +21159,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -22315,8 +21175,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -22384,8 +21242,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/research{ @@ -22406,8 +21262,6 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/access_button/airlock_exterior{ @@ -22438,8 +21292,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -22480,8 +21332,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -22494,8 +21344,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner, @@ -22548,8 +21396,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -22646,18 +21492,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -22718,8 +21558,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -22736,8 +21574,6 @@ "WX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -22751,13 +21587,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -22829,13 +21661,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -22889,8 +21717,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -23000,8 +21826,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -23014,8 +21838,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -23063,8 +21885,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/medical{ @@ -23083,8 +21903,6 @@ /area/surface/station/maintenance/security) "XP" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -23134,8 +21952,6 @@ /area/surface/station/rnd/mixing) "XX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23157,8 +21973,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -23348,8 +22162,6 @@ }, /obj/effect/map_helper/airlock/sensor/ext_sensor, /obj/structure/cable/heavyduty{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -23361,8 +22173,6 @@ "Yv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -23416,8 +22226,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating/sif/planetuse{ @@ -23432,8 +22240,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -23486,8 +22292,6 @@ "YN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -23573,8 +22377,6 @@ req_one_access = list(5,12,47) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -23639,11 +22441,9 @@ "Zh" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -23653,8 +22453,6 @@ "Zi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -23682,8 +22480,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/heavyduty{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -23752,8 +22548,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -23779,7 +22573,6 @@ /obj/item/weapon/tool/crowbar, /obj/item/weapon/weldingtool, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -23795,13 +22588,9 @@ /area/surface/outpost/research/xenoarcheology/anomaly) "Zv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23834,13 +22623,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -23929,8 +22714,6 @@ /area/surface/station/construction/basement) "ZH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -23944,7 +22727,6 @@ /area/surface/station/mining_main) "ZI" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -23980,8 +22762,6 @@ /area/surface/station/maintenance/mining) "ZM" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -24023,8 +22803,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -24075,13 +22853,9 @@ /area/surface/station/maintenance/incinerator) "ZV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -24109,8 +22883,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille, @@ -24119,8 +22891,6 @@ /area/surface/station/hallway/primary/bmt/west/elevator) "ZY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, diff --git a/maps/cynosure/cynosure-2.dmm b/maps/cynosure/cynosure-2.dmm index f394aae906..e7a76e3758 100644 --- a/maps/cynosure/cynosure-2.dmm +++ b/maps/cynosure/cynosure-2.dmm @@ -60,8 +60,6 @@ /area/surface/station/security/detectives_office) "acv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -93,7 +91,6 @@ /obj/structure/grille, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced/polarized/full{ @@ -104,8 +101,6 @@ /area/surface/station/security/processing) "adA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -124,8 +119,6 @@ /area/surface/station/hallway/primary/groundfloor/north) "aeh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner, @@ -222,8 +215,6 @@ /area/surface/station/garage) "aie" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -241,7 +232,6 @@ /area/surface/station/arrivals/cynosure) "aif" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -433,7 +423,6 @@ id = "hop_office" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green, @@ -464,8 +453,6 @@ /area/surface/station/engineering/atmos) "aql" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/lino, @@ -475,8 +462,6 @@ /area/surface/outside/plains/station) "aqK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -502,8 +487,6 @@ "arT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -512,8 +495,6 @@ "asC" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -546,12 +527,9 @@ /area/surface/station/hydroponics) "ata" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/machinery/power/sensor{ @@ -577,8 +555,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -601,12 +577,9 @@ "aug" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/railing{ @@ -658,13 +631,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/airlock/command{ @@ -724,7 +693,6 @@ /area/surface/station/crew_quarters/heads/hop) "awB" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -782,8 +750,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -797,8 +763,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -929,8 +893,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, @@ -953,8 +915,6 @@ /area/surface/station/security/lobby) "aCy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -987,8 +947,6 @@ /area/surface/station/medical/etc) "aDc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1109,8 +1067,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1158,7 +1114,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -1205,8 +1160,6 @@ "aHe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -1243,8 +1196,6 @@ /area/surface/station/crew_quarters/caferestroom) "aHn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/requests_console{ @@ -1310,8 +1261,6 @@ req_one_access = list(11,24) }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -1343,8 +1292,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -1440,8 +1387,6 @@ "aLh" = ( /obj/structure/table/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/reagentgrinder, @@ -1526,8 +1471,6 @@ /area/surface/outside/river/gautelfr) "aOd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -1563,8 +1506,6 @@ req_one_access = list() }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1612,7 +1553,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 32; icon_state = "32-1" }, /turf/simulated/open, @@ -1700,8 +1640,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /turf/simulated/open, @@ -1711,8 +1649,6 @@ /area/surface/station/chapel/office) "aTx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -1798,13 +1734,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -1816,8 +1748,6 @@ "aUN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1854,8 +1784,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_medical{ @@ -1866,8 +1794,6 @@ /area/surface/station/medical/chemistry) "aVq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -1885,7 +1811,6 @@ "aVK" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -1931,8 +1856,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1992,13 +1915,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green, @@ -2057,8 +1976,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2101,8 +2018,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_medical{ @@ -2158,8 +2073,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -2224,8 +2137,6 @@ /area/surface/station/medical/reception) "bbT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -2284,8 +2195,6 @@ /area/surface/station/medical/etc) "bcQ" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -2295,8 +2204,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2342,8 +2249,6 @@ /area/surface/station/rnd/research_lockerroom) "bef" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2409,8 +2314,6 @@ /area/surface/station/engineering/atmos) "bgp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -2439,8 +2342,6 @@ /area/surface/station/crew_quarters/locker) "bgJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2471,11 +2372,9 @@ "bhG" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -2515,8 +2414,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/hologram/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/monofloor{ @@ -2564,7 +2461,6 @@ amount = 25 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal{ @@ -2577,13 +2473,9 @@ /area/shuttle/exploration/cargo) "bjZ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -2629,7 +2521,6 @@ /area/surface/station/security/detectives_office) "blm" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2665,7 +2556,6 @@ /area/surface/station/security/detectives_office/lab) "blU" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2746,8 +2636,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/green/border, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/neutral, @@ -2799,8 +2687,6 @@ /area/surface/station/hallway/primary/groundfloor/west/elevator) "bot" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2844,7 +2730,6 @@ "bpc" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/wingrille_spawn/reinforced, @@ -2889,8 +2774,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/table/steel, @@ -2934,13 +2817,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -3054,8 +2933,6 @@ /area/surface/station/rnd/exploration) "bsN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -3068,8 +2945,6 @@ /area/surface/station/maintenance/substation/security/gnd) "btp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3128,8 +3003,6 @@ /area/surface/station/rnd/exploration) "bvw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -3183,8 +3056,6 @@ /area/surface/station/park) "bwZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/corner/white/diagonal, @@ -3236,8 +3107,6 @@ /obj/effect/catwalk_plated/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -3255,11 +3124,9 @@ charge = 2e+006 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -3270,8 +3137,6 @@ /area/surface/station/ai/upload) "byE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -3297,13 +3162,9 @@ /area/surface/station/engineering/reactor_room) "bzr" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -3366,8 +3227,6 @@ /area/surface/station/security/interrogation) "bAK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3393,8 +3252,6 @@ "bBP" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -3427,7 +3284,6 @@ /area/surface/station/crew_quarters/kitchen) "bCF" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/tracker, @@ -3511,13 +3367,9 @@ /area/surface/station/engineering/workshop) "bDA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3684,8 +3536,6 @@ /area/surface/station/medical/etc) "bIK" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning, @@ -3738,8 +3588,6 @@ /area/surface/station/engineering/engineering_monitoring) "bKN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -3754,8 +3602,6 @@ /area/surface/station/engineering/hallway/reactor) "bLd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -3763,8 +3609,6 @@ /area/surface/station/crew_quarters/cafeteria) "bLu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -3817,8 +3661,6 @@ /area/surface/outside/plains/station) "bMs" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -3883,8 +3725,6 @@ /area/surface/station/security/range) "bNg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4071,13 +3911,9 @@ /area/surface/station/library) "bRZ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -4121,8 +3957,6 @@ /area/surface/station/quartermaster/storage) "bSR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -4152,8 +3986,6 @@ "bUr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -4199,8 +4031,6 @@ "bUZ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4226,8 +4056,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4261,7 +4089,6 @@ "bYm" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/wingrille_spawn/reinforced, @@ -4276,8 +4103,6 @@ /area/surface/station/rnd/xenobiology) "bYo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -4406,8 +4231,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -4419,13 +4242,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -4493,8 +4312,6 @@ /area/surface/outside/plains/plateau) "ccz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4567,8 +4384,6 @@ /area/surface/station/crew_quarters/gym) "cfy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -4583,8 +4398,6 @@ /area/surface/station/chapel/main) "cfH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4640,11 +4453,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -4666,8 +4477,6 @@ /area/surface/station/arrivals/cynosure) "chV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -4713,8 +4522,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -4755,7 +4562,6 @@ /area/shuttle/exploration/cargo) "ckG" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -4794,8 +4600,6 @@ /area/surface/station/maintenance/kitchen) "clv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -4821,8 +4625,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -4891,8 +4693,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4970,8 +4770,6 @@ "cqe" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass{ @@ -5099,8 +4897,6 @@ "cvv" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -5119,8 +4915,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/old_tile/gray, @@ -5190,8 +4984,6 @@ /area/surface/station/medical/etc) "cyO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -5250,13 +5042,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5310,8 +5098,6 @@ /area/surface/outside/plains/plateau) "cDl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5323,8 +5109,6 @@ "cDv" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5354,8 +5138,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "cDM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -5373,8 +5155,6 @@ /area/surface/station/chapel/main) "cEE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5392,8 +5172,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor/corner, @@ -5418,8 +5196,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -5487,8 +5263,6 @@ /area/surface/station/park) "cHm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -5525,8 +5299,6 @@ /area/surface/station/quartermaster/storage) "cIE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -5554,8 +5326,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -5602,8 +5372,6 @@ /area/surface/outpost/research/xenoarcheology/surface) "cJA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -5623,11 +5391,9 @@ /area/surface/station/crew_quarters/kitchen) "cJQ" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar_control/autostart{ @@ -5673,8 +5439,6 @@ /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/rust, @@ -5740,8 +5504,6 @@ /area/surface/station/rnd/xenobiology) "cLZ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -5802,8 +5564,6 @@ /area/surface/station/quartermaster/lockerroom) "cNt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -5859,7 +5619,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "cNX" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -5906,7 +5665,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -5999,8 +5757,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -6084,8 +5840,6 @@ /area/surface/station/engineering/workshop) "cTK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -6131,8 +5885,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/green/bordercorner2{ @@ -6152,8 +5904,6 @@ /area/surface/station/park) "cUk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6174,13 +5924,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -6206,16 +5952,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/surface/station/maintenance/kitchen) "cVc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -6247,8 +5989,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -6306,7 +6046,6 @@ }, /obj/structure/lattice, /obj/structure/cable{ - d1 = 32; icon_state = "32-1" }, /obj/machinery/door/firedoor/border_only, @@ -6346,8 +6085,6 @@ /area/surface/station/rnd/xenobiology) "cWu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6423,7 +6160,6 @@ /area/surface/outside/plains/station) "cXY" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -6459,13 +6195,9 @@ /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/blast/regular/open{ @@ -6485,8 +6217,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6548,7 +6278,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -6577,8 +6306,6 @@ /area/surface/station/arrivals/cynosure) "daE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6625,8 +6352,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -6736,13 +6461,9 @@ /area/surface/station/maintenance/north/gnd) "dfd" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -6756,7 +6477,6 @@ /area/surface/station/engineering/reactor_smes) "dff" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/terminal{ @@ -6802,8 +6522,6 @@ /area/surface/station/medical/reception) "dfk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor, @@ -6883,7 +6601,6 @@ dir = 9 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -6915,8 +6632,6 @@ /area/surface/station/engineering/reactor_room) "djO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7000,13 +6715,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -7118,14 +6829,10 @@ /area/surface/outpost/research/xenoarcheology/surface) "doq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor, @@ -7151,8 +6858,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -7270,8 +6975,6 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -7284,13 +6987,9 @@ /area/surface/station/security/briefing_room) "drL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7338,8 +7037,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7372,16 +7069,12 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, /area/surface/station/maintenance/kitchen) "dtm" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/dust, @@ -7404,16 +7097,12 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/ward) "due" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7429,8 +7118,6 @@ /area/surface/station/engineering/hallway/reactor) "dux" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7535,8 +7222,6 @@ /area/surface/station/maintenance/kitchen) "dyq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -7574,7 +7259,6 @@ /obj/structure/grille, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced/polarized/full{ @@ -7615,12 +7299,9 @@ anchored = 1 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -7630,13 +7311,9 @@ /area/surface/station/engineering/workshop) "dBJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/valve/shutoff{ @@ -7649,8 +7326,6 @@ /area/surface/station/maintenance/substation/engineering/gnd) "dBM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/old_tile/blue, @@ -7659,8 +7334,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7681,8 +7354,6 @@ /area/shuttle/large_escape_pod1/station) "dCe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7699,8 +7370,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7780,13 +7449,9 @@ /area/surface/station/rnd/xenobiology/xenoflora_isolation) "dDZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, @@ -7875,8 +7540,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals3, /obj/machinery/hologram/holopad, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -8029,7 +7692,6 @@ /area/surface/station/maintenance/surgery) "dKr" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/disposalpipe/segment, @@ -8075,19 +7737,13 @@ /area/surface/outside/plains/station) "dKO" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/rust, @@ -8223,8 +7879,6 @@ /area/surface/station/rnd/misc_lab) "dOT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm{ @@ -8264,8 +7918,6 @@ /area/surface/station/crew_quarters/pool) "dPw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8288,8 +7940,6 @@ /area/surface/station/hallway/primary/groundfloor/north) "dPG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -8343,8 +7993,6 @@ /area/surface/station/engineering/atmos) "dRM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8372,8 +8020,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ @@ -8432,8 +8078,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holosign/surgery{ @@ -8477,8 +8121,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/valve, @@ -8524,8 +8166,6 @@ /area/shuttle/exploration/cockpit) "dYT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8536,8 +8176,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8635,7 +8273,6 @@ /area/surface/station/medical/surgery2) "ecL" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -8669,8 +8306,6 @@ /area/surface/station/crew_quarters/heads/hop) "ecV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -8732,8 +8367,6 @@ /area/surface/station/security/detectives_office) "een" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -8791,13 +8424,9 @@ /area/surface/station/crew_quarters/heads/hop) "eeU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8823,8 +8452,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance{ @@ -8853,8 +8480,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -8934,8 +8559,6 @@ /area/surface/station/park) "eiB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, @@ -9030,7 +8653,6 @@ charge = 2e+006 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -9050,8 +8672,6 @@ /area/surface/station/engineering/engineering_monitoring) "ekV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -9111,8 +8731,6 @@ /area/surface/station/crew_quarters/heads/hos) "emw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -9181,8 +8799,6 @@ /area/surface/outside/plains/plateau) "eor" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -9194,8 +8810,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/hologram/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/monofloor{ @@ -9287,8 +8901,6 @@ /area/surface/station/hydroponics) "epW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9319,8 +8931,6 @@ /area/surface/station/library) "eqn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -9392,8 +9002,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -9496,7 +9104,6 @@ /area/surface/station/library) "eup" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9561,18 +9168,12 @@ /area/surface/station/hallway/primary/groundfloor/north) "evM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -9640,8 +9241,6 @@ /area/surface/station/rnd/xenobiology/xenoflora_isolation) "ewJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_external{ @@ -9729,13 +9328,9 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -9761,8 +9356,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -9785,8 +9378,6 @@ /area/surface/station/crew_quarters/gym) "eAR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -9834,7 +9425,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 32; icon_state = "32-1" }, /obj/structure/disposalpipe/down{ @@ -9846,8 +9436,6 @@ /area/surface/station/maintenance/substation/research/gnd) "eBu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -9897,8 +9485,6 @@ /area/surface/station/rnd/research_lockerroom) "eCt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -9922,8 +9508,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -9944,8 +9528,6 @@ /area/surface/station/rnd/xenobiology/xenoflora) "eCH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -10007,8 +9589,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -10054,7 +9634,6 @@ pixel_y = 12 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/item/device/radio/intercom/department/medbay{ @@ -10091,13 +9670,9 @@ /area/surface/station/quartermaster/delivery) "eFU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10111,8 +9686,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "eGc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -10160,8 +9733,6 @@ "eHI" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/southright, @@ -10213,8 +9784,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -10242,14 +9811,11 @@ /area/surface/outside/plains/station) "eJC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/sensor{ @@ -10272,8 +9838,6 @@ /area/surface/station/arrivals/cynosure) "eJU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -10290,8 +9854,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -10341,8 +9903,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -10400,13 +9960,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/window/reinforced, @@ -10479,7 +10035,6 @@ /area/surface/station/maintenance/east/gnd) "eOD" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -10487,7 +10042,6 @@ /area/surface/outside/station/solar/northeastsolar) "eOE" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -10563,8 +10117,6 @@ /area/surface/station/quartermaster/storage) "eQB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -10643,8 +10195,6 @@ /area/surface/outside/plains/plateau) "eSh" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7, @@ -10701,8 +10251,6 @@ req_one_access = list(10,24) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -10826,8 +10374,6 @@ /area/surface/station/janitor) "eUX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -10847,8 +10393,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/showcase{ @@ -10869,8 +10413,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -10958,8 +10500,6 @@ /area/surface/outside/plains/plateau) "eXO" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/engi{ @@ -10984,8 +10524,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -11033,8 +10571,6 @@ /area/surface/station/security/lobby) "eYt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11079,8 +10615,6 @@ /area/surface/station/engineering/reactor_room) "faB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -11144,8 +10678,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -11159,8 +10691,6 @@ /area/surface/station/medical/storage/primary_storage) "fbA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/dust, @@ -11181,8 +10711,6 @@ "fcm" = ( /obj/effect/catwalk_plated/dark, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11203,8 +10731,6 @@ /area/surface/station/rnd/hallway/gnd) "fdd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor, @@ -11213,8 +10739,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -11271,13 +10795,9 @@ /area/surface/station/engineering/atmos) "feS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -11301,8 +10821,6 @@ /area/surface/station/rnd/xenobiology/xenoflora_isolation) "fgg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/closet/emcloset, @@ -11343,8 +10861,6 @@ /area/surface/station/engineering/atmos) "fgW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11365,8 +10881,6 @@ "fhL" = ( /obj/machinery/light, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -11379,8 +10893,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -11401,8 +10913,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -11476,11 +10986,9 @@ /area/surface/outside/plains/station) "fja" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/outline/yellow, @@ -11518,8 +11026,6 @@ /area/surface/station/library) "fku" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -11532,8 +11038,6 @@ /area/surface/station/rnd/xenobiology) "fkX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -11555,8 +11059,6 @@ /area/surface/station/engineering/hallway/reactor) "flA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -11591,8 +11093,6 @@ /area/surface/station/engineering/atmos) "flO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -11628,8 +11128,6 @@ /area/surface/station/security/detectives_office/lab) "fmd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -11653,8 +11151,6 @@ /area/surface/station/medical/storage/primary_storage) "fmF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11691,8 +11187,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/intercom{ @@ -11751,13 +11245,9 @@ /area/surface/station/medical/surgeryobs) "fom" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -11819,8 +11309,6 @@ /area/surface/station/rnd/misc_lab) "fqw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/dust, @@ -11840,18 +11328,12 @@ /area/surface/outside/plains/station) "fqU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -11861,8 +11343,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -11873,8 +11353,6 @@ /area/surface/station/maintenance/kitchen) "fsk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -11892,15 +11370,11 @@ /area/surface/station/crew_quarters/locker) "fsL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated/white, @@ -11975,8 +11449,6 @@ /area/surface/station/maintenance/chapel) "fuU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating/sif/planetuse, @@ -11990,8 +11462,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -12004,8 +11474,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12040,8 +11508,6 @@ /area/surface/station/crew_quarters/pool) "fxa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -12070,7 +11536,6 @@ /area/surface/outside/path/plains) "fyx" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -12132,8 +11597,6 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/l3closet/scientist, @@ -12181,8 +11644,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner2, @@ -12204,8 +11665,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/paleblue{ @@ -12247,8 +11706,6 @@ /area/surface/station/engineering/atmos) "fBS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -12259,8 +11716,6 @@ /area/surface/station/security/lobby) "fCf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12353,8 +11808,6 @@ "fEk" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12368,8 +11821,6 @@ /area/surface/station/maintenance/substation/security/gnd) "fEv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -12471,8 +11922,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -12505,8 +11954,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "fGS" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -12776,8 +12223,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -12820,7 +12265,6 @@ "fOl" = ( /obj/structure/table/wooden_reinforced, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -12862,13 +12306,9 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12922,8 +12362,6 @@ /area/surface/station/hallway/primary/groundfloor/west/elevator) "fRm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -12959,13 +12397,9 @@ /area/surface/station/ai/upload) "fRK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13001,8 +12435,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/meter, @@ -13010,7 +12442,6 @@ /area/surface/station/engineering/atmos) "fTi" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -13082,8 +12513,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -13094,8 +12523,6 @@ /area/surface/station/medical/hallway/gnd) "fWO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -13158,7 +12585,6 @@ anchored = 1 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -13174,8 +12600,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -13204,7 +12628,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "fZu" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -13271,8 +12694,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13291,11 +12712,9 @@ /area/surface/station/hallway/primary/groundfloor/east) "gci" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -13396,13 +12815,9 @@ /area/surface/station/medical/surgery_storage) "geK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -13422,8 +12837,6 @@ /area/surface/station/engineering/atmos) "gfI" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -13431,8 +12844,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/hologram/holopad, @@ -13475,8 +12886,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -13505,8 +12914,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/medical{ @@ -13647,8 +13054,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/paleblue{ @@ -13694,7 +13099,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/wingrille_spawn/reinforced, @@ -13717,8 +13121,6 @@ /area/surface/station/quartermaster/storage) "goq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning, @@ -13754,8 +13156,6 @@ /area/surface/station/rnd/hallway/stairwell) "goF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -13996,8 +13396,6 @@ /area/surface/station/hydroponics) "guY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -14115,12 +13513,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -14141,8 +13536,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "gxe" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -14162,8 +13555,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -14180,8 +13571,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14191,7 +13580,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -14213,8 +13601,6 @@ "gzp" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -14253,8 +13639,6 @@ /area/shuttle/exploration/cargo) "gAK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -14352,8 +13736,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -14401,8 +13783,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -14479,8 +13859,6 @@ /area/surface/station/crew_quarters/heads/hop) "gDR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -14578,13 +13956,9 @@ /area/surface/station/medical/surgery2) "gFv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, @@ -14644,8 +14018,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -14669,8 +14041,6 @@ /area/surface/station/engineering/reactor_waste) "gHX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -14746,8 +14116,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "gIT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -14766,13 +14134,9 @@ /area/surface/station/park) "gJo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -14806,8 +14170,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -14857,8 +14219,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_medical{ @@ -14873,11 +14233,9 @@ charge = 2e+006 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -14926,8 +14284,6 @@ /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/firealarm{ @@ -14938,8 +14294,6 @@ /area/surface/station/maintenance/substation/security/gnd) "gNF" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/grille, @@ -14965,8 +14319,6 @@ /area/surface/outside/river/gautelfr) "gNR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14995,13 +14347,9 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15017,8 +14365,6 @@ /area/surface/station/engineering/engineering_monitoring) "gOl" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -15069,7 +14415,6 @@ /area/surface/station/medical/etc) "gQG" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15128,8 +14473,6 @@ "gSf" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15142,8 +14485,6 @@ /area/surface/station/chapel/main) "gSx" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -15204,8 +14545,6 @@ "gTA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet, @@ -15264,13 +14603,9 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "gUP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -15371,7 +14706,6 @@ input_attempt = 1 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -15400,7 +14734,6 @@ "gXY" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/wingrille_spawn/reinforced, @@ -15417,8 +14750,6 @@ /obj/structure/table/reinforced, /obj/machinery/reagentgrinder, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -15484,8 +14815,6 @@ "had" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/stack/material/phoron{ @@ -15573,13 +14902,9 @@ /area/surface/station/maintenance/kitchen) "hdD" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -15600,8 +14925,6 @@ "hdR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -15678,8 +15001,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -15743,8 +15064,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -15760,7 +15079,6 @@ /area/surface/station/medical/hallway/gnd) "hjp" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/effect/catwalk_plated/dark, @@ -15849,13 +15167,9 @@ /area/surface/station/ai/upload_foyer) "hlP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -15888,8 +15202,6 @@ /area/surface/station/arrivals/cynosure) "hny" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -15930,8 +15242,6 @@ }, /obj/structure/railing, /obj/structure/cable/green{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /obj/structure/disposalpipe/down, @@ -15961,8 +15271,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -15975,7 +15283,6 @@ /area/surface/station/medical/cloning) "hpC" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -16018,8 +15325,6 @@ /area/surface/station/engineering/atmos) "hqG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16062,8 +15367,6 @@ /area/surface/station/engineering/reactor_room) "hrv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16101,8 +15404,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -16159,8 +15460,6 @@ /area/surface/station/ai/upload_foyer) "htw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16248,8 +15547,6 @@ /area/surface/station/maintenance/solars/west) "hwm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -16291,8 +15588,6 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -16342,8 +15637,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16352,7 +15645,6 @@ /area/surface/station/security/hallway/gnd) "hzh" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -16404,8 +15696,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/firealarm{ @@ -16421,8 +15711,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -16471,7 +15759,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/window/reinforced/polarized/full{ @@ -16481,8 +15768,6 @@ /area/surface/station/security/processing) "hCv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16502,7 +15787,6 @@ /area/surface/station/arrivals/cynosure) "hCV" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -16519,8 +15803,6 @@ "hDm" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16530,8 +15812,6 @@ /area/surface/station/engineering/reactor_room) "hDr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -16622,7 +15902,6 @@ pixel_x = -24 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light_switch{ @@ -16661,8 +15940,6 @@ /area/surface/station/rnd/xenobiology) "hFI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -16686,8 +15963,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -16695,8 +15970,6 @@ "hGu" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16710,8 +15983,6 @@ /area/surface/station/maintenance/substation/medbay/gnd) "hGV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -16742,8 +16013,6 @@ /area/surface/station/engineering/reactor_room) "hHU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16759,8 +16028,6 @@ /area/surface/station/security/hallway/gnd) "hId" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -16777,8 +16044,6 @@ /area/surface/station/maintenance/solars/northeast) "hIG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16829,8 +16094,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -16856,8 +16119,6 @@ /area/surface/station/quartermaster/storage) "hLI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -16990,8 +16251,6 @@ /area/surface/station/medical/hallway/gnd) "hOq" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor{ @@ -17045,7 +16304,6 @@ "hPW" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -17057,8 +16315,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -17093,8 +16349,6 @@ /area/surface/station/security/interrogation) "hRr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17139,8 +16393,6 @@ /area/surface/outside/plains/station) "hSO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17150,8 +16402,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -17180,8 +16430,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/ground_floor{ @@ -17253,8 +16501,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -17270,8 +16516,6 @@ /area/surface/station/crew_quarters/heads/hop) "hWg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/zone_divider, @@ -17508,8 +16752,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/overlay/snow/floor, @@ -17527,13 +16769,9 @@ /area/surface/outside/plains/station) "idR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17548,8 +16786,6 @@ }, /obj/effect/catwalk_plated/dark, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -17605,8 +16841,6 @@ /area/surface/station/crew_quarters/gym) "ifG" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -17732,8 +16966,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, @@ -17760,8 +16992,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -17871,7 +17101,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "ion" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -17899,13 +17128,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated, @@ -17931,8 +17156,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "iph" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -17975,8 +17198,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -17995,8 +17216,6 @@ /area/surface/outside/plains/station) "iro" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -18051,8 +17270,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -18211,8 +17428,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -18244,8 +17459,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/medical{ @@ -18289,8 +17502,6 @@ /area/surface/station/rnd/hallway/gnd) "ixB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -18480,8 +17691,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -18524,13 +17733,9 @@ /area/surface/station/rnd/misc_lab) "iGD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/binary/passive_gate{ @@ -18631,8 +17836,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, @@ -18681,13 +17884,9 @@ /area/shuttle/exploration/general) "iKi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18727,8 +17926,6 @@ /area/surface/station/arrivals/cynosure) "iLa" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -18745,7 +17942,6 @@ /area/surface/station/security/processing) "iLk" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -18785,8 +17981,6 @@ /area/surface/station/quartermaster/storage) "iMc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button/airlock_exterior{ @@ -18820,8 +18014,6 @@ /area/surface/station/crew_quarters/bar) "iMJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18856,8 +18048,6 @@ /area/surface/station/hallway/primary/groundfloor/north) "iNR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18873,7 +18063,6 @@ /area/surface/station/maintenance/substation/engineering/gnd) "iNX" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating/sif/planetuse, @@ -18902,16 +18091,12 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/neutral, /area/surface/station/security/restroom) "iPu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -18991,8 +18176,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -19028,8 +18211,6 @@ /area/surface/station/engineering/atmos) "iTi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -19067,8 +18248,6 @@ /area/surface/outpost/research/xenoarcheology/surface) "iTH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19188,8 +18367,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/navbeacon/patrol{ @@ -19226,8 +18403,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -19235,8 +18410,6 @@ "iWy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -19282,8 +18455,6 @@ "iZQ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/multi_tile/glass{ @@ -19411,8 +18582,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ @@ -19460,8 +18629,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -19475,7 +18642,6 @@ /area/surface/station/crew_quarters/pool) "jeS" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -19512,8 +18678,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -19528,8 +18692,6 @@ "jgc" = ( /obj/structure/table/wooden_reinforced, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/lino, @@ -19629,13 +18791,9 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated, @@ -19687,18 +18845,12 @@ /area/surface/station/library) "jkY" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -19714,7 +18866,6 @@ name = "West Solar Control" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -19724,8 +18875,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -19750,13 +18899,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -19770,8 +18915,6 @@ /area/surface/station/medical/emt_bay) "jlN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19804,7 +18947,6 @@ /obj/structure/grille, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced/full, @@ -19886,8 +19028,6 @@ /area/surface/station/chapel/main) "jpl" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -19924,8 +19064,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -20086,8 +19224,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/alarm{ @@ -20154,8 +19290,6 @@ /area/surface/station/engineering/hallway) "jwF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -20207,17 +19341,12 @@ /area/surface/station/engineering/reactor_room) "jxK" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/power/apc{ @@ -20277,8 +19406,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -20327,13 +19454,9 @@ }, /obj/structure/lattice, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/structure/railing{ @@ -20387,13 +19510,9 @@ /area/surface/station/maintenance/east/gnd) "jCb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -20510,13 +19629,9 @@ /area/surface/station/engineering/reactor_room) "jEx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20578,12 +19693,9 @@ /area/surface/station/maintenance/east/gnd) "jFP" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -20648,8 +19760,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -20720,8 +19830,6 @@ }, /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monofloor{ @@ -20739,13 +19847,9 @@ /area/surface/station/ai/upload) "jLC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -20806,8 +19910,6 @@ /area/surface/station/rnd/xenobiology) "jNq" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/sink/kitchen{ @@ -20828,8 +19930,6 @@ /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/green/bordercorner, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -20854,8 +19954,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -20938,8 +20036,6 @@ name = "Primary Tool Storage" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -21059,8 +20155,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_centcom{ @@ -21294,8 +20388,6 @@ /area/surface/station/quartermaster/storage) "jTW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21344,8 +20436,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -21357,8 +20447,6 @@ /area/surface/station/hydroponics) "jVx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21404,8 +20492,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -21419,8 +20505,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -21542,8 +20626,6 @@ /area/surface/station/maintenance/surgery) "jYx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21576,8 +20658,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -21606,8 +20686,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -21663,8 +20741,6 @@ /area/surface/station/chapel/office) "kbA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -21677,8 +20753,6 @@ /area/surface/station/rnd/xenobiology) "kbU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -21694,8 +20768,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_mining{ @@ -21722,8 +20794,6 @@ /area/shuttle/exploration/cargo) "kcj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -21767,13 +20837,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -21808,8 +20874,6 @@ req_one_access = list(43) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -21836,8 +20900,6 @@ /area/surface/station/park) "kdH" = ( /obj/structure/cable{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /obj/machinery/atmospherics/pipe/zpipe/down/supply, @@ -21878,12 +20940,9 @@ /area/surface/station/arrivals/cynosure) "keP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/sensor{ @@ -21924,7 +20983,6 @@ /area/surface/station/crew_quarters/locker) "kgJ" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -21952,8 +21010,6 @@ /area/surface/station/engineering/reactor_waste) "kgL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -22024,8 +21080,6 @@ /area/surface/station/engineering/atmos) "khK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -22044,8 +21098,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -22059,7 +21111,6 @@ "kir" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/wingrille_spawn/reinforced, @@ -22106,8 +21157,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/atmos{ @@ -22137,8 +21186,6 @@ "kjy" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ @@ -22158,8 +21205,6 @@ /area/surface/outside/plains/station) "kko" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -22241,8 +21286,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -22263,16 +21306,12 @@ /area/surface/station/park) "kmw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated, @@ -22310,8 +21349,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -22368,7 +21405,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/terminal{ @@ -22389,8 +21425,6 @@ /area/surface/station/medical/storage/primary_storage) "kqa" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -22470,7 +21504,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/wingrille_spawn/reinforced, @@ -22528,7 +21561,6 @@ "kuP" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -22557,8 +21589,6 @@ /area/surface/station/hallway/primary/groundfloor/west/elevator) "kvF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22748,8 +21778,6 @@ /area/surface/station/hallway/primary/groundfloor/west/elevator) "kAo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22884,15 +21912,11 @@ /area/surface/station/crew_quarters/kitchen) "kCU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/monotile, @@ -22913,8 +21937,6 @@ /area/surface/station/storage/primarytool) "kDz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22931,8 +21953,6 @@ /area/surface/station/rnd/research_restroom) "kDA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/valve/digital, @@ -22961,8 +21981,6 @@ /area/surface/outpost/research/xenoarcheology/surface) "kEk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -22999,13 +22017,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/monotile, @@ -23141,8 +22155,6 @@ /area/surface/station/chapel/office) "kHv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/airlock_sensor/airlock_interior{ @@ -23156,8 +22168,6 @@ /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/effect/catwalk_plated/dark, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -23175,13 +22185,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, @@ -23220,8 +22226,6 @@ "kJx" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23250,8 +22254,6 @@ /area/surface/station/engineering/atmos) "kKH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -23275,7 +22277,6 @@ /area/surface/station/crew_quarters/cafeteria) "kKX" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -23387,7 +22388,6 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -23510,8 +22510,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "kRp" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/zone_divider, @@ -23560,7 +22558,6 @@ /area/surface/station/security/briefing_room) "kSp" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/terminal, @@ -23599,8 +22596,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -23688,8 +22683,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -23761,8 +22754,6 @@ }, /obj/effect/catwalk_plated, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -23869,8 +22860,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -23890,8 +22879,6 @@ /area/surface/station/crew_quarters/pool) "lbR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -23908,8 +22895,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "lcr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -23937,8 +22922,6 @@ /area/surface/station/medical/etc) "lda" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -24008,8 +22991,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -24040,8 +23021,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -24084,21 +23063,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, /area/surface/station/engineering/reactor_waste) "lgG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -24127,19 +23100,13 @@ /area/surface/station/engineering/foyer) "lhB" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating/sif/planetuse, @@ -24188,8 +23155,6 @@ /area/surface/station/medical/cloning) "liB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -24333,13 +23298,9 @@ /area/surface/station/rnd/xenobiology/xenoflora_isolation) "lmX" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -24417,8 +23378,6 @@ "lpT" = ( /obj/machinery/atmospherics/valve/open, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24442,11 +23401,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -24459,8 +23416,6 @@ /area/surface/station/crew_quarters/locker) "lqc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -24509,8 +23464,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_security{ @@ -24520,8 +23473,6 @@ /area/surface/station/security/equiptment_storage/ses) "lrA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -24583,8 +23534,6 @@ /area/surface/station/rnd/xenobiology) "lsR" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -24648,8 +23597,6 @@ /area/surface/station/medical/chemistry) "ltz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain, @@ -24673,13 +23620,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -24791,8 +23734,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/firealarm{ @@ -24821,8 +23762,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -24839,8 +23778,6 @@ /area/shuttle/large_escape_pod1/station) "lyg" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorwhite, @@ -24871,8 +23808,6 @@ "lze" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -24997,8 +23932,6 @@ /area/surface/station/engineering/foyer) "lBQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/binary/passive_gate{ @@ -25006,8 +23939,6 @@ unlocked = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -25085,8 +24016,6 @@ /area/surface/station/maintenance/atmos) "lEH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25115,8 +24044,6 @@ name = "Hallway" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/directions/security{ @@ -25193,8 +24120,6 @@ /area/surface/station/hallway/primary/groundfloor/north) "lGV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -25228,7 +24153,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/techfloor/hole{ @@ -25256,7 +24180,6 @@ /area/surface/station/engineering/hallway) "lIs" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -25303,8 +24226,6 @@ /area/surface/station/ai/cyborg_station) "lIW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -25367,13 +24288,9 @@ /area/surface/station/hallway/primary/groundfloor/west) "lLe" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -25407,12 +24324,9 @@ /area/surface/station/medical/surgery_storage) "lLA" = ( /obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, @@ -25446,8 +24360,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/security{ @@ -25470,25 +24382,18 @@ dir = 5 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/old_cargo/gray, /area/shuttle/exploration/general) "lMj" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -25605,8 +24510,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -25654,8 +24557,6 @@ /area/surface/station/maintenance/east/gnd) "lQK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -25670,8 +24571,6 @@ /area/surface/station/maintenance/substation/engineering/gnd) "lQO" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -25744,8 +24643,6 @@ "lSf" = ( /obj/structure/table/wooden_reinforced, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25767,8 +24664,6 @@ /area/surface/station/engineering/storage) "lTz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -25933,8 +24828,6 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/cyan, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -25969,8 +24862,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "lWt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning, @@ -26024,7 +24915,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -26049,8 +24939,6 @@ "lYI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -26079,8 +24967,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "lZf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -26099,8 +24985,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_security{ @@ -26165,8 +25049,6 @@ /area/surface/station/engineering/atmos) "mam" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26175,7 +25057,6 @@ /area/surface/station/maintenance/east/gnd) "maC" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -26244,7 +25125,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central7, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techmaint, @@ -26283,8 +25163,6 @@ /area/surface/station/quartermaster/delivery) "mct" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26340,8 +25218,6 @@ /area/surface/station/engineering/foyer) "mdC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -26404,8 +25280,6 @@ /area/surface/station/medical/cloning) "mfj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/zone_divider, @@ -26440,8 +25314,6 @@ /area/surface/station/library) "mgA" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -26476,8 +25348,6 @@ /area/surface/station/arrivals/cynosure) "mhn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26495,15 +25365,12 @@ "mhz" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/sif/planetuse, /area/surface/outside/station/solar/northeastsolar) "miy" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/power/apc{ @@ -26512,7 +25379,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/item/weapon/paper{ @@ -26532,8 +25398,6 @@ /area/surface/station/engineering/atmos) "miC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -26559,7 +25423,6 @@ /area/surface/station/hallway/primary/groundfloor/east) "miV" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -26605,18 +25468,12 @@ /area/surface/station/medical/cloning) "mjM" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -26652,8 +25509,6 @@ /area/surface/station/library) "mka" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -26780,8 +25635,6 @@ /area/surface/station/maintenance/substation/medbay/gnd) "moa" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -26869,7 +25722,6 @@ pixel_y = 12 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/mirror{ @@ -26882,7 +25734,6 @@ /area/surface/station/security/restroom) "mqb" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -26931,8 +25782,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -27006,13 +25855,9 @@ /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/blast/regular/open{ @@ -27083,8 +25928,6 @@ /area/surface/station/medical/storage/primary_storage) "msY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -27128,8 +25971,6 @@ /area/surface/station/garage) "mtU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27141,8 +25982,6 @@ "mtW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -27155,8 +25994,6 @@ /area/surface/station/park) "muj" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning, @@ -27170,8 +26007,6 @@ }, /obj/effect/catwalk_plated/dark, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -27184,8 +26019,6 @@ "muD" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/window/brigdoor/southleft, @@ -27200,13 +26033,9 @@ /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/blast/regular/open{ @@ -27296,8 +26125,6 @@ /area/surface/station/library) "myn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27335,8 +26162,6 @@ /area/surface/station/maintenance/substation/medbay/gnd) "mzr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27346,8 +26171,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -27436,8 +26259,6 @@ /area/surface/station/arrivals/cynosure/nopower) "mAO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -27461,8 +26282,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -27506,8 +26325,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -27568,8 +26385,6 @@ /area/shuttle/exploration/cargo) "mCq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -27577,8 +26392,6 @@ /area/surface/outside/station/solar/westsolar) "mCR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27612,8 +26425,6 @@ /area/surface/station/medical/etc) "mEG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27630,7 +26441,6 @@ pixel_y = -24 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light_switch{ @@ -27683,8 +26493,6 @@ /area/surface/outside/plains/plateau) "mGf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27734,8 +26542,6 @@ /area/surface/station/rnd/hallway/gnd) "mHN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/map_helper/airlock/door/ext_door, @@ -27798,8 +26604,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -27822,8 +26626,6 @@ /area/surface/outside/plains/station) "mKn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -27838,8 +26640,6 @@ /obj/effect/catwalk_plated/dark, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/rust, @@ -27863,8 +26663,6 @@ /area/surface/station/security/detectives_office) "mLH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating/sif/planetuse, @@ -27918,8 +26716,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -28051,7 +26847,6 @@ "mQc" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/wingrille_spawn/reinforced, @@ -28091,8 +26886,6 @@ /area/surface/outside/plains/plateau) "mQx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -28127,8 +26920,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/warning/full, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -28182,8 +26973,6 @@ /area/surface/station/hallway/primary/groundfloor/north) "mRC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -28193,8 +26982,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -28202,8 +26989,6 @@ /area/surface/station/medical/etc) "mRF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28321,8 +27106,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -28335,8 +27118,6 @@ /area/surface/station/security/detectives_office) "mUg" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -28349,8 +27130,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -28366,8 +27145,6 @@ /area/surface/station/engineering/hallway) "mUu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -28444,7 +27221,6 @@ /area/surface/station/crew_quarters/heads/hop) "mVA" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -28502,8 +27278,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -28552,8 +27326,6 @@ /area/surface/station/crew_quarters/cafeteria) "mYc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -28734,8 +27506,6 @@ /area/surface/outside/station/reactorpond) "ncO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -28786,8 +27556,6 @@ /area/surface/station/medical/hallway/gnd) "neE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -28860,8 +27628,6 @@ /area/surface/station/crew_quarters/gym) "nhb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -28910,7 +27676,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green, @@ -28991,8 +27756,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29021,7 +27784,6 @@ /area/surface/station/ai/upload) "nkw" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -29062,8 +27824,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -29115,8 +27875,6 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/gun/energy/taser/xeno, @@ -29171,8 +27929,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -29201,8 +27957,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -29214,8 +27968,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -29302,8 +28054,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_medical{ @@ -29398,8 +28148,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -29445,8 +28193,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -29462,7 +28208,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "nxZ" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -29518,8 +28263,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "nyF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29567,8 +28310,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29599,8 +28340,6 @@ /area/surface/station/engineering/atmos) "nAV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -29620,7 +28359,6 @@ state = 2 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -29633,8 +28371,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -29642,8 +28378,6 @@ /area/surface/station/maintenance/kitchen) "nBx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating/sif/planetuse, @@ -29723,8 +28457,6 @@ /area/surface/station/engineering/atmos) "nEd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor, @@ -29812,8 +28544,6 @@ /area/surface/station/medical/chemistry) "nFJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -29887,8 +28617,6 @@ /area/surface/station/hydroponics) "nIl" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29951,16 +28679,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, /area/surface/station/rnd/xenobiology/xenoflora_isolation) "nJg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -29987,8 +28711,6 @@ /area/surface/station/rnd/hallway/gnd) "nJA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30015,13 +28737,9 @@ /area/surface/station/engineering/foyer) "nKj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor, @@ -30100,13 +28818,9 @@ /area/surface/station/engineering/atmos) "nLR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/sortjunction/flipped{ @@ -30144,8 +28858,6 @@ /area/surface/station/ai/upload) "nMs" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -30160,8 +28872,6 @@ /area/surface/outside/plains/station) "nMJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30196,7 +28906,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -30336,7 +29045,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -30373,13 +29081,9 @@ /area/surface/station/medical/etc) "nRf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -30468,8 +29172,6 @@ /area/surface/station/medical/reception) "nSE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -30507,8 +29209,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -30528,8 +29228,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -30538,13 +29236,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -30562,8 +29256,6 @@ req_access = list(1) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -30577,8 +29269,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -30611,13 +29301,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/requests_console{ @@ -30666,8 +29352,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -30683,8 +29367,6 @@ /area/surface/station/crew_quarters/pool) "nZk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30751,8 +29433,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/railing{ @@ -30809,8 +29489,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -30863,11 +29541,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -30923,8 +29599,6 @@ "oeb" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/command{ @@ -30941,8 +29615,6 @@ /area/surface/station/crew_quarters/kitchen) "oeu" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30996,8 +29668,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -31101,8 +29771,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31119,8 +29787,6 @@ /area/surface/station/security/briefing_room) "oiv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31149,8 +29815,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "oiM" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/ladder, @@ -31180,8 +29844,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -31251,8 +29913,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -31294,8 +29954,6 @@ /area/surface/station/security/lockerroom) "onz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31424,8 +30082,6 @@ /area/surface/station/park) "ooQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -31478,7 +30134,6 @@ dir = 10 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -31500,12 +30155,9 @@ "oqv" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/railing, @@ -31525,7 +30177,6 @@ /area/surface/station/maintenance/substation/civilian) "oqL" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -31548,8 +30199,6 @@ /area/surface/station/security/detectives_office/lab) "orb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -31619,8 +30268,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "osf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31692,8 +30339,6 @@ /area/surface/station/engineering/workshop) "otw" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -31727,8 +30372,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "otF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -31754,8 +30397,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -31787,8 +30428,6 @@ /area/surface/station/crew_quarters/bar) "ovl" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/portables_connector, @@ -31895,11 +30534,9 @@ "owJ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -31996,8 +30633,6 @@ /area/surface/station/rnd/research_restroom) "oyP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -32035,8 +30670,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -32084,13 +30717,9 @@ /area/surface/station/engineering/storage) "oBt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -32130,8 +30759,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -32238,8 +30865,6 @@ /area/surface/station/rnd/xenobiology/xenoflora) "oEe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -32282,8 +30907,6 @@ /area/surface/station/engineering/reactor_room) "oFQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32325,8 +30948,6 @@ /area/surface/station/hydroponics) "oGY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/firealarm{ @@ -32362,8 +30983,6 @@ /area/surface/station/medical/emt_bay) "oHR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -32374,8 +30993,6 @@ /area/surface/station/ai/cyborg_station) "oIf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular/open{ @@ -32399,8 +31016,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated, @@ -32444,7 +31059,6 @@ /area/surface/station/security/hallway/gnd) "oKx" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/terminal{ @@ -32515,8 +31129,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -32563,7 +31175,6 @@ id = "hop_office" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -32611,8 +31222,6 @@ /area/surface/station/medical/chemistry) "oOy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -32690,8 +31299,6 @@ /area/surface/station/janitor) "oQg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/navbeacon/patrol{ @@ -32723,8 +31330,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/monotile, @@ -32747,8 +31352,6 @@ /area/surface/station/engineering/hallway/reactor) "oSo" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -32804,7 +31407,6 @@ /area/surface/station/arrivals/cynosure) "oTb" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -32893,8 +31495,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -32968,7 +31568,6 @@ "oVm" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/full, @@ -33033,8 +31632,6 @@ "oWm" = ( /obj/machinery/disposal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/trunk{ @@ -33065,8 +31662,6 @@ /area/surface/station/crew_quarters/bar) "oWn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -33102,8 +31697,6 @@ /area/surface/station/park) "oWO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -33170,8 +31763,6 @@ /area/shuttle/exploration/general) "oYk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -33238,13 +31829,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/power/apc{ @@ -33257,7 +31844,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/catwalk_plated/dark, @@ -33304,8 +31890,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -33325,8 +31909,6 @@ /area/surface/station/quartermaster/lockerroom) "paX" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -33339,13 +31921,9 @@ /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/blast/regular/open{ @@ -33388,14 +31966,10 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -33434,8 +32008,6 @@ /area/surface/station/hydroponics/garden) "pdU" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor/corner{ @@ -33481,8 +32053,6 @@ "peN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -33525,13 +32095,9 @@ /area/surface/station/security/hallway/gnd) "pfk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33572,8 +32138,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -33616,8 +32180,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "phs" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -33639,8 +32201,6 @@ /area/surface/station/engineering/storage) "phS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33651,8 +32211,6 @@ /area/surface/station/maintenance/kitchen) "phY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -33717,8 +32275,6 @@ /area/surface/station/engineering/atmos) "pkr" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33793,16 +32349,12 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/security/briefing_room) "plv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -33857,13 +32409,9 @@ /area/surface/station/crew_quarters/pool) "pmx" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -33971,8 +32519,6 @@ /area/surface/station/security/evidence_storage) "poU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -34030,8 +32576,6 @@ /area/surface/station/engineering/atmos) "ppH" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -34049,8 +32593,6 @@ /area/surface/station/engineering/reactor_airlock) "ppL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/corner_steel_grid{ @@ -34138,8 +32680,6 @@ /area/surface/outside/plains/station) "pqY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -34152,8 +32692,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light/small, @@ -34190,11 +32728,9 @@ charge = 2e+006 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -34203,13 +32739,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -34300,11 +32832,9 @@ "ptQ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -34319,8 +32849,6 @@ /area/surface/outpost/research/xenoarcheology/surface) "pun" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated, @@ -34366,7 +32894,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -34393,17 +32920,12 @@ /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/window/reinforced/full, @@ -34419,8 +32941,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -34486,8 +33006,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -34502,8 +33020,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet, @@ -34511,11 +33027,9 @@ "pyA" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -34572,8 +33086,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -34633,7 +33145,6 @@ dir = 10 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -34765,8 +33276,6 @@ /area/surface/outside/plains/station) "pEt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -34811,8 +33320,6 @@ /area/surface/station/medical/reception) "pFg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5, @@ -34830,8 +33337,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -34855,8 +33360,6 @@ /area/surface/station/engineering/atmos) "pHu" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -34891,8 +33394,6 @@ "pHX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden, @@ -34912,8 +33413,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -34942,8 +33441,6 @@ }, /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -34962,7 +33459,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -35048,13 +33544,9 @@ /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/door/blast/regular/open{ @@ -35145,8 +33637,6 @@ /area/surface/station/park) "pOA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -35215,8 +33705,6 @@ "pRz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -35375,16 +33863,12 @@ /area/surface/station/library) "pWQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -35435,13 +33919,9 @@ /area/surface/station/engineering/atmos) "pXL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -35450,8 +33930,6 @@ /area/surface/station/maintenance/substation/medbay/gnd) "pYi" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -35489,8 +33967,6 @@ /area/surface/station/engineering/reactor_room) "pZo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -35512,8 +33988,6 @@ /area/surface/station/security/lobby) "qae" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner, @@ -35555,13 +34029,9 @@ /area/surface/station/medical/chemistry) "qaK" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -35626,8 +34096,6 @@ /area/surface/station/ai/upload_foyer) "qcf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -35648,8 +34116,6 @@ "qcx" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ @@ -35660,8 +34126,6 @@ /area/surface/station/maintenance/substation/cargo/gnd) "qcz" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -35684,8 +34148,6 @@ "qcM" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible/red, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/meter, @@ -35726,7 +34188,6 @@ pixel_y = 24 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light_switch{ @@ -35749,8 +34210,6 @@ /area/surface/station/ai/upload_foyer) "qfh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -35816,7 +34275,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light_switch{ @@ -35848,8 +34306,6 @@ /area/surface/station/security/processing) "qhP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -35885,8 +34341,6 @@ /area/shuttle/large_escape_pod1/station) "qio" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35991,8 +34445,6 @@ req_one_access = list(11,24) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -36013,8 +34465,6 @@ /area/surface/station/rnd/xenobiology) "qkk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -36035,7 +34485,6 @@ /area/surface/outside/plains/station) "qkt" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/item/weapon/stool/padded{ @@ -36062,8 +34511,6 @@ /area/surface/station/ai/cyborg_station) "qlH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -36095,8 +34542,6 @@ "qmm" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36108,8 +34553,6 @@ /area/surface/station/crew_quarters/locker) "qmG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -36134,8 +34577,6 @@ /area/surface/station/medical/cloning) "qmP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -36149,13 +34590,9 @@ /area/surface/station/security/detectives_office) "qmQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -36175,8 +34612,6 @@ /area/surface/station/engineering/reactor_airlock) "qnc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -36200,8 +34635,6 @@ /area/surface/station/maintenance/east/gnd) "qnU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -36252,8 +34685,6 @@ /area/surface/station/security/interrogation) "qpc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -36277,7 +34708,6 @@ charge = 1e+007 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -36299,7 +34729,6 @@ pixel_y = 12 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -36393,8 +34822,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass{ @@ -36436,8 +34863,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -36550,7 +34975,6 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -36559,8 +34983,6 @@ /area/surface/station/security/briefing_room) "qtN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36691,8 +35113,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_mining{ @@ -36731,8 +35151,6 @@ /area/surface/station/library) "qxt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -36743,16 +35161,12 @@ "qxG" = ( /obj/effect/catwalk_plated/dark, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/zpipe/up/supply, @@ -36779,8 +35193,6 @@ /area/surface/station/ai/upload_foyer) "qyi" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -36902,13 +35314,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -36930,8 +35338,6 @@ /area/surface/station/rnd/xenobiology) "qAP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -36975,7 +35381,6 @@ /area/surface/station/engineering/hallway/reactor) "qCT" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -37024,8 +35429,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -37033,8 +35436,6 @@ /area/surface/station/security/lobby) "qDs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -37123,7 +35524,6 @@ /area/surface/station/ai/upload) "qFo" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -37211,8 +35611,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/pink{ @@ -37226,8 +35624,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ @@ -37269,7 +35665,6 @@ "qHF" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -37414,8 +35809,6 @@ /area/surface/station/hallway/primary/groundfloor/west/elevator) "qKr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -37465,8 +35858,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor, @@ -37519,8 +35910,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -37596,8 +35985,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/pink/full{ @@ -37660,8 +36047,6 @@ /area/surface/station/crew_quarters/kitchen) "qTk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -37695,8 +36080,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -37704,8 +36087,6 @@ /area/surface/station/security/equiptment_storage/ses) "qUj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner_steel_grid{ @@ -37723,8 +36104,6 @@ /obj/structure/table/standard, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/tech_supply, @@ -37831,8 +36210,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -37864,7 +36241,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light_switch{ @@ -37897,8 +36273,6 @@ /area/surface/station/park) "qWD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -37986,8 +36360,6 @@ icon_state = "pipe-j2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -38001,8 +36373,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /turf/simulated/open, @@ -38069,8 +36439,6 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -38082,12 +36450,9 @@ }, /obj/structure/railing, /obj/structure/cable{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/camera/network/engineering{ @@ -38119,8 +36484,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -38227,8 +36590,6 @@ /area/surface/station/engineering/atmos) "ret" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -38276,8 +36637,6 @@ /area/surface/station/hydroponics) "rfr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -38285,18 +36644,12 @@ /area/surface/station/rnd/hallway/gnd) "rft" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -38309,8 +36662,6 @@ /area/surface/station/engineering/reactor_room) "rgv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -38325,8 +36676,6 @@ /area/surface/station/rnd/hallway/gnd) "rgJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, @@ -38336,18 +36685,12 @@ "rgP" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -38400,13 +36743,9 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -38446,8 +36785,6 @@ /area/surface/station/security/lockerroom) "rjv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/bed/chair/wood{ @@ -38507,8 +36844,6 @@ "rln" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -38545,8 +36880,6 @@ /area/surface/station/engineering/hallway/reactor) "rmM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -38575,12 +36908,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/railing, @@ -38613,8 +36943,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -38624,8 +36952,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/window/reinforced/full, @@ -38660,7 +36986,6 @@ /area/surface/station/engineering/hallway) "rnV" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/spline/plain{ @@ -38681,8 +37006,6 @@ /area/surface/station/rnd/hallway/stairwell) "rnZ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -38703,7 +37026,6 @@ /area/surface/station/hallway/primary/groundfloor/north) "roh" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -38783,8 +37105,6 @@ /area/surface/station/crew_quarters/pool) "rtB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -38891,8 +37211,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -38906,15 +37224,12 @@ /area/surface/station/rnd/hallway/gnd) "rwH" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/terminal{ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -38969,8 +37284,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -38992,8 +37305,6 @@ /area/surface/station/engineering/hallway) "rxC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -39009,8 +37320,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "rxG" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -39024,8 +37333,6 @@ /area/surface/station/engineering/reactor_airlock) "rxO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -39037,8 +37344,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ @@ -39052,7 +37357,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -39103,7 +37407,6 @@ "rze" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -39160,8 +37463,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -39203,8 +37504,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holosign/surgery{ @@ -39226,8 +37525,6 @@ /area/surface/station/engineering/reactor_waste) "rCN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -39310,17 +37607,12 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/railing, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/alarm{ @@ -39335,8 +37627,6 @@ /area/surface/station/maintenance/substation/medbay/gnd) "rFB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/corner/white/diagonal, @@ -39364,21 +37654,15 @@ /area/surface/station/engineering/reactor_waste) "rFS" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating/sif/planetuse, /area/surface/outside/station/solar/northeastsolar) "rGc" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -39417,8 +37701,6 @@ /area/surface/station/engineering/hallway) "rHb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -39444,8 +37726,6 @@ /area/surface/station/quartermaster/storage) "rIx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -39531,8 +37811,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -39561,8 +37839,6 @@ /area/surface/station/crew_quarters/cafeteria) "rKD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -39644,7 +37920,6 @@ /area/surface/station/arrivals/cynosure) "rMJ" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -39703,8 +37978,6 @@ }, /obj/structure/table/marble, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39766,8 +38039,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -39891,13 +38162,9 @@ /area/surface/station/security/detectives_office/lab) "rRN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -39994,8 +38261,6 @@ /area/surface/station/crew_quarters/locker) "rUV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -40086,13 +38351,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -40150,8 +38411,6 @@ /area/surface/station/security/range) "rYD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -40261,8 +38520,6 @@ /area/surface/station/hydroponics) "scN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -40283,7 +38540,6 @@ "sdy" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/wingrille_spawn/reinforced, @@ -40298,12 +38554,9 @@ /area/surface/station/rnd/xenobiology) "sdG" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/apc{ @@ -40404,8 +38657,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/paleblue/full, @@ -40472,8 +38723,6 @@ /area/surface/station/maintenance/solars/west) "skm" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -40497,8 +38746,6 @@ /area/surface/station/crew_quarters/cafeteria) "skF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -40565,8 +38812,6 @@ /area/surface/station/engineering/atmos) "smn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet, @@ -40767,8 +39012,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock{ @@ -40825,8 +39068,6 @@ /area/surface/station/ai/upload_foyer) "ssw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -40846,16 +39087,12 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, /area/surface/station/park) "stc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -40877,8 +39114,6 @@ "stX" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -40920,7 +39155,6 @@ /area/surface/station/security/equiptment_storage/ses) "svD" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -40974,8 +39208,6 @@ /area/surface/outside/station/reactorpond) "swk" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -41003,8 +39235,6 @@ /area/surface/station/security/processing) "swl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -41031,21 +39261,15 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/ward) "swS" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -41080,8 +39304,6 @@ }, /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -41203,8 +39425,6 @@ "sBs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -41378,8 +39598,6 @@ /area/surface/station/security/detectives_office) "sFk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -41419,8 +39637,6 @@ "sFD" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -41445,8 +39661,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -41487,7 +39701,6 @@ /area/surface/station/rnd/xenobiology/xenoflora) "sGM" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -41504,8 +39717,6 @@ /area/surface/station/maintenance/weststairwell/gnd) "sGR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -41527,8 +39738,6 @@ /area/surface/station/maintenance/substation/medbay/gnd) "sHa" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -41541,8 +39750,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -41560,8 +39767,6 @@ /area/surface/station/security/hallway/gnd) "sHN" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/binary/pump/on{ @@ -41674,8 +39879,6 @@ /area/surface/station/ai/upload) "sMt" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -41695,8 +39898,6 @@ /area/surface/station/rnd/exploration) "sMQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -41732,7 +39933,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/reinforced/full, @@ -41746,8 +39946,6 @@ /area/surface/station/rnd/xenobiology) "sNB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -41790,8 +39988,6 @@ "sOx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -41864,7 +40060,6 @@ pixel_y = -24 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light_switch{ @@ -41921,8 +40116,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -41950,8 +40143,6 @@ /area/surface/station/medical/surgery) "sSw" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -42016,8 +40207,6 @@ /area/surface/station/engineering/reactor_room) "sUi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -42118,8 +40307,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner2{ @@ -42242,8 +40429,6 @@ /area/surface/station/hallway/primary/groundfloor/north) "taZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -42259,8 +40444,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated/dark, @@ -42306,8 +40489,6 @@ /area/surface/station/engineering/foyer) "tcI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -42320,8 +40501,6 @@ /area/surface/station/maintenance/substation/engineering/gnd) "tcT" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -42342,11 +40521,9 @@ /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/reinforced/polarized/full{ @@ -42384,8 +40561,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -42402,8 +40577,6 @@ /area/surface/station/engineering/reactor_room) "tgj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction/flipped{ @@ -42513,8 +40686,6 @@ /area/surface/station/ai/upload) "tif" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -42567,8 +40738,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -42630,8 +40799,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -42641,8 +40808,6 @@ /area/surface/outside/plains/station) "tlJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -42694,16 +40859,12 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -42730,13 +40891,9 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light/small, @@ -42807,7 +40964,6 @@ /area/surface/station/arrivals/cynosure) "tof" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -42910,13 +41066,9 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -42942,7 +41094,6 @@ /area/surface/station/security/hallway/gnd) "tqK" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -43071,13 +41222,9 @@ /area/surface/station/ai/upload_foyer) "tum" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -43111,8 +41258,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -43123,8 +41268,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -43140,8 +41283,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated, @@ -43204,8 +41345,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -43248,8 +41387,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ @@ -43299,8 +41436,6 @@ /area/surface/station/hydroponics) "tzn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ @@ -43405,7 +41540,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7, @@ -43467,8 +41601,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -43503,8 +41635,6 @@ /area/surface/station/medical/storage/primary_storage) "tCN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -43533,19 +41663,13 @@ /area/surface/station/park) "tEx" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating/sif/planetuse, @@ -43573,8 +41697,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -43654,8 +41776,6 @@ /area/shuttle/exploration/general) "tIm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -43701,7 +41821,6 @@ /area/surface/station/security/hallway/gnd) "tJb" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green, @@ -43751,7 +41870,6 @@ "tJj" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -43775,7 +41893,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -43808,8 +41925,6 @@ /area/surface/station/engineering/reactor_room) "tJS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -43819,8 +41934,6 @@ /area/surface/station/maintenance/kitchen) "tJW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -43905,8 +42018,6 @@ /area/surface/station/engineering/atmos) "tMy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -43963,8 +42074,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/flora/pottedplant/xmas, @@ -43992,14 +42101,10 @@ /area/surface/station/medical/chemistry) "tNf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -44112,8 +42217,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -44211,7 +42314,6 @@ /obj/structure/grille, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/window/reinforced/polarized/full{ @@ -44240,8 +42342,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/catwalk_plated/dark, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -44287,8 +42387,6 @@ /area/surface/station/security/detectives_office/lab) "tWF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44416,8 +42514,6 @@ "uay" = ( /obj/structure/table/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/weapon/paper_bin, @@ -44446,8 +42542,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -44489,8 +42583,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/old_tile/blue, @@ -44504,7 +42596,6 @@ output_level = 200000 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning, @@ -44543,8 +42634,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -44622,8 +42711,6 @@ /area/surface/station/engineering/engineering_monitoring) "ueg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -44724,8 +42811,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -44755,7 +42840,6 @@ /area/surface/station/engineering/reactor_waste) "ujE" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -44793,8 +42877,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "ujW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -44812,8 +42894,6 @@ /area/surface/station/chapel/main) "ukj" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -44855,13 +42935,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -44873,8 +42949,6 @@ /area/surface/station/maintenance/weststairwell/gnd) "ulf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -44934,8 +43008,6 @@ "ulO" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -44997,8 +43069,6 @@ /area/surface/station/ai/upload) "uoO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -45041,16 +43111,12 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/shuttle/exploration/cargo) "url" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner, @@ -45128,15 +43194,12 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, /area/surface/station/security/hallway/gnd) "usl" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -45222,14 +43285,10 @@ /area/surface/station/medical/surgery_storage) "uvB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -45258,18 +43317,12 @@ /area/surface/station/medical/etc) "uvQ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating/sif/planetuse, @@ -45283,11 +43336,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -45348,16 +43399,12 @@ /area/surface/station/medical/hallway/gnd) "uwX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -45414,7 +43461,6 @@ output_level = 750000 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/zone_divider, @@ -45462,7 +43508,6 @@ /area/surface/station/medical/etc) "uBt" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -45568,13 +43613,9 @@ /area/surface/station/engineering/atmos) "uDF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -45596,7 +43637,6 @@ /obj/structure/grille, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/window/reinforced/full, @@ -45791,8 +43831,6 @@ /area/surface/station/crew_quarters/heads/hos) "uLx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -45814,7 +43852,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/reinforced/polarized/full{ @@ -45845,8 +43882,6 @@ /area/surface/station/hallway/primary/groundfloor/west) "uMB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -45866,8 +43901,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "uNc" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -45888,15 +43921,11 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -45980,7 +44009,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/reinforced/full, @@ -46065,8 +44093,6 @@ /area/shuttle/exploration/cargo) "uQF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -46107,8 +44133,6 @@ /area/surface/station/engineering/hallway) "uSf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -46131,8 +44155,6 @@ pixel_x = -22 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -46190,7 +44212,6 @@ "uTs" = ( /obj/structure/table/bench/padded, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -46282,8 +44303,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -46332,7 +44351,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/wingrille_spawn/reinforced, @@ -46391,8 +44409,6 @@ /area/surface/station/security/equiptment_storage/ses) "uZt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner, @@ -46462,8 +44478,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "vaT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -46473,8 +44487,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/monotile, @@ -46601,7 +44613,6 @@ /area/surface/station/security/hallway/gnd) "ves" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloor{ @@ -46729,8 +44740,6 @@ /area/surface/station/rnd/xenobiology) "vfO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/white/diagonal, @@ -46739,8 +44748,6 @@ /area/surface/station/crew_quarters/pool) "vgi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -46757,8 +44764,6 @@ /area/surface/station/crew_quarters/cafeteria) "vgs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -46784,8 +44789,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -46808,13 +44811,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -46839,8 +44838,6 @@ /area/surface/station/quartermaster/storage) "vhM" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -46915,8 +44912,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/machinery/meter, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -46946,8 +44941,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -46978,21 +44971,15 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, /area/surface/station/rnd/xenobiology/xenoflora_isolation) "vkN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -47026,8 +45013,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -47044,7 +45029,6 @@ }, /obj/machinery/status_display, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -47077,8 +45061,6 @@ /area/surface/station/ai/upload) "vlK" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -47095,8 +45077,6 @@ /area/surface/station/security/evidence_storage) "vmj" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -47169,16 +45149,12 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/groundfloor/east) "vnT" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -47201,16 +45177,12 @@ /area/surface/station/engineering/foyer) "vpe" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated, @@ -47226,8 +45198,6 @@ /area/surface/station/quartermaster/delivery) "vpx" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -47281,8 +45251,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -47302,13 +45270,9 @@ /area/surface/station/library) "vrX" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -47334,8 +45298,6 @@ /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -47362,8 +45324,6 @@ "vtx" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -47377,12 +45337,9 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/railing{ @@ -47472,8 +45429,6 @@ /area/surface/station/medical/storage/primary_storage) "vvJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning, @@ -47562,13 +45517,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -47587,7 +45538,6 @@ /area/surface/station/engineering/reactor_room) "vxn" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -47622,16 +45572,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, /area/surface/station/park) "vxH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -47679,13 +45625,9 @@ /area/surface/station/engineering/hallway) "vyH" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -47753,8 +45695,6 @@ }) "vBD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -47802,8 +45742,6 @@ /area/surface/station/medical/cloning) "vCi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -47868,7 +45806,6 @@ input_attempt = 1 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -47913,7 +45850,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -48011,8 +45947,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain{ @@ -48024,8 +45958,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -48075,13 +46007,9 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -48134,8 +46062,6 @@ /area/surface/station/engineering/atmos) "vJR" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -48177,13 +46103,9 @@ /area/surface/outside/station/shuttle/pad3) "vKZ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -48225,7 +46147,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced/full, @@ -48286,7 +46207,6 @@ pixel_y = -12 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -48296,8 +46216,6 @@ /area/surface/station/hallway/primary/groundfloor/west/elevator) "vNt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -48438,8 +46356,6 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -48587,8 +46503,6 @@ /area/surface/station/rnd/exploration) "vXc" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -48717,8 +46631,6 @@ /area/surface/station/crew_quarters/locker) "wak" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -48750,8 +46662,6 @@ /area/surface/station/crew_quarters/cafeteria) "waK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -48819,8 +46729,6 @@ "wcG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -48832,7 +46740,6 @@ /area/surface/station/maintenance/weststairwell/gnd) "wdu" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -48925,8 +46832,6 @@ /area/surface/station/crew_quarters/bar) "wfn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -49006,8 +46911,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -49084,8 +46987,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "wlI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -49123,8 +47024,6 @@ /area/surface/station/medical/etc) "wmF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -49150,8 +47049,6 @@ /area/surface/station/ai/upload) "wnb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -49204,8 +47101,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -49224,8 +47119,6 @@ /area/surface/station/engineering/atmos) "wnv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -49309,8 +47202,6 @@ /area/surface/station/engineering/atmos) "woY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -49411,8 +47302,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "wtQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/yellow, @@ -49435,8 +47324,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/security{ @@ -49450,8 +47337,6 @@ /area/surface/station/crew_quarters/pool) "wxg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -49466,8 +47351,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "wxu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -49492,8 +47375,6 @@ /area/surface/station/park) "wxI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -49510,8 +47391,6 @@ "wxJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/green, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -49610,8 +47489,6 @@ /area/surface/station/park) "wAy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -49667,13 +47544,9 @@ /area/surface/outside/plains/plateau) "wBO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -49728,12 +47601,9 @@ /area/surface/outside/plains/station) "wCT" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -49767,13 +47637,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -49896,8 +47762,6 @@ /area/surface/station/arrivals/cynosure) "wHy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -49936,7 +47800,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/window/reinforced/full, @@ -49955,8 +47818,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -49976,8 +47837,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -49990,13 +47849,9 @@ /area/surface/station/engineering/hallway/reactor) "wIY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -50053,12 +47908,9 @@ "wKC" = ( /obj/machinery/power/grid_checker, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -50066,14 +47918,10 @@ "wKW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -50128,8 +47976,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -50245,8 +48091,6 @@ /area/surface/station/rnd/xenobiology) "wOs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -50273,16 +48117,12 @@ /area/surface/station/medical/hallway/gnd) "wPe" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -50346,12 +48186,9 @@ "wPT" = ( /obj/structure/cable/green, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/railing{ @@ -50422,7 +48259,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/corner/beige/bordercorner{ @@ -50539,11 +48375,9 @@ "wRR" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -50564,8 +48398,6 @@ /area/surface/station/rnd/xenobiology) "wSd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -50620,8 +48452,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/corner/green/bordercorner2{ @@ -50642,8 +48472,6 @@ "wTW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -50704,8 +48532,6 @@ /area/surface/station/hydroponics) "wUY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -50795,7 +48621,6 @@ /area/surface/station/medical/etc) "wXx" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -50911,18 +48736,12 @@ /area/surface/station/security/restroom) "wZM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -50943,7 +48762,6 @@ output_level = 200000 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/button/remote/airlock{ @@ -51016,20 +48834,15 @@ sortType = "HoS Office" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/surface/station/security/hallway/gnd) "xeg" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -51193,8 +49006,6 @@ /area/surface/outside/station/reactorpond) "xhD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/alarm{ @@ -51220,8 +49031,6 @@ /area/surface/station/crew_quarters/pool) "xiD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -51276,8 +49085,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -51333,8 +49140,6 @@ /area/surface/station/maintenance/substation/civilian) "xmF" = ( /obj/structure/cable{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/structure/lattice, @@ -51385,8 +49190,6 @@ /area/surface/outside/plains/station) "xod" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -51497,8 +49300,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -51539,13 +49340,9 @@ /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/blast/regular/open{ @@ -51574,8 +49371,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -51597,8 +49392,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /turf/simulated/open, @@ -51620,7 +49413,6 @@ /area/surface/station/maintenance/east/gnd) "xtM" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -51695,18 +49487,12 @@ /area/surface/station/crew_quarters/pool) "xxi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating/sif/planetuse, @@ -51736,8 +49522,6 @@ /area/surface/station/hallway/primary/groundfloor/south) "xyL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -51774,8 +49558,6 @@ /area/surface/outpost/research/xenoarcheology/surface) "xyV" = ( /obj/structure/cable/cyan{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /obj/structure/lattice, @@ -51786,8 +49568,6 @@ /area/surface/outpost/research/xenoarcheology/surface) "xzb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -51803,8 +49583,6 @@ /area/surface/station/medical/etc) "xzw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -51824,8 +49602,6 @@ /area/surface/station/maintenance/east/gnd) "xzL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner, @@ -51853,8 +49629,6 @@ /area/surface/station/chapel/main) "xzZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -51952,11 +49726,9 @@ /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced/polarized/full{ @@ -51966,8 +49738,6 @@ /area/surface/station/security/processing) "xDu" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -51980,8 +49750,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -52031,7 +49799,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -52054,8 +49821,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -52074,8 +49839,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -52148,8 +49911,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -52175,8 +49936,6 @@ /area/surface/station/engineering/hallway) "xIq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ @@ -52239,8 +49998,6 @@ /area/surface/station/park) "xKg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -52294,8 +50051,6 @@ /area/surface/station/security/evidence_storage) "xKm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52372,8 +50127,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -52391,8 +50144,6 @@ /area/surface/outside/plains/plateau) "xNB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -52412,8 +50163,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -52501,8 +50250,6 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/gun/energy/taser/xeno, @@ -52511,8 +50258,6 @@ /area/surface/station/rnd/xenobiology) "xOU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -52581,8 +50326,6 @@ /area/surface/station/hallway/secondary/groundfloor/civilian) "xQi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -52620,8 +50363,6 @@ /area/surface/station/crew_quarters/heads/hos) "xRb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -52656,12 +50397,9 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -52687,8 +50425,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel/sif/planetuse{ @@ -52703,8 +50439,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor, @@ -52764,8 +50498,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -52788,8 +50520,6 @@ "xTw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -52835,8 +50565,6 @@ /area/surface/station/garage) "xUy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -52905,18 +50633,13 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/railing, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/sensor{ @@ -52967,8 +50690,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -53011,8 +50732,6 @@ /area/surface/station/maintenance/surgery) "xWK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -53054,8 +50773,6 @@ "xXL" = ( /obj/structure/table/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -53086,13 +50803,9 @@ /area/surface/station/rnd/xenobiology/xenoflora) "xYt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -53136,19 +50849,14 @@ /area/surface/station/security/interrogation) "xYP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -53203,8 +50911,6 @@ /area/shuttle/large_escape_pod1/station) "yag" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -53287,7 +50993,6 @@ pixel_y = 12 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -53327,8 +51032,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/crate/hydroponics/prespawned, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/neutral, @@ -53370,8 +51073,6 @@ /area/surface/station/medical/emt_bay) "ydv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -53413,8 +51114,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -53430,8 +51129,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -53441,8 +51138,6 @@ /area/surface/station/maintenance/substation/arrivals) "yfn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -53527,8 +51222,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -53549,8 +51242,6 @@ }, /obj/effect/catwalk_plated, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -53616,7 +51307,6 @@ /area/surface/station/medical/etc) "ykd" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -53667,16 +51357,12 @@ /area/surface/station/crew_quarters/pool) "ykB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -53694,8 +51380,6 @@ /area/surface/outside/plains/station) "ykW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -53778,14 +51462,10 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, diff --git a/maps/cynosure/cynosure-3.dmm b/maps/cynosure/cynosure-3.dmm index 43cac2c67f..9001e5757c 100644 --- a/maps/cynosure/cynosure-3.dmm +++ b/maps/cynosure/cynosure-3.dmm @@ -1,8 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aad" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -34,7 +32,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/window/reinforced/full, @@ -103,13 +100,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated, @@ -162,8 +155,6 @@ /area/surface/station/security/hallway/stairwell) "agI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -264,8 +255,6 @@ /area/surface/station/quartermaster/office) "aji" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -346,8 +335,6 @@ "alB" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -421,13 +408,9 @@ /area/surface/station/construction/office) "apn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -457,18 +440,12 @@ /area/surface/station/rnd/research) "aql" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -523,8 +500,6 @@ /area/surface/station/crew_quarters/heads/cmo) "aqR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -549,13 +524,9 @@ /area/surface/station/rnd/research) "arQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -643,8 +614,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/command{ @@ -658,11 +627,9 @@ "atE" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -703,8 +670,6 @@ /area/surface/station/hallway/secondary/secondfloor/dormhallway) "auR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -766,8 +731,6 @@ /obj/structure/ladder, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -814,8 +777,6 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "aAk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -884,15 +845,12 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/surface/station/hallway/primary/secondfloor/west) "aDS" = ( /obj/structure/cable{ - d1 = 32; icon_state = "32-1" }, /obj/structure/lattice, @@ -920,8 +878,6 @@ /area/surface/station/quartermaster/office) "aEh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -946,8 +902,6 @@ /area/surface/station/rnd/research) "aGs" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -975,7 +929,6 @@ "aGA" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -1017,8 +970,6 @@ /area/surface/station/engineering/reactor_room) "aJH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -1131,8 +1082,6 @@ /obj/structure/closet/secure_closet/RD, /obj/random_multi/single_item/hand_tele, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -1173,8 +1122,6 @@ /area/surface/station/medical/hallway/snd) "aOo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -1223,7 +1170,6 @@ "aPW" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -1258,8 +1204,6 @@ /area/surface/station/ai) "aRn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -1299,8 +1243,6 @@ /area/surface/station/engineering/reactor_room) "aUo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -1323,11 +1265,9 @@ "aUu" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -1342,8 +1282,6 @@ /area/surface/station/command/operations) "aUF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1451,8 +1389,6 @@ /area/shuttle/large_escape_pod2/station) "bdv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/bed/chair/office/light{ @@ -1613,8 +1549,6 @@ /area/surface/station/quartermaster/restroom) "biH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1627,8 +1561,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "biM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -1711,16 +1643,12 @@ /area/surface/station/storage/art) "bmi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -1752,8 +1680,6 @@ /area/surface/station/quartermaster/restroom) "bop" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1811,8 +1737,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /obj/structure/disposalpipe/down{ @@ -1824,8 +1748,6 @@ /area/surface/station/maintenance/substation/engineering/snd) "bpf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -1906,7 +1828,6 @@ /area/surface/station/rnd/workshop) "bsG" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -1942,16 +1863,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/surface/station/rnd/chargebay) "btZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1981,22 +1898,16 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, /area/surface/station/rnd/workshop) "bup" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/engi{ @@ -2009,8 +1920,6 @@ /area/surface/station/engineering/reactor_monitoring) "buT" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2038,7 +1947,6 @@ /area/surface/station/storage/art) "bvI" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2058,8 +1966,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction/flipped{ @@ -2071,7 +1977,6 @@ /area/surface/station/rnd/research) "bwn" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -2183,8 +2088,6 @@ /area/surface/station/engineering/hallway/snd) "bzP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -2200,8 +2103,6 @@ /area/surface/station/engineering/hallway/snd) "bzZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -2391,7 +2292,6 @@ }, /obj/random/soap, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2426,8 +2326,6 @@ /area/surface/station/medical/lockerroom) "bFV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -2444,8 +2342,6 @@ /area/surface/station/rnd/workshop) "bGz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2511,15 +2407,12 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, /area/surface/station/ai_monitored/storage/eva) "bID" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2536,8 +2429,6 @@ name = "Cargo Restroom" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2582,8 +2473,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock{ @@ -2595,8 +2484,6 @@ /area/surface/station/construction/office) "bMW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2622,8 +2509,6 @@ /area/surface/station/rnd/robotics) "bOv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2699,8 +2584,6 @@ /area/surface/station/quartermaster/foyer) "bQa" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor, @@ -2733,7 +2616,6 @@ "bQX" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green, @@ -2745,8 +2627,6 @@ /area/surface/station/command/operations) "bRL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -2819,7 +2699,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -2885,8 +2764,6 @@ /area/surface/station/maintenance/substation/engineering/snd) "bUR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/spline/plain, @@ -2921,8 +2798,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -2977,8 +2852,6 @@ /area/surface/station/medical/patient_b) "bWG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3007,8 +2880,6 @@ /area/surface/station/hallway/secondary/secondfloor/civilian) "bXv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3083,8 +2954,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3200,8 +3069,6 @@ /area/surface/station/crew_quarters/sleep/Dorm_1) "cfl" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -3223,7 +3090,6 @@ "cfH" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -3237,8 +3103,6 @@ /area/surface/station/security/hallway/snd) "cfR" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -3276,8 +3140,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -3327,7 +3189,6 @@ /area/shuttle/large_escape_pod2/station) "cht" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -3398,8 +3259,6 @@ /obj/structure/lattice, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /obj/machinery/atmospherics/pipe/zpipe/down/supply, @@ -3429,8 +3288,6 @@ /area/surface/station/crew_quarters/heads/cmo) "cjz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/rack{ @@ -3469,13 +3326,9 @@ /area/surface/station/quartermaster/foyer) "ckU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3585,8 +3438,6 @@ "cqr" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3603,8 +3454,6 @@ /area/surface/station/quartermaster/qm) "cqy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -3620,8 +3469,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/old_tile/gray, @@ -3656,8 +3503,6 @@ /area/surface/station/rnd/robotics) "csN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3760,7 +3605,6 @@ pixel_y = 11 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/item/device/flashlight/lamp, @@ -3820,13 +3664,9 @@ "cyN" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/corner{ @@ -3970,8 +3810,6 @@ /area/surface/station/command/operations) "cEl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4034,8 +3872,6 @@ /area/surface/station/medical/lockerroom) "cIu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4066,13 +3902,9 @@ /area/surface/station/medical/office) "cIX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -4173,13 +4005,9 @@ /area/surface/station/rnd/chargebay) "cMv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4238,8 +4066,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -4247,8 +4073,6 @@ "cNP" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4280,8 +4104,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/neutral, @@ -4315,8 +4137,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -4343,8 +4163,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4398,8 +4216,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "cSu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor, @@ -4449,7 +4265,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/button/windowtint{ @@ -4469,8 +4284,6 @@ /area/surface/station/crew_quarters/heads/rdoffice) "cUV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -4511,7 +4324,6 @@ "cVu" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green, @@ -4614,7 +4426,6 @@ "daf" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -4629,8 +4440,6 @@ /area/surface/station/command/operations) "daW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -4651,8 +4460,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -4698,14 +4505,12 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/white, /area/surface/station/medical/office) "ddE" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -4883,8 +4688,6 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "djZ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -4901,8 +4704,6 @@ /area/surface/station/medical/patient_a) "dki" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4925,8 +4726,6 @@ /area/surface/station/security/tactical) "dkR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4994,8 +4793,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_research{ @@ -5058,7 +4855,6 @@ "dmy" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green, @@ -5136,8 +4932,6 @@ /area/surface/station/rnd/robotics) "dpL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, @@ -5147,16 +4941,12 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/engineering/atmos/monitoring) "drJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5175,8 +4965,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, @@ -5195,8 +4983,6 @@ /area/surface/station/engineering/atmos/monitoring) "dtl" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/hull{ @@ -5224,8 +5010,6 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "dts" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -5355,8 +5139,6 @@ /area/surface/station/security/warden) "dwW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/padded, @@ -5377,8 +5159,6 @@ /area/surface/station/rnd/lab) "dxY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -5400,7 +5180,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -5459,8 +5238,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -5514,8 +5291,6 @@ /area/surface/station/quartermaster/office) "dET" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5557,7 +5332,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced/full, @@ -5568,8 +5342,6 @@ /area/surface/station/hallway/secondary/secondfloor/dormhallway) "dGa" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -5609,7 +5381,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light_switch{ @@ -5652,8 +5423,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -5702,8 +5471,6 @@ "dHZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -5771,8 +5538,6 @@ /area/surface/station/command/operations) "dMJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -5804,8 +5569,6 @@ /area/surface/station/engineering/hallway/reactor) "dNq" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -5885,8 +5648,6 @@ /area/surface/station/engineering/reactor_room) "dSt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5987,18 +5748,12 @@ /area/surface/station/hallway/primary/secondfloor/east) "dVQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -6070,8 +5825,6 @@ "dWt" = ( /obj/machinery/atmospherics/valve/digital, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6123,13 +5876,9 @@ /area/surface/outside/plains/station/snd) "dYd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6142,13 +5891,9 @@ /area/surface/station/medical/patient_wing) "dYt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -6161,8 +5906,6 @@ "dYD" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6175,8 +5918,6 @@ /area/surface/station/maintenance/cargo) "eaD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -6247,8 +5988,6 @@ /area/surface/station/quartermaster/office) "edr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -6262,8 +6001,6 @@ /area/surface/station/medical/patient_wing) "edw" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -6293,8 +6030,6 @@ /area/surface/station/crew_quarters/captain) "eeA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6475,8 +6210,6 @@ /area/surface/station/medical/virology) "epI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6496,8 +6229,6 @@ /area/surface/station/rnd/chargebay) "epW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -6566,8 +6297,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -6577,8 +6306,6 @@ /area/surface/station/hallway/primary/secondfloor/west) "erV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6609,7 +6336,6 @@ "esi" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -6722,8 +6448,6 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -6808,8 +6532,6 @@ /area/surface/station/engineering/hallway/sndaccess) "eza" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -6903,8 +6625,6 @@ /area/surface/station/quartermaster/qm) "eEh" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -6932,8 +6652,6 @@ "eFg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -6957,7 +6675,6 @@ "eGB" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -6981,8 +6698,6 @@ /area/surface/station/medical/patient_wing) "eHn" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ @@ -7004,8 +6719,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7030,8 +6743,6 @@ /area/surface/station/engineering/engine_eva) "eJO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -7064,8 +6775,6 @@ /area/surface/station/rnd/research) "eLU" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -7085,13 +6794,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -7126,8 +6831,6 @@ /area/surface/station/command/operations) "eNg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -7147,8 +6850,6 @@ /area/surface/station/rnd/research) "eOn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor, @@ -7166,8 +6867,6 @@ dir = 5 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -7182,8 +6881,6 @@ /area/surface/station/engineering/hallway/snd) "eOH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7211,8 +6908,6 @@ /area/surface/station/rnd/workshop) "ePk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7258,8 +6953,6 @@ "ePK" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7275,7 +6968,6 @@ "eQg" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -7290,8 +6982,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -7417,8 +7107,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7481,8 +7169,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -7499,7 +7185,6 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "eWj" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -7616,7 +7301,6 @@ pixel_y = 12 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -7645,8 +7329,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -7669,8 +7351,6 @@ /area/surface/station/medical/office) "fbr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor, @@ -7752,8 +7432,6 @@ /area/surface/station/ai_monitored/storage/eva) "fdJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -7856,8 +7534,6 @@ /area/surface/station/engineering/engi_restroom) "fhY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -7914,13 +7590,9 @@ /area/surface/station/engineering/reactor_room) "fkz" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -7972,8 +7644,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/carpet/sblucarpet, @@ -8005,8 +7675,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -8033,8 +7701,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -8103,8 +7769,6 @@ /area/surface/station/crew_quarters/heads/chief) "frL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8148,7 +7812,6 @@ /area/surface/station/security/hallway/stairwell) "ftk" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -8178,8 +7841,6 @@ /area/surface/station/engineering/reactor_airlock/snd) "fto" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -8308,13 +7969,9 @@ /area/surface/station/engineering/locker_room) "fAt" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor{ @@ -8387,7 +8044,6 @@ /area/surface/station/medical/office) "fCF" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -8439,8 +8095,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -8481,8 +8135,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -8524,8 +8176,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -8633,7 +8283,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "fIy" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -8693,13 +8342,9 @@ "fKw" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/glass_security{ @@ -8754,8 +8399,6 @@ /area/surface/station/command/meeting_room) "fNA" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -8849,8 +8492,6 @@ /area/surface/station/engineering/reactor_monitoring) "fTe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain{ @@ -8868,8 +8509,6 @@ /area/surface/station/rnd/robotics) "fUk" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8892,8 +8531,6 @@ /area/surface/station/ai) "fVf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8912,8 +8549,6 @@ /area/surface/station/command/operations) "fVK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -8931,8 +8566,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "fVP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -8964,8 +8597,6 @@ /area/surface/station/construction/office) "fWi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9029,8 +8660,6 @@ /area/surface/station/engineering/hallway/snd) "fXx" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -9074,11 +8703,9 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -9117,8 +8744,6 @@ /area/surface/station/engineering/hallway/snd) "fYQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -9146,8 +8771,6 @@ /area/surface/station/medical/lockerroom) "fZB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -9189,8 +8812,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "gaM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9213,11 +8834,9 @@ "gbs" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -9232,8 +8851,6 @@ /area/surface/station/security/hallway/snd) "gbB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -9363,8 +8980,6 @@ /area/surface/station/crew_quarters/captain) "gef" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9386,8 +9001,6 @@ /area/surface/station/engineering/hallway/snd) "geq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9593,11 +9206,9 @@ "gnO" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/blast/regular/open{ @@ -9630,8 +9241,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -9660,7 +9269,6 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -9725,8 +9333,6 @@ /area/surface/station/rnd/research) "gtF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -9738,8 +9344,6 @@ /area/surface/station/holodeck_control) "gud" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -9754,8 +9358,6 @@ pixel_x = -30 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light{ @@ -9765,8 +9367,6 @@ /area/surface/station/medical/patient_wing) "guq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9798,7 +9398,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -9842,8 +9441,6 @@ /area/surface/station/security/hallway/snd) "gwh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -9893,7 +9490,6 @@ /area/surface/station/hallway/primary/secondfloor/west/elevator) "gxg" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -9943,18 +9539,12 @@ /area/surface/outside/station/roof) "gyI" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -10012,8 +9602,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "gAD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -10025,8 +9613,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated/dark, @@ -10056,8 +9642,6 @@ /area/surface/station/security/hallway/snd) "gBf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10080,13 +9664,9 @@ "gCg" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -10138,7 +9718,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -10241,8 +9820,6 @@ /area/surface/station/hallway/secondary/secondfloor/eva_hallway) "gGP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -10296,8 +9873,6 @@ /area/surface/station/engineering/atmos) "gHx" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -10338,7 +9913,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/white, @@ -10354,16 +9928,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/park/skybridge) "gKb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -10398,8 +9968,6 @@ "gKP" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -10411,8 +9979,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -10446,8 +10012,6 @@ /area/surface/station/storage/art) "gMS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -10476,16 +10040,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/west) "gNu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -10560,8 +10120,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/structure/lattice, @@ -10599,8 +10157,6 @@ /area/surface/station/quartermaster/office) "gQD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10741,7 +10297,6 @@ /area/surface/station/maintenance/substation/cargo/snd) "gTM" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/smes/buildable{ @@ -10875,8 +10430,6 @@ "gXm" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10980,8 +10533,6 @@ /area/surface/station/rnd/lab) "gZo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/security/telescreen{ @@ -11030,8 +10581,6 @@ /area/surface/station/security/hallway/cell_hallway) "haq" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -11070,8 +10619,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/spline/plain{ @@ -11087,8 +10634,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -11144,8 +10689,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11196,8 +10739,6 @@ /area/surface/station/hallway/secondary/secondfloor/civilian) "heZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -11221,8 +10762,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -11243,8 +10782,6 @@ /area/surface/station/quartermaster/qm) "hhP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -11342,8 +10879,6 @@ "hkH" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11366,8 +10901,6 @@ /area/surface/station/engineering/locker_room) "hle" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -11402,8 +10935,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "hlU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/modular_computer/console/preset/command{ @@ -11413,8 +10944,6 @@ /area/surface/station/crew_quarters/captain) "hlV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11434,8 +10963,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -11448,8 +10975,6 @@ /area/surface/outside/plains/station/snd) "hnb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11488,13 +11013,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -11628,7 +11149,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -11696,8 +11216,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -11741,7 +11259,6 @@ "hBe" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -11813,8 +11330,6 @@ /area/surface/station/storage/art) "hCO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -11842,7 +11357,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -11855,11 +11369,9 @@ /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -11877,8 +11389,6 @@ "hEQ" = ( /obj/structure/table/standard, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -11907,7 +11417,6 @@ "hFF" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/blast/regular/open{ @@ -11924,7 +11433,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -11961,8 +11469,6 @@ /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/red/border, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/table/reinforced, @@ -12010,8 +11516,6 @@ /area/surface/station/rnd/workshop) "hKs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -12084,8 +11588,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/yellow, @@ -12097,8 +11599,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated/dark, @@ -12110,8 +11610,6 @@ /area/surface/station/ai) "hOD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -12184,7 +11682,6 @@ "hPK" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green, @@ -12219,8 +11716,6 @@ /area/surface/station/security/warden) "hQX" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12249,8 +11744,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -12359,8 +11852,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "hWR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12376,8 +11867,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7, @@ -12397,8 +11886,6 @@ /area/surface/station/medical/virology) "hXf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -12414,8 +11901,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12430,7 +11915,6 @@ "hXM" = ( /obj/structure/table/wooden_reinforced, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -12839,8 +12323,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -12852,8 +12334,6 @@ /area/surface/station/medical/patient_wing) "ikV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12882,13 +12362,9 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "imI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -12908,8 +12384,6 @@ /area/surface/station/hallway/secondary/secondfloor/civilian) "imJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12923,7 +12397,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "inn" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -12966,13 +12439,9 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/alarm{ @@ -12985,8 +12454,6 @@ /area/surface/station/maintenance/substation/command) "iqh" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13003,8 +12470,6 @@ /area/surface/station/quartermaster/qm) "iqB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -13018,8 +12483,6 @@ "iqE" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13057,7 +12520,6 @@ /area/surface/station/engineering/atmos) "isJ" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -13079,8 +12541,6 @@ /area/surface/station/crew_quarters/sleep/Dorm_1) "itI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13146,13 +12606,9 @@ /area/surface/station/security/hallway/cell_hallway) "ixn" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated, @@ -13227,15 +12683,11 @@ /area/surface/station/maintenance/cargo) "izh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -13264,18 +12716,12 @@ "izo" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13295,8 +12741,6 @@ /area/surface/station/security/warden) "izE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -13306,8 +12750,6 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/blue/bordercorner, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -13321,8 +12763,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -13347,8 +12787,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -13393,7 +12831,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -13412,8 +12849,6 @@ /area/surface/station/rnd/research_foyer) "iCT" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13474,7 +12909,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/reinforced/full, @@ -13509,8 +12943,6 @@ /area/surface/station/security/hallway/cell_hallway) "iGD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13525,8 +12957,6 @@ /area/surface/station/hallway/secondary/secondfloor/dormhallway) "iHM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -13634,8 +13064,6 @@ }, /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -13689,7 +13117,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -13744,8 +13171,6 @@ /area/surface/station/engineering/reactor_room) "iLi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13799,11 +13224,9 @@ "iNZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -13840,13 +13263,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -13862,7 +13281,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "iPj" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/closet/secure_closet/medical1, @@ -13928,8 +13346,6 @@ /area/surface/station/quartermaster/office) "iPI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14008,8 +13424,6 @@ /area/surface/station/crew_quarters/captain) "iRy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14203,8 +13617,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /obj/machinery/door/firedoor/border_only, @@ -14283,11 +13695,9 @@ "iVC" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/disposalpipe/segment{ @@ -14328,8 +13738,6 @@ /area/surface/outside/plains/station/snd) "iYk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -14416,8 +13824,6 @@ "jaZ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14475,8 +13881,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "jcb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -14501,13 +13905,9 @@ /area/surface/station/hallway/primary/secondfloor/west/elevator) "jcf" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14527,13 +13927,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -14556,8 +13952,6 @@ "jen" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14630,8 +14024,6 @@ /area/surface/station/construction/office) "jfz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -14666,8 +14058,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "jhC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -14687,8 +14077,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "jhN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -14738,8 +14126,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -14798,8 +14184,6 @@ /area/surface/outside/station/roof) "jlL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14829,8 +14213,6 @@ /area/surface/station/security/prison) "jlY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -14889,8 +14271,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/remote/blast_door{ @@ -14908,13 +14288,9 @@ /area/surface/station/security/armoury) "jmM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/firedoor/glass, @@ -14963,8 +14339,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/medical{ @@ -14976,8 +14350,6 @@ /area/surface/station/medical/psych) "jnN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -15002,8 +14374,6 @@ /area/surface/station/engineering/hallway/reactor) "jpB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15013,7 +14383,6 @@ dir = 6 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -15070,8 +14439,6 @@ "jqQ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15143,8 +14510,6 @@ /area/surface/station/medical/patient_b) "jtm" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15180,8 +14545,6 @@ /area/surface/station/crew_quarters/heads/cmo) "juh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15202,8 +14565,6 @@ /area/surface/station/crew_quarters/captain) "jux" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15228,8 +14589,6 @@ /area/surface/station/engineering/locker_room) "juO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15248,8 +14607,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair/office/dark{ @@ -15432,8 +14789,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/christmas/lights{ @@ -15444,8 +14799,6 @@ /area/surface/station/medical/patient_wing) "jAh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -15497,11 +14850,9 @@ "jCs" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -15566,8 +14917,6 @@ "jEz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15625,8 +14974,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -15636,11 +14983,9 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/window/reinforced/full, @@ -15658,8 +15003,6 @@ /area/surface/outside/station/roof) "jGy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15699,8 +15042,6 @@ /area/surface/station/medical/virology) "jIo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15723,8 +15064,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -15744,7 +15083,6 @@ "jIY" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -15785,8 +15123,6 @@ /area/surface/station/medical/patient_b) "jKk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -15862,8 +15198,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/newscaster{ @@ -15986,8 +15320,6 @@ /area/surface/station/quartermaster/office) "jQk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16060,11 +15392,9 @@ "jRF" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -16082,11 +15412,9 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/grille, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/window/reinforced/full, @@ -16169,11 +15497,9 @@ "jVB" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -16200,8 +15526,6 @@ /area/surface/station/security/prison) "jYc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16277,8 +15601,6 @@ /area/surface/station/rnd/robotics) "kao" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16343,8 +15665,6 @@ /area/surface/station/maintenance/cargo) "kbx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16475,8 +15795,6 @@ /area/surface/station/command/meeting_room) "khS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16540,8 +15858,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -16611,8 +15927,6 @@ "kki" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16624,15 +15938,11 @@ /area/surface/station/command/meeting_room) "kkr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated/dark, @@ -16669,8 +15979,6 @@ /area/surface/station/medical/virology) "kob" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -16756,8 +16064,6 @@ /area/surface/station/maintenance/cargo) "ksz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -16789,8 +16095,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "ktV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite/corner{ @@ -16811,8 +16115,6 @@ /area/surface/station/medical/patient_wing) "kuD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16823,8 +16125,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -16884,7 +16184,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light_switch{ @@ -16899,8 +16198,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -16955,8 +16252,6 @@ /area/surface/station/maintenance/substation/medbay/snd) "kzw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16983,8 +16278,6 @@ /area/surface/station/crew_quarters/captain) "kzK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17072,8 +16365,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -17113,8 +16404,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -17156,8 +16445,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/station_map{ @@ -17167,8 +16454,6 @@ /area/surface/station/hallway/secondary/secondfloor/weststairwell) "kMa" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -17244,8 +16529,6 @@ "kPE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -17255,8 +16538,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "kQH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -17269,8 +16550,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "kQR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -17344,8 +16623,6 @@ /area/surface/station/medical/virology) "kUc" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17366,7 +16643,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light_switch{ @@ -17408,8 +16684,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -17418,7 +16692,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -17435,8 +16708,6 @@ /area/surface/station/crew_quarters/sleep/Dorm_4) "kZO" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17450,8 +16721,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -17519,8 +16788,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorwhite, @@ -17532,8 +16799,6 @@ /area/surface/station/medical/patient_wing) "lcv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -17543,8 +16808,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "lcF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17579,8 +16842,6 @@ /area/surface/station/command/operations) "lfg" = ( /obj/structure/cable{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /obj/structure/lattice, @@ -17605,13 +16866,9 @@ /area/surface/station/medical/patient_wing) "lho" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17680,8 +16937,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -17707,8 +16962,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -17762,13 +17015,9 @@ /area/surface/station/maintenance/cargo) "lnL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -17785,8 +17034,6 @@ /area/surface/station/ai) "lod" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17841,16 +17088,12 @@ /area/surface/station/rnd/lab) "lpJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/surface/station/hallway/secondary/secondfloor/weststairwell) "lqt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -17872,8 +17115,6 @@ /area/surface/station/crew_quarters/captain) "lqJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17909,8 +17150,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite, @@ -17942,8 +17181,6 @@ /area/surface/station/engineering/hallway/snd) "lrq" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -17974,7 +17211,6 @@ "lso" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -18013,8 +17249,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -18051,8 +17285,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance{ @@ -18076,8 +17308,6 @@ /area/surface/station/engineering/hallway/snd) "lyD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -18264,8 +17494,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -18351,13 +17579,9 @@ /area/surface/station/hallway/primary/secondfloor/west) "lMF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -18381,8 +17605,6 @@ /area/surface/station/medical/psych) "lOc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -18407,8 +17629,6 @@ /area/surface/station/security/prison) "lOf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -18435,8 +17655,6 @@ "lPp" = ( /obj/machinery/computer/communications, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor{ @@ -18499,8 +17717,6 @@ /area/surface/station/engineering/hallway/sndaccess) "lRy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -18576,8 +17792,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -18630,13 +17844,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/alarm{ @@ -18653,8 +17863,6 @@ /area/surface/station/hallway/secondary/secondfloor/weststairwell) "lWe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -18695,8 +17903,6 @@ /area/surface/station/engineering/hallway/reactor) "lYR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -18744,8 +17950,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -18829,8 +18033,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command{ @@ -18844,8 +18046,6 @@ /area/surface/station/engineering/hallway/eva_hallway) "mfN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18872,7 +18072,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -18965,8 +18164,6 @@ "mjt" = ( /obj/machinery/porta_turret/ai_defense, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -19001,8 +18198,6 @@ /area/surface/station/engineering/reactor_monitoring) "mkX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor{ @@ -19047,8 +18242,6 @@ /area/surface/station/medical/virology) "mne" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -19071,8 +18264,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/command{ @@ -19086,8 +18277,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -19127,8 +18316,6 @@ /area/surface/station/medical/virology) "mqI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -19157,8 +18344,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "mrz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals5{ @@ -19182,8 +18367,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -19252,14 +18435,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -19477,8 +18656,6 @@ /area/surface/station/medical/restroom) "mDj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19568,8 +18745,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -19612,11 +18787,9 @@ "mFW" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -19625,13 +18798,10 @@ /area/surface/station/security/hallway/stairwell) "mFZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -19657,8 +18827,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/directions/security{ @@ -19680,8 +18848,6 @@ /area/surface/station/hallway/primary/secondfloor/west/elevator) "mGQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -19693,8 +18859,6 @@ "mHD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -19710,7 +18874,6 @@ "mHY" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -19733,8 +18896,6 @@ /area/surface/station/security/warden) "mIP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19794,8 +18955,6 @@ /area/surface/station/command/operations) "mKm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -19832,8 +18991,6 @@ /area/surface/station/crew_quarters/heads/rdoffice) "mKY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19860,8 +19017,6 @@ /area/surface/station/security/hallway/cell_hallway) "mLL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -19977,8 +19132,6 @@ /area/surface/station/security/armoury) "mOF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20017,8 +19170,6 @@ /area/surface/station/engineering/reactor_room) "mQH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20096,8 +19247,6 @@ /area/surface/station/security/equiptment_storage) "mVg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorblack{ @@ -20141,7 +19290,6 @@ "mVx" = ( /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -20162,8 +19310,6 @@ /area/surface/station/quartermaster/restroom) "mWt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20179,8 +19325,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "mWG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20211,8 +19355,6 @@ /area/surface/station/hallway/secondary/secondfloor/eva_hallway) "mYm" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -20350,13 +19492,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20414,13 +19552,9 @@ /area/surface/station/ai_monitored/storage/eva) "niC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -20458,11 +19592,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -20508,7 +19640,6 @@ /area/surface/station/ai) "nmx" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -20596,8 +19727,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/dark, @@ -20640,8 +19769,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/corner_oldtile/red{ @@ -20680,8 +19807,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals_central5, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/mmi/digital/robot, @@ -20702,8 +19827,6 @@ /area/surface/station/ai) "npA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20860,8 +19983,6 @@ /area/surface/station/quartermaster/office) "nuK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20931,8 +20052,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals3{ @@ -20945,8 +20064,6 @@ /area/surface/station/park/skybridge) "nwP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -20954,8 +20071,6 @@ /area/surface/station/security/prison) "nyi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20980,8 +20095,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -21045,8 +20158,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/directions/medical/virology{ @@ -21074,8 +20185,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -21104,8 +20213,6 @@ /area/surface/station/ai) "nEq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21123,8 +20230,6 @@ /area/surface/outside/station/roof) "nFo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21235,8 +20340,6 @@ use_power = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals5{ @@ -21262,13 +20365,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -21299,8 +20398,6 @@ /area/surface/station/rnd/chargebay) "nLJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21321,13 +20418,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -21343,8 +20436,6 @@ /area/surface/station/security/hallway/cell_hallway) "nNt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -21376,8 +20467,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -21390,8 +20479,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -21402,8 +20489,6 @@ "nPI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21492,8 +20577,6 @@ /area/surface/station/engineering/atmos) "nUl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21559,8 +20642,6 @@ /area/surface/station/command/operations) "nWo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/device/radio/intercom{ @@ -21673,8 +20754,6 @@ /area/surface/station/security/equiptment_storage) "oeC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21755,13 +20834,9 @@ /area/surface/station/engineering/hallway/snd) "ogh" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21784,8 +20859,6 @@ /area/surface/station/construction/office) "ohQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21812,8 +20885,6 @@ /area/surface/station/engineering/atmos) "oks" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -21893,8 +20964,6 @@ /area/surface/station/hallway/primary/secondfloor/west) "olJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -21941,8 +21010,6 @@ /area/surface/station/engineering/engine_eva) "onW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -21967,8 +21034,6 @@ /area/surface/outside/station/roof) "ooy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22048,13 +21113,9 @@ /area/surface/station/engineering/atmos) "otm" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22117,7 +21178,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22191,13 +21251,9 @@ /area/surface/station/medical/virology) "ouX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -22205,8 +21261,6 @@ /area/surface/station/security/prison) "ovn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -22233,8 +21287,6 @@ name = "Medbay Restroom" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22265,8 +21317,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/beacon, @@ -22304,8 +21354,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -22321,8 +21369,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -22341,8 +21387,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "ozo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -22356,7 +21400,6 @@ /area/surface/station/hallway/secondary/secondfloor/eva_hallway) "ozu" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -22374,8 +21417,6 @@ "ozI" = ( /obj/structure/table/standard, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22400,13 +21441,9 @@ /area/surface/station/security/warden) "ozR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22435,8 +21472,6 @@ /area/surface/station/command/operations) "oAv" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -22466,8 +21501,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular/open{ @@ -22488,8 +21521,6 @@ /area/surface/station/medical/virology) "oCU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -22507,8 +21538,6 @@ /area/surface/station/crew_quarters/sleep/Dorm_3) "oDv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22548,8 +21577,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/device/radio/intercom{ @@ -22578,16 +21605,12 @@ /obj/item/device/taperecorder, /obj/item/weapon/reagent_containers/food/drinks/jar, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, /area/surface/station/crew_quarters/heads/rdoffice) "oFy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22601,8 +21624,6 @@ /area/surface/station/security/hallway/snd) "oFU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -22640,8 +21661,6 @@ /area/surface/station/medical/patient_wing) "oIk" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -22703,7 +21722,6 @@ "oKZ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -22723,8 +21741,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22844,8 +21860,6 @@ /area/surface/outside/plains/station/snd) "oQQ" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22865,8 +21879,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -22927,13 +21939,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -22944,7 +21952,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/corner/green/border{ @@ -22999,8 +22006,6 @@ /area/surface/station/maintenance/substation/medbay/snd) "oVB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -23247,8 +22252,6 @@ /area/surface/station/rnd/research_foyer) "pgm" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23307,11 +22310,9 @@ "pim" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -23323,8 +22324,6 @@ /area/surface/station/command/operations) "piL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23367,7 +22366,6 @@ /area/surface/station/security/prison) "pjt" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -23393,8 +22391,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -23469,8 +22465,6 @@ /area/surface/station/maintenance/substation/engineering/snd) "pmn" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23480,8 +22474,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -23540,8 +22532,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -23564,8 +22554,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "poV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/dispenser, @@ -23573,7 +22561,6 @@ /area/surface/station/ai_monitored/storage/eva) "pph" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -23658,8 +22645,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -23751,8 +22736,6 @@ /area/surface/outside/plains/station/snd) "pxx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23805,8 +22788,6 @@ /area/surface/station/hallway/primary/secondfloor/west/elevator) "pBd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -23822,8 +22803,6 @@ "pBB" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23842,13 +22821,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated, @@ -23947,8 +22922,6 @@ }, /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23957,8 +22930,6 @@ /area/surface/station/rnd/research) "pFn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -24019,8 +22990,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -24036,7 +23005,6 @@ /area/surface/station/medical/lockerroom) "pHu" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -24100,8 +23068,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "pJV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -24138,8 +23104,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/valve/shutoff{ @@ -24169,8 +23133,6 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "pLQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -24254,8 +23216,6 @@ /area/surface/station/command/operations) "pNj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -24330,7 +23290,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -24375,11 +23334,9 @@ "pSN" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green, @@ -24398,8 +23355,6 @@ /area/surface/station/crew_quarters/captain) "pSZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -24481,8 +23436,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -24549,11 +23502,9 @@ "pXz" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -24592,8 +23543,6 @@ /area/surface/station/security/armoury) "pYB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -24651,8 +23600,6 @@ /area/surface/station/medical/patient_wing) "pZu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -24712,8 +23659,6 @@ "qaw" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -24756,7 +23701,6 @@ /area/surface/station/hallway/secondary/secondfloor/civilian) "qbt" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -24811,8 +23755,6 @@ /area/surface/station/construction/office) "qcG" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/modular_computer/console/preset/security{ @@ -24828,8 +23770,6 @@ /area/surface/station/medical/exam_room) "qcL" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -24869,8 +23809,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -24917,7 +23855,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techmaint, @@ -25077,8 +24014,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/item/weapon/storage/briefcase/inflatable{ @@ -25218,15 +24153,12 @@ "qst" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -25267,8 +24199,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ @@ -25282,8 +24212,6 @@ /area/surface/station/engineering/reactor_monitoring) "qvf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25336,8 +24264,6 @@ /area/surface/station/medical/exam_room) "qxd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25352,8 +24278,6 @@ /area/surface/station/quartermaster/office) "qxv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -25412,8 +24336,6 @@ /area/surface/outside/plains/station/snd) "qzY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25436,8 +24358,6 @@ /area/surface/station/hallway/secondary/secondfloor/civilian) "qAS" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25486,7 +24406,6 @@ pixel_y = 34 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/dark, @@ -25574,7 +24493,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/blast/regular/open{ @@ -25610,15 +24528,11 @@ /area/surface/station/security/prison) "qGr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated, @@ -25627,18 +24541,12 @@ "qGX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -25751,8 +24659,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/alarm{ @@ -25781,8 +24687,6 @@ /area/surface/station/medical/hallway/snd) "qMd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25800,7 +24704,6 @@ /area/surface/station/engineering/hallway/eva_hallway) "qMB" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -25834,8 +24737,6 @@ /area/surface/station/ai) "qNP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -25853,8 +24754,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -25881,8 +24780,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/corner_oldtile/red{ @@ -25905,8 +24802,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -25959,8 +24854,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "qQt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, @@ -25979,13 +24872,9 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -26008,8 +24897,6 @@ /area/surface/station/park/skybridge) "qRK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/portable_atmospherics/hydroponics, @@ -26023,8 +24910,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, @@ -26033,8 +24918,6 @@ /area/surface/station/maintenance/substation/research/snd) "qUl" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -26078,8 +24961,6 @@ /area/surface/station/crew_quarters/captain) "qWi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26117,18 +24998,12 @@ /area/surface/station/crew_quarters/heads/rdoffice) "qXD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26174,7 +25049,6 @@ /area/surface/station/security/hallway/snd) "qZp" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -26227,8 +25101,6 @@ /area/surface/station/ai_monitored/storage/eva) "rcq" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor{ @@ -26247,8 +25119,6 @@ /area/surface/station/ai) "rcv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -26279,8 +25149,6 @@ /area/surface/station/crew_quarters/heads/chief) "rcQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -26319,8 +25187,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "rev" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -26375,13 +25241,9 @@ /area/surface/station/quartermaster/office) "rgZ" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -26505,8 +25367,6 @@ "rou" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26532,16 +25392,12 @@ /area/surface/station/medical/patient_wing) "rpB" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26555,8 +25411,6 @@ "rpD" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, @@ -26565,8 +25419,6 @@ /area/surface/station/ai) "rpY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26597,8 +25449,6 @@ /area/surface/station/security/tactical) "rry" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -26628,8 +25478,6 @@ /area/surface/station/crew_quarters/captain) "rsP" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/table/rack{ @@ -26724,11 +25572,9 @@ "rzL" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -26763,8 +25609,6 @@ /area/surface/station/security/prison) "rBN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26815,8 +25659,6 @@ /area/surface/station/engineering/hallway/snd) "rDC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -26909,13 +25751,9 @@ "rII" = ( /obj/structure/table/wooden_reinforced, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26924,8 +25762,6 @@ /area/surface/station/crew_quarters/captain) "rIO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26970,8 +25806,6 @@ /area/surface/station/medical/hallway/snd) "rJn" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -26979,8 +25813,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -26992,8 +25824,6 @@ "rJW" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27012,8 +25842,6 @@ /area/surface/station/crew_quarters/heads/cmo) "rKf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -27063,8 +25891,6 @@ /area/surface/station/hallway/primary/secondfloor/west) "rLD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -27095,8 +25921,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -27119,11 +25943,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -27165,7 +25987,6 @@ }, /obj/structure/flora/pottedplant/dead, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -27201,7 +26022,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/catwalk_plated/dark, @@ -27229,7 +26049,6 @@ "rQD" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -27280,8 +26099,6 @@ /area/surface/station/hallway/secondary/secondfloor/dormhallway) "rSS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/disposal, @@ -27302,16 +26119,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/surface/station/hallway/primary/secondfloor/east) "rXP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -27338,11 +26151,9 @@ "rYR" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -27357,8 +26168,6 @@ /area/surface/station/security/prison) "rYU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -27375,8 +26184,6 @@ /area/surface/station/hallway/secondary/secondfloor/dormhallway) "rZp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/window/reinforced{ @@ -27416,7 +26223,6 @@ /area/surface/station/security/prison) "rZV" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -27461,7 +26267,6 @@ /area/surface/station/medical/patient_wing) "sbp" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/super/critical{ @@ -27492,16 +26297,12 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, /area/surface/station/ai) "scv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27539,8 +26340,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "sdt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -27559,8 +26358,6 @@ /area/surface/station/rnd/research) "sdJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/secure_data{ @@ -27584,8 +26381,6 @@ /area/surface/station/security/prison) "seV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27617,7 +26412,6 @@ /area/surface/station/maintenance/cargo) "sfI" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -27640,8 +26434,6 @@ /area/surface/station/medical/psych) "sfK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27649,8 +26441,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -27658,8 +26448,6 @@ "sgb" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27684,7 +26472,6 @@ /area/surface/station/crew_quarters/sleep/Dorm_3) "sgQ" = ( /obj/structure/cable/cyan{ - d1 = 32; icon_state = "32-1" }, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ @@ -27720,8 +26507,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -27743,8 +26528,6 @@ /area/surface/station/security/prison) "sjk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27752,13 +26535,9 @@ /area/surface/station/crew_quarters/captain) "sjE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -27789,8 +26568,6 @@ /area/surface/station/maintenance/eva) "slj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -27871,8 +26648,6 @@ /area/surface/station/security/prison) "snx" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -27891,8 +26666,6 @@ /area/surface/station/ai) "sny" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27952,7 +26725,6 @@ "sru" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -27968,8 +26740,6 @@ "srw" = ( /obj/structure/window/reinforced, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -28058,7 +26828,6 @@ }, /obj/structure/window/reinforced/full, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -28103,8 +26872,6 @@ /area/surface/station/construction/office) "svX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -28177,8 +26944,6 @@ /area/surface/station/ai/upload_foyer) "sxk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28246,13 +27011,9 @@ /area/shuttle/large_escape_pod2/station) "szp" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28296,8 +27057,6 @@ /area/surface/station/crew_quarters/heads/cmo) "sAj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -28307,8 +27066,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -28369,13 +27126,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -28403,11 +27156,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -28452,8 +27203,6 @@ /area/surface/station/engineering/reactor_room) "sGc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -28465,8 +27214,6 @@ "sGg" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -28520,8 +27267,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/machinery/door/firedoor/border_only, @@ -28574,13 +27319,9 @@ /area/surface/station/quartermaster/qm) "sJA" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -28621,8 +27362,6 @@ "sJK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -28680,13 +27419,9 @@ /area/surface/station/storage/art) "sKC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -28698,8 +27433,6 @@ /area/surface/station/holodeck_control) "sKX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28808,8 +27541,6 @@ /area/surface/station/crew_quarters/heads/cmo) "sOy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -28898,8 +27629,6 @@ /area/surface/station/security/equiptment_storage) "sQK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -28910,8 +27639,6 @@ "sRh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -28947,8 +27674,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -28982,8 +27707,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/sortjunction/flipped{ @@ -28998,8 +27721,6 @@ /area/surface/station/rnd/research) "sUl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29041,8 +27762,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -29060,8 +27779,6 @@ "sVz" = ( /obj/machinery/porta_turret/ai_defense, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -29082,7 +27799,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7, @@ -29110,8 +27826,6 @@ /area/surface/station/security/armoury) "sXx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -29136,7 +27850,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -29169,8 +27882,6 @@ /area/surface/station/security/prison) "sYT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, @@ -29190,7 +27901,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -29287,18 +27997,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/airlock/glass_security{ @@ -29309,13 +28013,9 @@ /area/surface/station/security/equiptment_storage) "tfI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor, @@ -29354,8 +28054,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "tgO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29398,8 +28096,6 @@ /area/surface/station/medical/lockerroom) "thN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain{ @@ -29542,8 +28238,6 @@ /area/surface/station/hallway/secondary/secondfloor/civilian) "tmR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -29594,8 +28288,6 @@ /area/surface/station/ai) "tnX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29782,8 +28474,6 @@ /area/surface/station/ai) "tuF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -29841,13 +28531,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -29867,11 +28553,9 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -29916,8 +28600,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/alarm{ @@ -29972,8 +28654,6 @@ /area/surface/station/quartermaster/qm) "tws" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -30008,8 +28688,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -30049,8 +28727,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/medical{ @@ -30073,8 +28749,6 @@ /area/surface/station/medical/virology) "tzj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -30122,8 +28796,6 @@ /area/surface/station/ai_monitored/storage/eva) "tzF" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/dark, @@ -30167,7 +28839,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/blast/regular/open{ @@ -30290,8 +28961,6 @@ /area/surface/station/engineering/reactor_monitoring) "tGN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -30335,8 +29004,6 @@ /area/surface/station/crew_quarters/captain) "tJz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -30427,8 +29094,6 @@ /area/surface/station/rnd/research) "tNt" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -30511,8 +29176,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -30523,8 +29186,6 @@ /area/surface/outside/station/roof) "tPG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -30654,8 +29315,6 @@ /area/surface/station/crew_quarters/sleep/Dorm_3) "tUZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -30692,8 +29351,6 @@ "tWq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30735,7 +29392,6 @@ "tWT" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/blast/regular/open{ @@ -30756,11 +29412,9 @@ "tXx" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/blast/regular/open{ @@ -30774,8 +29428,6 @@ /area/surface/station/security/hallway/cell_hallway) "tXQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30785,8 +29437,6 @@ /area/surface/station/security/prison) "tZh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30849,8 +29499,6 @@ /area/surface/station/medical/patient_wing) "ubW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -30898,7 +29546,6 @@ pixel_y = 12 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -30932,13 +29579,9 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "udE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -30955,8 +29598,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "udK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31012,8 +29653,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -31023,8 +29662,6 @@ /area/surface/station/security/hallway/snd) "ufh" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -31107,7 +29744,6 @@ /area/surface/station/engineering/reactor_room) "uiu" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -31129,8 +29765,6 @@ /area/surface/station/crew_quarters/sleep/Dorm_3) "uiT" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -31146,7 +29780,6 @@ "ujj" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/blast/regular/open{ @@ -31172,8 +29805,6 @@ /area/surface/station/security/prison) "ujF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -31196,8 +29827,6 @@ /area/surface/station/engineering/hallway/sndaccess) "ulG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -31241,8 +29870,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/corner/white{ @@ -31260,8 +29887,6 @@ /area/surface/station/rnd/research_foyer) "uoJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -31283,8 +29908,6 @@ /area/surface/station/maintenance/substation/security/snd) "upN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -31317,8 +29940,6 @@ /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/weapon/clipboard, @@ -31354,8 +29975,6 @@ /area/surface/station/engineering/engi_restroom) "uug" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning/corner, @@ -31439,8 +30058,6 @@ /area/surface/station/engineering/hallway/snd) "uxX" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/hull{ @@ -31455,8 +30072,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31534,13 +30149,9 @@ /area/surface/station/command/internalaffairs) "uzg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -31591,8 +30202,6 @@ /area/surface/station/command/internalaffairs) "uBB" = ( /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/structure/lattice, @@ -31662,7 +30271,6 @@ "uDG" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -31699,7 +30307,6 @@ "uEd" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -31734,8 +30341,6 @@ /area/surface/station/ai) "uEI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/status_display, @@ -31768,8 +30373,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -31789,8 +30392,6 @@ /area/surface/station/security/armoury) "uGi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -31812,7 +30413,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green, @@ -31844,11 +30444,9 @@ "uKq" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/blast/regular/open{ @@ -31884,8 +30482,6 @@ "uMh" = ( /obj/machinery/porta_turret/ai_defense, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -31922,8 +30518,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -31935,7 +30529,6 @@ "uND" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/blast/regular/open{ @@ -31950,8 +30543,6 @@ /area/surface/station/security/hallway/cell_hallway) "uNR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -32000,14 +30591,10 @@ /area/surface/station/security/prison) "uPM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -32030,8 +30617,6 @@ /area/surface/station/security/hallway/stairwell) "uRr" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32086,8 +30671,6 @@ /area/surface/station/medical/hallway/snd) "uSW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -32102,8 +30685,6 @@ /area/surface/station/holodeck_control) "uSY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -32180,7 +30761,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light_switch{ @@ -32199,8 +30779,6 @@ /area/surface/station/medical/patient_wing) "uVA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain{ @@ -32216,8 +30794,6 @@ "uVR" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/atmos{ @@ -32267,8 +30843,6 @@ /area/surface/station/crew_quarters/captain) "uWM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/hull{ @@ -32349,8 +30923,6 @@ /area/surface/station/quartermaster/office) "uZq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -32370,11 +30942,9 @@ "uZC" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -32479,8 +31049,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -32519,8 +31087,6 @@ /area/surface/station/security/warden) "vft" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32575,18 +31141,12 @@ /area/surface/station/security/equiptment_storage) "vhv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -32601,13 +31161,9 @@ /area/surface/station/engineering/hallway/snd) "vhB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -32662,7 +31218,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -32709,8 +31264,6 @@ /obj/structure/bed/chair, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32774,8 +31327,6 @@ /area/surface/station/security/prison) "voo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -32838,13 +31389,9 @@ /area/surface/station/crew_quarters/captain) "vtY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -32881,8 +31428,6 @@ /area/surface/station/crew_quarters/heads/rdoffice) "vvM" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -32901,8 +31446,6 @@ /area/surface/station/medical/virology) "vws" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32922,8 +31465,6 @@ /area/surface/station/security/warden) "vxN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, @@ -32987,8 +31528,6 @@ /area/surface/station/crew_quarters/captain) "vAR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -33004,7 +31543,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33039,8 +31577,6 @@ /area/surface/station/construction/office) "vBB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -33091,7 +31627,6 @@ charge = 2e+006 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -33143,8 +31678,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -33170,7 +31703,6 @@ "vGN" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -33191,8 +31723,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33213,13 +31743,9 @@ /area/surface/station/command/operations) "vHA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33259,8 +31785,6 @@ /area/surface/station/hallway/secondary/secondfloor/civilian) "vIp" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -33279,8 +31803,6 @@ /area/surface/station/command/teleporter) "vIV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -33373,18 +31895,12 @@ "vLh" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -33425,8 +31941,6 @@ /area/surface/station/command/meeting_room) "vLv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -33436,8 +31950,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33518,8 +32030,6 @@ /area/surface/station/maintenance/substation/research/snd) "vOc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -33528,8 +32038,6 @@ /area/surface/station/medical/office) "vOi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -33619,8 +32127,6 @@ /area/surface/station/medical/patient_wing) "vSR" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor, @@ -33647,7 +32153,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 32; icon_state = "32-1" }, /obj/structure/disposalpipe/down{ @@ -33659,8 +32164,6 @@ /area/surface/station/maintenance/substation/medbay/snd) "vTy" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33683,8 +32186,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monofloor, @@ -33693,8 +32194,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -33723,7 +32222,6 @@ "vXu" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -33765,8 +32263,6 @@ /area/surface/station/engineering/hallway/eva_hallway) "vXZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33933,8 +32429,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -33961,8 +32455,6 @@ "wjs" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/skills, @@ -34134,13 +32626,9 @@ /area/surface/station/crew_quarters/heads/chief) "wpd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -34166,8 +32654,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/old_cargo/gray, @@ -34238,8 +32724,6 @@ /area/surface/station/crew_quarters/heads/cmo) "wrI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -34310,8 +32794,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -34346,8 +32828,6 @@ /area/surface/station/command/liaison) "wvW" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/porta_turret/ai_defense, @@ -34362,8 +32842,6 @@ /area/surface/station/rnd/research) "wwd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/hull{ @@ -34375,8 +32853,6 @@ /area/surface/outside/station/roof) "wxh" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -34473,13 +32949,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -34493,8 +32965,6 @@ /area/surface/station/medical/hallway/snd) "wzS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/bed/chair/comfy/brown{ @@ -34556,7 +33026,6 @@ "wCt" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -34597,7 +33066,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/disposalpipe/segment{ @@ -34673,8 +33141,6 @@ "wGm" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34761,8 +33227,6 @@ /area/surface/station/engineering/atmos/monitoring) "wHk" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -34816,12 +33280,9 @@ /area/surface/station/engineering/reactor_airlock/snd) "wJp" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -34844,8 +33305,6 @@ /area/surface/station/maintenance/substation/cargo/snd) "wJx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -34893,8 +33352,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "wLy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/computer/station_alert/all{ @@ -34911,8 +33368,6 @@ "wLM" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass{ @@ -34926,7 +33381,6 @@ "wMP" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green, @@ -34953,8 +33407,6 @@ /area/surface/station/security/hallway/cell_hallway) "wNI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals5, @@ -34975,8 +33427,6 @@ /area/surface/station/security/hallway/cell_hallway) "wNT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -35012,8 +33462,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -35072,8 +33520,6 @@ /area/surface/station/holodeck_control) "wSf" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -35096,13 +33542,9 @@ "wSN" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/corner{ @@ -35135,8 +33577,6 @@ /area/surface/station/security/equiptment_storage) "wTx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -35168,8 +33608,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -35180,8 +33618,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -35211,8 +33647,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -35419,8 +33853,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "xai" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35442,13 +33874,9 @@ /area/surface/station/quartermaster/restroom) "xaE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -35485,8 +33913,6 @@ /area/surface/station/storage/art) "xce" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -35508,16 +33934,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/surface/station/engineering/hallway/snd) "xcE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35528,8 +33950,6 @@ /area/surface/station/command/meeting_room) "xcF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -35569,8 +33989,6 @@ /area/surface/station/security/prison) "xfa" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -35637,8 +34055,6 @@ /area/surface/station/hallway/secondary/secondfloor/westskybridge) "xgT" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -35675,8 +34091,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated, @@ -35703,8 +34117,6 @@ /area/surface/station/rnd/robotics) "xjH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -35801,8 +34213,6 @@ /area/surface/station/quartermaster/office) "xlP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35928,8 +34338,6 @@ /area/surface/station/engineering/reactor_monitoring) "xnA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -35995,7 +34403,6 @@ "xpe" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -36031,8 +34438,6 @@ /area/surface/station/medical/virology) "xpF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -36067,8 +34472,6 @@ /area/surface/station/rnd/lab) "xqK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -36087,8 +34490,6 @@ /area/surface/station/ai_monitored/storage/eva) "xrf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36115,7 +34516,6 @@ "xsF" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -36146,7 +34546,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -36161,7 +34560,6 @@ /area/surface/station/security/prison) "xuq" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -36186,8 +34584,6 @@ "xuv" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36207,7 +34603,6 @@ /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/blast/regular/open{ @@ -36244,8 +34639,6 @@ "xvb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -36276,8 +34669,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/medical{ @@ -36332,11 +34723,9 @@ "xxz" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -36353,7 +34742,6 @@ name = "Security Lockdown" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -36421,7 +34809,6 @@ pixel_y = 12 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/item/weapon/packageWrap, @@ -36450,8 +34837,6 @@ /area/surface/station/security/hallway/cell_hallway) "xBu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -36486,8 +34871,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/old_tile/gray, @@ -36511,8 +34894,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "xFe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -36573,8 +34954,6 @@ /area/surface/station/engineering/hallway/sndaccess) "xHG" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36585,8 +34964,6 @@ }, /obj/effect/catwalk_plated, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -36630,8 +35007,6 @@ /area/surface/station/ai_monitored/storage/eva) "xIu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36654,8 +35029,6 @@ "xIG" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/headset, @@ -36700,7 +35073,6 @@ /area/surface/station/hallway/primary/secondfloor/east) "xKh" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -36735,8 +35107,6 @@ /area/surface/station/security/hallway/cell_hallway) "xLu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36806,7 +35176,6 @@ dir = 5 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -36863,8 +35232,6 @@ /area/surface/station/security/prison) "xOO" = ( /obj/structure/cable/cyan{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/structure/lattice, @@ -36898,8 +35265,6 @@ /area/surface/station/hallway/primary/secondfloor/west) "xQu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -36923,8 +35288,6 @@ /area/surface/station/crew_quarters/captain) "xRp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36938,8 +35301,6 @@ "xRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36955,8 +35316,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/wood, @@ -36997,18 +35356,12 @@ "xUc" = ( /obj/structure/disposalpipe/junction/yjunction, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated, @@ -37029,8 +35382,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "xUr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -37044,13 +35395,9 @@ /area/surface/outside/station/roof) "xUN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37077,8 +35424,6 @@ /area/surface/station/engineering/atmos) "xUT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -37105,8 +35450,6 @@ /area/surface/station/engineering/atmos) "xVm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/ai_status_display, @@ -37125,7 +35468,6 @@ "xVv" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -37157,8 +35499,6 @@ /area/surface/station/hallway/secondary/secondfloor/command) "xXJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37295,18 +35635,12 @@ "yaZ" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37326,8 +35660,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -37381,7 +35713,6 @@ "ydE" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -37400,13 +35731,9 @@ /area/surface/station/security/prison) "ydH" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -37421,11 +35748,9 @@ "yeY" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/grille, @@ -37531,8 +35856,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -37634,13 +35957,9 @@ /area/surface/station/park/skybridge) "ykr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -37662,8 +35981,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/outline/grey, diff --git a/maps/cynosure/cynosure-4.dmm b/maps/cynosure/cynosure-4.dmm index deece45f47..7e604a109b 100644 --- a/maps/cynosure/cynosure-4.dmm +++ b/maps/cynosure/cynosure-4.dmm @@ -66,8 +66,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -87,8 +85,6 @@ /area/tcommsat/cynosure/teleporter) "bk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -128,8 +124,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -156,8 +150,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -242,7 +234,6 @@ /area/tcommsat/cynosure/teleporter) "cO" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -252,13 +243,9 @@ /area/tcommsat/cynosure) "cR" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -268,8 +255,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -295,7 +280,6 @@ /area/tcommsat/cynosure/entrance) "dr" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -324,8 +308,6 @@ /area/tcommsat/cynosure/foyer) "dt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -350,8 +332,6 @@ /area/tcommsat/cynosure) "dI" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -422,18 +402,12 @@ /area/tcommsat/cynosure/entrance) "eF" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -444,8 +418,6 @@ /area/tcommsat/cynosure/teleporter) "eT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -458,8 +430,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -476,8 +446,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -495,8 +463,6 @@ /area/tcommsat/cynosure/teleporter) "fj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -513,8 +479,6 @@ /area/tcommsat/cynosure) "fv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -564,13 +528,9 @@ /area/tcommsat/cynosure/entrance) "go" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -584,21 +544,15 @@ /area/tcommsat/cynosure/storage) "gO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, /area/tcommsat/cynosure) "ha" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/camera/network/telecom{ @@ -630,29 +584,21 @@ /area/tcommsat/cynosure/teleporter) "hx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, /area/tcommsat/cynosure) "hy" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/tcommsat/cynosure) "hA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -688,8 +634,6 @@ }, /obj/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -705,8 +649,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -723,13 +665,9 @@ /area/tcommsat/cynosure/teleporter) "ig" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -757,11 +695,9 @@ /area/tcommsat/cynosure/foyer) "jn" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -810,8 +746,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -842,8 +776,6 @@ /area/tcommsat/cynosure/powercontrol) "jL" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -872,8 +804,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/device/radio/intercom{ @@ -884,8 +814,6 @@ /area/tcommsat/cynosure) "ke" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/camera/network/telecom{ @@ -914,8 +842,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1021,8 +947,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1037,8 +961,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1087,8 +1009,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -1134,7 +1054,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloor{ @@ -1227,25 +1146,18 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, /area/tcommsat/cynosure) "mP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/airlock_sensor/airlock_exterior{ @@ -1284,7 +1196,6 @@ /area/shuttle/escape_pod1/station) "np" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -1306,8 +1217,6 @@ /area/tcommsat/cynosure) "nw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1321,15 +1230,11 @@ /area/tcommsat/cynosure/teleporter) "ny" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/rust/mono_rusted1, @@ -1337,8 +1242,6 @@ /area/tcommsat/cynosure/teleporter) "nR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1389,8 +1292,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1443,8 +1344,6 @@ /area/tcommsat/cynosure/foyer) "ph" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1557,8 +1456,6 @@ /area/tcommsat/cynosure/storage) "pT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1664,13 +1561,9 @@ /area/tcommsat/cynosure/entrance) "re" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -1684,18 +1577,12 @@ /area/tcommsat/cynosure/foyer) "rh" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -1729,8 +1616,6 @@ "ro" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1758,8 +1643,6 @@ /area/tcommsat/cynosure/powercontrol) "rL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1787,8 +1670,6 @@ /area/tcommsat/cynosure) "rY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/black, @@ -1826,8 +1707,6 @@ /area/tcommsat/cynosure/chamber) "sp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -1863,8 +1742,6 @@ /area/tcommsat/cynosure/computer) "sN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/telecomms/server{ @@ -1889,13 +1766,9 @@ "sQ" = ( /obj/machinery/bluespace_beacon, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -1915,13 +1788,9 @@ /area/tcommsat/cynosure/chamber) "ta" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1937,8 +1806,6 @@ /area/tcommsat/cynosure/lounge) "tI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1952,8 +1819,6 @@ /area/tcommsat/cynosure/foyer) "tX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/dark, @@ -1965,8 +1830,6 @@ }, /obj/structure/window/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2059,8 +1922,6 @@ /area/tcommsat/cynosure) "vu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -2079,13 +1940,9 @@ /area/tcommsat/cynosure) "vB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/camera/network/telecom{ @@ -2096,7 +1953,6 @@ /area/tcommsat/cynosure) "vD" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2140,7 +1996,6 @@ pixel_y = -12 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -2172,8 +2027,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2194,7 +2047,6 @@ /area/tcommsat/cynosure) "wm" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2241,8 +2093,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2278,8 +2128,6 @@ /area/tcommsat/cynosure/computer) "xe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2342,8 +2190,6 @@ /area/tcommsat/cynosure/chamber) "yx" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/camera/network/telecom{ @@ -2375,8 +2221,6 @@ /area/tcommsat/cynosure) "yY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals9{ @@ -2416,25 +2260,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/tcommsat/cynosure/lounge) "zp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/grille, @@ -2533,8 +2371,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2575,13 +2411,9 @@ /area/tcommsat/cynosure/computer) "Bs" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -2627,8 +2459,6 @@ /area/tcommsat/cynosure/computer) "BI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -2686,13 +2516,9 @@ /area/tcommsat/cynosure/chamber) "Cq" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -2705,8 +2531,6 @@ /area/tcommsat/cynosure/computer) "Cx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2719,8 +2543,6 @@ /area/tcommsat/cynosure) "CF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2734,13 +2556,9 @@ /area/tcommsat/cynosure/foyer) "CM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -2762,7 +2580,6 @@ /area/tcommsat/cynosure/entrance) "CU" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/super/critical{ @@ -2782,7 +2599,6 @@ /area/tcommsat/cynosure/chamber) "De" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2887,8 +2703,6 @@ /area/tcommsat/cynosure/chamber) "Eq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2934,8 +2748,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2959,8 +2771,6 @@ }, /obj/effect/catwalk_plated/dark, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/window/southright, @@ -3016,7 +2826,6 @@ /area/tcommsat/cynosure/chamber) "FO" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/grille, @@ -3029,13 +2838,9 @@ /area/tcommsat/cynosure/chamber) "FS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3078,13 +2883,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, @@ -3137,8 +2938,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/bed/chair{ @@ -3234,7 +3033,6 @@ /area/tcommsat/cynosure/storage) "HG" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/smes/buildable{ @@ -3259,8 +3057,6 @@ /area/tcommsat/cynosure/chamber) "HL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3374,8 +3170,6 @@ /area/tcommsat/cynosure/chamber) "IC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/standard, @@ -3392,8 +3186,6 @@ /area/tcommsat/cynosure) "IH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3412,8 +3204,6 @@ /area/tcommsat/cynosure/foyer) "IV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3469,8 +3259,6 @@ /area/tcommsat/cynosure/computer) "JC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hologram/holopad, @@ -3520,8 +3308,6 @@ /area/tcommsat/cynosure/teleporter) "JX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -3624,8 +3410,6 @@ /area/tcommsat/cynosure/computer) "Lq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3644,8 +3428,6 @@ /area/tcommsat/cynosure/foyer) "LD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -3734,7 +3516,6 @@ /area/tcommsat/cynosure/foyer) "Mz" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -3766,8 +3547,6 @@ /area/tcommsat/cynosure) "ME" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -3784,8 +3563,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3818,8 +3595,6 @@ /area/tcommsat/cynosure/chamber) "Nd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3854,8 +3629,6 @@ /area/space) "NC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/telecom{ @@ -3880,8 +3653,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -3903,8 +3674,6 @@ /area/tcommsat/cynosure/chamber) "NW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external{ @@ -3950,13 +3719,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -3970,8 +3735,6 @@ /area/tcommsat/cynosure) "Om" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -4006,8 +3769,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/catwalk_plated/dark, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -4120,8 +3881,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/bed/chair{ @@ -4151,18 +3910,12 @@ /area/tcommsat/cynosure/entrance) "PU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -4175,8 +3928,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4395,8 +4146,6 @@ /area/tcommsat/cynosure/entrance) "Sy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/stack/material/plasteel, @@ -4419,8 +4168,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4453,8 +4200,6 @@ /area/tcommsat/cynosure/foyer) "SO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4467,8 +4212,6 @@ /area/tcommsat/cynosure/teleporter) "ST" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4488,8 +4231,6 @@ /area/tcommsat/cynosure/foyer) "SV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4508,13 +4249,9 @@ /area/tcommsat/cynosure) "SW" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/camera/network/telecom{ @@ -4569,8 +4306,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4589,8 +4324,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4665,8 +4398,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust/mono_rusted2, @@ -4725,7 +4456,6 @@ /area/tcommsat/cynosure/storage) "UD" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/solar, @@ -4785,8 +4515,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4840,8 +4568,6 @@ /area/tcommsat/cynosure/lounge) "VB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4884,8 +4610,6 @@ /area/tcommsat/cynosure) "VY" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/table/standard, @@ -4937,8 +4661,6 @@ /area/tcommsat/cynosure/lounge) "Wh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4954,8 +4676,6 @@ /area/tcommsat/cynosure/computer) "Wm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/table/standard, @@ -4998,8 +4718,6 @@ /area/tcommsat/cynosure/teleporter) "Xk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5041,8 +4759,6 @@ /area/tcommsat/cynosure/entrance) "Xy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/broken{ @@ -5070,8 +4786,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5127,8 +4841,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5139,8 +4851,6 @@ /area/tcommsat/cynosure) "Yw" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -5186,8 +4896,6 @@ /area/tcommsat/cynosure) "YZ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light/small{ @@ -5197,8 +4905,6 @@ /area/tcommsat/cynosure/powercontrol) "Zc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5230,8 +4936,6 @@ /area/tcommsat/cynosure/teleporter) "Zj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -5253,8 +4957,6 @@ /area/tcommsat/cynosure/entrance) "Zp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5268,13 +4970,9 @@ /area/tcommsat/cynosure/computer) "ZD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -5285,18 +4983,12 @@ /area/tcommsat/cynosure/computer) "ZS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, diff --git a/maps/cynosure/submaps/10x9/Shop.dmm b/maps/cynosure/submaps/10x9/Shop.dmm index bd27c58139..a9c4262160 100644 --- a/maps/cynosure/submaps/10x9/Shop.dmm +++ b/maps/cynosure/submaps/10x9/Shop.dmm @@ -54,8 +54,6 @@ /area/template_noop) "h" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -98,8 +96,6 @@ /area/template_noop) "n" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -118,8 +114,6 @@ /area/template_noop) "p" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -177,7 +171,6 @@ /area/template_noop) "v" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ diff --git a/maps/cynosure/submaps/10x9/TreasureHoard.dmm b/maps/cynosure/submaps/10x9/TreasureHoard.dmm index 10f0a40128..f6ae81ce97 100644 --- a/maps/cynosure/submaps/10x9/TreasureHoard.dmm +++ b/maps/cynosure/submaps/10x9/TreasureHoard.dmm @@ -87,8 +87,6 @@ /area/template_noop) "n" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -121,8 +119,6 @@ /area/template_noop) "s" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/random/junk, @@ -152,7 +148,6 @@ /area/template_noop) "v" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/item/frame/apc, @@ -298,8 +293,6 @@ /area/template_noop) "M" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ diff --git a/maps/cynosure/submaps/10x9/Warehouse1.dmm b/maps/cynosure/submaps/10x9/Warehouse1.dmm index 2b1eb6f77a..3298fa06b5 100644 --- a/maps/cynosure/submaps/10x9/Warehouse1.dmm +++ b/maps/cynosure/submaps/10x9/Warehouse1.dmm @@ -59,8 +59,6 @@ /area/template_noop) "h" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -110,8 +108,6 @@ /area/template_noop) "n" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -177,7 +173,6 @@ /area/template_noop) "v" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/item/frame/apc, @@ -301,8 +296,6 @@ /area/template_noop) "J" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ diff --git a/maps/cynosure/submaps/10x9/Warehouse2.dmm b/maps/cynosure/submaps/10x9/Warehouse2.dmm index 0388f962d1..a62e9911c5 100644 --- a/maps/cynosure/submaps/10x9/Warehouse2.dmm +++ b/maps/cynosure/submaps/10x9/Warehouse2.dmm @@ -50,8 +50,6 @@ /area/template_noop) "h" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -92,8 +90,6 @@ /area/template_noop) "n" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -154,7 +150,6 @@ /area/template_noop) "v" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/item/frame/apc, @@ -236,8 +231,6 @@ /area/template_noop) "F" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ diff --git a/maps/cynosure/submaps/10x9/Warehouse3.dmm b/maps/cynosure/submaps/10x9/Warehouse3.dmm index 81dff43138..a4238bd0d9 100644 --- a/maps/cynosure/submaps/10x9/Warehouse3.dmm +++ b/maps/cynosure/submaps/10x9/Warehouse3.dmm @@ -41,8 +41,6 @@ /area/template_noop) "h" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -91,8 +89,6 @@ /area/template_noop) "n" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -133,8 +129,6 @@ /area/template_noop) "r" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -169,7 +163,6 @@ /area/template_noop) "v" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/item/frame/apc, diff --git a/maps/cynosure/submaps/16x11/Nightclub.dmm b/maps/cynosure/submaps/16x11/Nightclub.dmm index c521f41749..393102fd48 100644 --- a/maps/cynosure/submaps/16x11/Nightclub.dmm +++ b/maps/cynosure/submaps/16x11/Nightclub.dmm @@ -118,8 +118,6 @@ /area/template_noop) "pj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -224,7 +222,6 @@ /area/template_noop) "BS" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/steeldecal/steel_decals_central7{ @@ -429,8 +426,6 @@ /area/template_noop) "Ul" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/cap/hidden/supply, diff --git a/maps/cynosure/submaps/16x11/OldDorms.dmm b/maps/cynosure/submaps/16x11/OldDorms.dmm index 445e2357b9..bf9a15c9a4 100644 --- a/maps/cynosure/submaps/16x11/OldDorms.dmm +++ b/maps/cynosure/submaps/16x11/OldDorms.dmm @@ -1,101 +1,845 @@ -"aF" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/dark,/area/template_noop) -"aK" = (/turf/simulated/floor/tiled/freezer,/area/template_noop) -"bo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/stack/tile/floor,/turf/simulated/floor/plating,/area/template_noop) -"bt" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/template_noop) -"bx" = (/obj/structure/bed/chair/sofa/right/beige{dir = 4},/turf/simulated/floor/wood/broken,/area/template_noop) -"bI" = (/obj/machinery/vending/snack{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) -"cy" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor/tiled/dark,/area/template_noop) -"cD" = (/obj/item/weapon/camera_assembly,/turf/simulated/floor/tiled,/area/template_noop) -"cL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/template_noop) -"df" = (/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/curtain/open/shower,/obj/structure/windoor_assembly,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"dm" = (/obj/random/obstruction,/turf/simulated/floor/tiled/dark,/area/template_noop) -"dr" = (/obj/machinery/shower{pixel_y = 3},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"el" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/stack/tile/floor,/obj/item/device/radio/intercom{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/template_noop) -"eH" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/item/frame/mirror,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"eO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood,/area/template_noop) -"eQ" = (/turf/simulated/floor/tiled,/area/template_noop) -"fe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/template_noop) -"fI" = (/obj/structure/closet/crate/engineering,/obj/random/contraband,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/sign/poster{dir = 4; pixel_x = 32; poster_decl = /decl/poster/bay_29},/obj/item/frame/apc,/obj/item/frame/light,/turf/simulated/floor/tiled,/area/template_noop) -"if" = (/turf/simulated/floor/plating,/area/template_noop) -"iM" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/template_noop) -"jy" = (/obj/machinery/computer/guestpass{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/template_noop) -"jV" = (/obj/structure/closet/cabinet,/obj/random/contraband,/obj/random/drinkbottle,/obj/item/weapon/melee/umbrella/random,/turf/simulated/floor/wood,/area/template_noop) -"ku" = (/obj/structure/table/standard,/obj/random/tool,/turf/simulated/floor/plating,/area/template_noop) -"lo" = (/obj/structure/firedoor_assembly,/turf/simulated/floor/tiled/steel_grid,/area/template_noop) -"lB" = (/obj/structure/table/standard,/obj/machinery/light_construct{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/template_noop) -"mk" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/wood,/area/template_noop) -"mP" = (/obj/structure/door_assembly,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/broken,/area/template_noop) -"mQ" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/obj/item/stack/cable_coil,/turf/simulated/floor/plating,/area/template_noop) -"nY" = (/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/plating,/area/template_noop) -"oR" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber,/obj/item/poster/custom,/turf/simulated/floor/wood,/area/template_noop) -"pj" = (/obj/item/tape/engineering,/obj/structure/disposalpipe/broken,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers,/obj/machinery/atmospherics/pipe/cap/hidden/supply,/turf/simulated/floor/plating,/area/template_noop) -"qb" = (/obj/structure/closet/wardrobe/suit,/turf/simulated/floor/tiled/dark,/area/template_noop) -"qG" = (/obj/machinery/vending/fitness{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) -"su" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/tiled/dark,/area/template_noop) -"sx" = (/obj/structure/toilet,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"up" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4},/turf/simulated/floor/tiled,/area/template_noop) -"vL" = (/turf/simulated/floor/wood/broken,/area/template_noop) -"wm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/template_noop) -"xc" = (/obj/structure/closet/wardrobe/xenos,/turf/simulated/floor/tiled/dark,/area/template_noop) -"xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/template_noop) -"xI" = (/obj/structure/bed/double,/obj/item/device/radio/intercom{dir = 1; pixel_y = 21},/turf/simulated/floor/wood/broken,/area/template_noop) -"zm" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/template_noop) -"zr" = (/obj/effect/graffitispawner{color = "#00B7EF"; color_secondary = "#0082A8"; graffiti_type = "amyjon"},/turf/simulated/floor/tiled/freezer,/area/template_noop) -"zO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/template_noop) -"zX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/taperoll/engineering,/turf/simulated/floor/tiled,/area/template_noop) -"zZ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/template_noop) -"Ag" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/template_noop) -"Bj" = (/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/wood,/area/template_noop) -"BS" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light_switch{pixel_x = 12; pixel_y = 24},/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/template_noop) -"Cb" = (/obj/structure/table/standard,/obj/random/toolbox,/turf/simulated/floor/plating,/area/template_noop) -"CK" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/template_noop) -"CQ" = (/obj/structure/table/standard,/obj/random/soap,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"Di" = (/obj/item/stack/tile/floor,/turf/simulated/floor/plating,/area/template_noop) -"DA" = (/obj/machinery/vending/coffee{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) -"DV" = (/turf/template_noop,/area/template_noop) -"Eo" = (/turf/simulated/floor/wood,/area/template_noop) -"Fn" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/turf/simulated/floor/tiled,/area/template_noop) -"FE" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/template_noop) -"FP" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/template_noop) -"GY" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 4},/obj/item/weapon/stool{dir = 1},/turf/simulated/floor/tiled,/area/template_noop) -"It" = (/obj/machinery/newscaster{pixel_y = 26},/turf/simulated/floor/wood,/area/template_noop) -"IJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/template_noop) -"Jm" = (/obj/structure/closet/cabinet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/clothing/under/dress/maid/sexy,/obj/item/clothing/head/kitty,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/template_noop) -"Lz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/template_noop) -"LZ" = (/obj/structure/table/standard,/obj/item/frame,/turf/simulated/floor/wood,/area/template_noop) -"MG" = (/obj/machinery/vending/cola{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) -"MI" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/turf/simulated/floor/wood,/area/template_noop) -"NW" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/turf/simulated/floor/plating,/area/template_noop) -"Od" = (/obj/structure/bed/chair/sofa/right/beige{dir = 4},/obj/item/frame/apc,/turf/simulated/floor/wood,/area/template_noop) -"QN" = (/turf/simulated/wall,/area/template_noop) -"QT" = (/obj/structure/table/standard,/obj/machinery/light_construct{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/turf/simulated/floor/wood,/area/template_noop) -"Rm" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/tiled/dark,/area/template_noop) -"Ru" = (/obj/item/frame/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/template_noop) -"SS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/template_noop) -"Td" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/tiled/freezer,/area/template_noop) -"TQ" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver,/obj/item/clothing/head/soft/grey{pixel_x = -2; pixel_y = 3},/turf/simulated/floor/plating,/area/template_noop) -"Ul" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/template_noop) -"Vt" = (/obj/structure/bed/chair/sofa/left/beige{dir = 4},/turf/simulated/floor/wood,/area/template_noop) -"Xg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/dark,/area/template_noop) -"Xi" = (/obj/structure/table/standard,/obj/item/frame,/turf/simulated/floor/plating,/area/template_noop) -"Xz" = (/obj/item/frame/extinguisher_cabinet,/turf/simulated/floor/tiled/dark,/area/template_noop) -"Yu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/template_noop) -"YN" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/obj/item/weapon/handcuffs/fuzzy{pixel_x = -5},/obj/item/device/radio/intercom{pixel_y = -21},/turf/simulated/floor/wood,/area/template_noop) -"YR" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/plating,/area/template_noop) -"Zv" = (/obj/machinery/door/airlock{name = "Dorm 2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/broken,/area/template_noop) -"ZB" = (/obj/structure/closet/wardrobe/black,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/template_noop) -"ZD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/template_noop) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"aK" = ( +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"bo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/template_noop) +"bt" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"bx" = ( +/obj/structure/bed/chair/sofa/right/beige{ + dir = 4 + }, +/turf/simulated/floor/wood/broken, +/area/template_noop) +"bI" = ( +/obj/machinery/vending/snack{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"cy" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"cD" = ( +/obj/item/weapon/camera_assembly, +/turf/simulated/floor/tiled, +/area/template_noop) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/template_noop) +"df" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/obj/structure/windoor_assembly, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"dm" = ( +/obj/random/obstruction, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"dr" = ( +/obj/machinery/shower{ + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Shower" + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"el" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/stack/tile/floor, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"eH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/frame/mirror, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"eO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"eQ" = ( +/turf/simulated/floor/tiled, +/area/template_noop) +"fe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"fI" = ( +/obj/structure/closet/crate/engineering, +/obj/random/contraband, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/structure/sign/poster{ + dir = 4; + pixel_x = 32; + poster_decl = /decl/poster/bay_29 + }, +/obj/item/frame/apc, +/obj/item/frame/light, +/turf/simulated/floor/tiled, +/area/template_noop) +"if" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"iM" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/template_noop) +"jy" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"jV" = ( +/obj/structure/closet/cabinet, +/obj/random/contraband, +/obj/random/drinkbottle, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/wood, +/area/template_noop) +"ku" = ( +/obj/structure/table/standard, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/template_noop) +"lo" = ( +/obj/structure/firedoor_assembly, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"lB" = ( +/obj/structure/table/standard, +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/template_noop) +"mk" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/template_noop) +"mP" = ( +/obj/structure/door_assembly, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/broken, +/area/template_noop) +"mQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plating, +/area/template_noop) +"nY" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"oR" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_scrubber, +/obj/item/poster/custom, +/turf/simulated/floor/wood, +/area/template_noop) +"pj" = ( +/obj/item/tape/engineering, +/obj/structure/disposalpipe/broken, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/cap/hidden/supply, +/turf/simulated/floor/plating, +/area/template_noop) +"qb" = ( +/obj/structure/closet/wardrobe/suit, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"qG" = ( +/obj/machinery/vending/fitness{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"su" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"sx" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"up" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"vL" = ( +/turf/simulated/floor/wood/broken, +/area/template_noop) +"wm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"xc" = ( +/obj/structure/closet/wardrobe/xenos, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"xI" = ( +/obj/structure/bed/double, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/wood/broken, +/area/template_noop) +"zm" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/template_noop) +"zr" = ( +/obj/effect/graffitispawner{ + color = "#00B7EF"; + color_secondary = "#0082A8"; + graffiti_type = "amyjon" + }, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"zO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"zX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/item/taperoll/engineering, +/turf/simulated/floor/tiled, +/area/template_noop) +"zZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Ag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"Bj" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"BS" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Cb" = ( +/obj/structure/table/standard, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/template_noop) +"CK" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"CQ" = ( +/obj/structure/table/standard, +/obj/random/soap, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"Di" = ( +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/template_noop) +"DA" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"DV" = ( +/turf/template_noop, +/area/template_noop) +"Eo" = ( +/turf/simulated/floor/wood, +/area/template_noop) +"Fn" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"FE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"FP" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"GY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 4 + }, +/obj/item/weapon/stool{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"It" = ( +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"IJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Jm" = ( +/obj/structure/closet/cabinet, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/item/clothing/under/dress/maid/sexy, +/obj/item/clothing/head/kitty, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/template_noop) +"Lz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/template_noop) +"LZ" = ( +/obj/structure/table/standard, +/obj/item/frame, +/turf/simulated/floor/wood, +/area/template_noop) +"MG" = ( +/obj/machinery/vending/cola{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"MI" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"NW" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Od" = ( +/obj/structure/bed/chair/sofa/right/beige{ + dir = 4 + }, +/obj/item/frame/apc, +/turf/simulated/floor/wood, +/area/template_noop) +"QN" = ( +/turf/simulated/wall, +/area/template_noop) +"QT" = ( +/obj/structure/table/standard, +/obj/machinery/light_construct{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"Rm" = ( +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Ru" = ( +/obj/item/frame/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"SS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/template_noop) +"Td" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/template_noop) +"TQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/coin/silver, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Ul" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Vt" = ( +/obj/structure/bed/chair/sofa/left/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"Xg" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Xi" = ( +/obj/structure/table/standard, +/obj/item/frame, +/turf/simulated/floor/plating, +/area/template_noop) +"Xz" = ( +/obj/item/frame/extinguisher_cabinet, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"Yu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"YN" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/obj/item/weapon/handcuffs/fuzzy{ + pixel_x = -5 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/wood, +/area/template_noop) +"YR" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/template_noop) +"Zv" = ( +/obj/machinery/door/airlock{ + name = "Dorm 2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/broken, +/area/template_noop) +"ZB" = ( +/obj/structure/closet/wardrobe/black, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/template_noop) +"ZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/template_noop) (1,1,1) = {" -QNQNQNQNQNQNQNpjQNQNQNQNQNQNQNDV -QNbIifzZjyelBSUlQNVtItxIQNQNQNQN -QNDADiNWzmifmQSSQNOdYuQTQNeHsxQN -QNMGifDiTQXiDifemPAgwmEoCKaKRuQN -QNqGififkuCbZDIJQNLZMIjVQNCQdfQN -QNFPDiifnYYRbobtQNQNQNQNQNQNQNQN -QNXzeQcDQNQNiMfIQNmkoRJmQNCQdrQN -QNaFeQGYdmdmzOcLZvAgxvvLloaKzrQN -QNXgupLzLzLzzXFnQNVteOlBQNFETdQN -QNQNqbZBRmsucyxcQNbxBjYNQNQNQNQN -DVQNQNQNQNQNQNQNQNQNQNQNQNQNQNDV +QN +QN +QN +QN +QN +QN +QN +QN +QN +QN +DV +"} +(2,1,1) = {" +QN +bI +DA +MG +qG +FP +Xz +aF +Xg +QN +QN +"} +(3,1,1) = {" +QN +if +Di +if +if +Di +eQ +eQ +up +qb +QN +"} +(4,1,1) = {" +QN +zZ +NW +Di +if +if +cD +GY +Lz +ZB +QN +"} +(5,1,1) = {" +QN +jy +zm +TQ +ku +nY +QN +dm +Lz +Rm +QN +"} +(6,1,1) = {" +QN +el +if +Xi +Cb +YR +QN +dm +Lz +su +QN +"} +(7,1,1) = {" +QN +BS +mQ +Di +ZD +bo +iM +zO +zX +cy +QN +"} +(8,1,1) = {" +pj +Ul +SS +fe +IJ +bt +fI +cL +Fn +xc +QN +"} +(9,1,1) = {" +QN +QN +QN +mP +QN +QN +QN +Zv +QN +QN +QN +"} +(10,1,1) = {" +QN +Vt +Od +Ag +LZ +QN +mk +Ag +Vt +bx +QN +"} +(11,1,1) = {" +QN +It +Yu +wm +MI +QN +oR +xv +eO +Bj +QN +"} +(12,1,1) = {" +QN +xI +QT +Eo +jV +QN +Jm +vL +lB +YN +QN +"} +(13,1,1) = {" +QN +QN +QN +CK +QN +QN +QN +lo +QN +QN +QN +"} +(14,1,1) = {" +QN +QN +eH +aK +CQ +QN +CQ +aK +FE +QN +QN +"} +(15,1,1) = {" +QN +QN +sx +Ru +df +QN +dr +zr +Td +QN +QN +"} +(16,1,1) = {" +DV +QN +QN +QN +QN +QN +QN +QN +QN +QN +DV "} diff --git a/maps/cynosure/submaps/7x7/JanitorCloset.dmm b/maps/cynosure/submaps/7x7/JanitorCloset.dmm index b9fd202ff4..418e962c52 100644 --- a/maps/cynosure/submaps/7x7/JanitorCloset.dmm +++ b/maps/cynosure/submaps/7x7/JanitorCloset.dmm @@ -199,8 +199,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/spider/stickyweb, diff --git a/maps/cynosure/submaps/7x7/PartyRoom.dmm b/maps/cynosure/submaps/7x7/PartyRoom.dmm index 6755f1b891..f037d74450 100644 --- a/maps/cynosure/submaps/7x7/PartyRoom.dmm +++ b/maps/cynosure/submaps/7x7/PartyRoom.dmm @@ -21,7 +21,6 @@ "e" = ( /obj/random/obstruction, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -114,8 +113,6 @@ /area/template_noop) "Q" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/carpet/purcarpet, diff --git a/maps/cynosure/submaps/9x10/ShootingRange.dmm b/maps/cynosure/submaps/9x10/ShootingRange.dmm index fdf72ef3b6..beb9623289 100644 --- a/maps/cynosure/submaps/9x10/ShootingRange.dmm +++ b/maps/cynosure/submaps/9x10/ShootingRange.dmm @@ -46,8 +46,6 @@ "m" = ( /obj/item/tape/police, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -65,8 +63,6 @@ /area/template_noop) "p" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -133,8 +129,6 @@ /area/template_noop) "B" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -175,8 +169,6 @@ "M" = ( /obj/machinery/door/window/northleft, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, diff --git a/maps/cynosure/submaps/9x8/GamesRoom.dmm b/maps/cynosure/submaps/9x8/GamesRoom.dmm index e645987162..4f8f965ab3 100644 --- a/maps/cynosure/submaps/9x8/GamesRoom.dmm +++ b/maps/cynosure/submaps/9x8/GamesRoom.dmm @@ -22,8 +22,6 @@ /area/template_noop) "e" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -68,8 +66,6 @@ /area/template_noop) "q" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/template_noop, @@ -123,8 +119,6 @@ /area/template_noop) "B" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, diff --git a/maps/cynosure/submaps/9x8/HotTub.dmm b/maps/cynosure/submaps/9x8/HotTub.dmm index 95c3a2c957..1446861e78 100644 --- a/maps/cynosure/submaps/9x8/HotTub.dmm +++ b/maps/cynosure/submaps/9x8/HotTub.dmm @@ -1,48 +1,377 @@ -"a" = (/turf/simulated/wall,/area/template_noop) -"b" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"c" = (/obj/effect/floor_decal/spline/plain{dir = 5},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"d" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"e" = (/obj/structure/closet/crate/engineering,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas/clear,/obj/item/weapon/reagent_containers/glass/bucket,/obj/random/medical/lite,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"f" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"g" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"i" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"j" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"l" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"n" = (/obj/structure/table/rack,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"o" = (/obj/machinery/door/airlock{name = "Construction Area"},/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/template_noop) -"q" = (/obj/machinery/pump,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"t" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/obj/effect/floor_decal/techfloor/orange/corner,/obj/structure/sign/poster/custom{dir = 1; pixel_y = 32; poster_decl = /decl/poster/bay_11},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"u" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/item/stack/tile/floor/techgrey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"w" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/obj/effect/floor_decal/techfloor/orange/corner{dir = 8},/obj/item/clothing/suit/caution,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"x" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"B" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"D" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"E" = (/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"G" = (/obj/machinery/atmospherics/pipe/cap/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/template_noop) -"H" = (/turf/template_noop,/area/template_noop) -"I" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"J" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/obj/effect/floor_decal/techfloor/orange/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"L" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/obj/effect/floor_decal/techfloor/orange/corner{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"M" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/template_noop) -"N" = (/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"P" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/template_noop,/area/template_noop) -"Q" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"R" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"S" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"T" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/obj/structure/closet/athletic_swimwear,/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"U" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/template_noop) -"V" = (/obj/structure/cable,/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 12},/obj/random/trash,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/steeldecal/steel_decals_central7{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"W" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) -"Y" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) -"Z" = (/obj/effect/floor_decal/techfloor/orange,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall, +/area/template_noop) +"b" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"c" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"d" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"e" = ( +/obj/structure/closet/crate/engineering, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/mask/gas/clear, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/random/medical/lite, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"f" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"g" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"i" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"j" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"l" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"n" = ( +/obj/structure/table/rack, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"o" = ( +/obj/machinery/door/airlock{ + name = "Construction Area" + }, +/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"q" = ( +/obj/machinery/pump, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"t" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/orange/corner, +/obj/structure/sign/poster/custom{ + dir = 1; + pixel_y = 32; + poster_decl = /decl/poster/bay_11 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"u" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/item/stack/tile/floor/techgrey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"w" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/obj/item/clothing/suit/caution, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"x" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"B" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"D" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"E" = ( +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"G" = ( +/obj/machinery/atmospherics/pipe/cap/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/template_noop) +"H" = ( +/turf/template_noop, +/area/template_noop) +"I" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"J" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"L" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"M" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/template_noop) +"N" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"P" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/template_noop, +/area/template_noop) +"Q" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"R" = ( +/obj/structure/closet, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"S" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"T" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1 + }, +/obj/structure/closet/athletic_swimwear, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"U" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/template_noop) +"V" = ( +/obj/structure/cable, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/random/trash, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"W" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool{ + name = "hot tub" + }, +/area/template_noop) +"Y" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) +"Z" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/alarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/template_noop) (1,1,1) = {" -Haaaaaaaa -HaetlZlwa -PMfYWScBa -HaVYxEjia -aaDYIbQBa -aUdJuggLa -aUqNGnRTa -aaaaoaaaa +H +H +P +H +a +a +a +a +"} +(2,1,1) = {" +a +a +M +a +a +U +U +a +"} +(3,1,1) = {" +a +e +f +V +D +d +q +a +"} +(4,1,1) = {" +a +t +Y +Y +Y +J +N +a +"} +(5,1,1) = {" +a +l +W +x +I +u +G +o +"} +(6,1,1) = {" +a +Z +S +E +b +g +n +a +"} +(7,1,1) = {" +a +l +c +j +Q +g +R +a +"} +(8,1,1) = {" +a +w +B +i +B +L +T +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a "} diff --git a/maps/cynosure/submaps/9x8/ServerRoom.dmm b/maps/cynosure/submaps/9x8/ServerRoom.dmm index 86f9f325ba..54b87e94ee 100644 --- a/maps/cynosure/submaps/9x8/ServerRoom.dmm +++ b/maps/cynosure/submaps/9x8/ServerRoom.dmm @@ -19,8 +19,6 @@ /area/template_noop) "k" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/template_noop, @@ -45,8 +43,6 @@ /area/template_noop) "t" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, diff --git a/maps/example/example-1.dmm b/maps/example/example-1.dmm index 799cf42ce9..d25d2c6858 100644 --- a/maps/example/example-1.dmm +++ b/maps/example/example-1.dmm @@ -175,7 +175,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/dark, @@ -202,8 +201,6 @@ /area/aisat) "E" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/white/diagonal, @@ -222,8 +219,6 @@ /area/aisat) "H" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/white/diagonal, @@ -251,7 +246,6 @@ icon_state = "capacitor" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -261,8 +255,6 @@ anchored = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -274,12 +266,9 @@ icon_state = "capacitor" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -287,13 +276,9 @@ "O" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, diff --git a/maps/example/example-2.dmm b/maps/example/example-2.dmm index adf8dbf052..ffb00707dc 100644 --- a/maps/example/example-2.dmm +++ b/maps/example/example-2.dmm @@ -166,7 +166,6 @@ "A" = ( /obj/machinery/power/debug_items/infinite_generator, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light{ @@ -177,8 +176,6 @@ /area/aisat_interior) "B" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -190,12 +187,9 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light{ @@ -206,8 +200,6 @@ /area/aisat_interior) "D" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/lime/diagonal, @@ -228,7 +220,6 @@ "H" = ( /obj/structure/lattice, /obj/structure/cable/yellow{ - d1 = 32; icon_state = "32-1" }, /turf/simulated/open, diff --git a/maps/expedition_vr/aerostat/_aerostat.dm b/maps/expedition_vr/aerostat/_aerostat.dm index 6626fbe2e9..d1e50cc78f 100644 --- a/maps/expedition_vr/aerostat/_aerostat.dm +++ b/maps/expedition_vr/aerostat/_aerostat.dm @@ -282,22 +282,22 @@ VIRGO2_TURF_CREATE(/turf/simulated/floor/hull) ambience = null /area/offmap/aerostat/surface/outpost/backroom - name = "V4 Outpost - Research Area" + name = "V2 Outpost - Research Area" /area/offmap/aerostat/surface/outpost/hallway - name = "V4 Outpost - Hallway" + name = "V2 Outpost - Hallway" /area/offmap/aerostat/surface/outpost/cafe - name = "V4 Outpost - Cafe" + name = "V2 Outpost - Cafe" /area/offmap/aerostat/surface/outpost/park - name = "V4 Outpost - Park" + name = "V2 Outpost - Park" /area/offmap/aerostat/surface/outpost/officerone - name = "V4 Outpost - Officer's Quarters 1" + name = "V2 Outpost - Officer's Quarters 1" /area/offmap/aerostat/surface/outpost/officertwo - name = "V4 Outpost - Officer's Quarters 2" + name = "V2 Outpost - Officer's Quarters 2" /area/offmap/aerostat/surface/outpost/barracks - name = "V4 Outpost - Barracks" + name = "V2 Outpost - Barracks" /area/offmap/aerostat/surface/outpost/airlock - name = "V4 Outpost - Airlock" + name = "V2 Outpost - Airlock" /area/offmap/aerostat/surface/outpost/powerroom - name = "V4 Outpost - Power Room" + name = "V2 Outpost - Power Room" /area/offmap/aerostat/surface/outpost/guardpost - name = "V4 Outpost - Guard Post" + name = "V2 Outpost - Guard Post" diff --git a/maps/expedition_vr/aerostat/aerostat.dmm b/maps/expedition_vr/aerostat/aerostat.dmm index 9e305251e0..2f9706cefa 100644 --- a/maps/expedition_vr/aerostat/aerostat.dmm +++ b/maps/expedition_vr/aerostat/aerostat.dmm @@ -19,8 +19,6 @@ /area/tether_away/aerostat/inside) "ae" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -31,7 +29,6 @@ /area/tether_away/aerostat/solars) "af" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -43,8 +40,6 @@ /area/tether_away/aerostat/solars) "ag" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -119,7 +114,6 @@ /area/tether_away/aerostat/inside) "aq" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -170,7 +164,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/rust, @@ -181,8 +174,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -209,8 +200,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -234,13 +223,9 @@ /area/tether_away/aerostat/solars) "aE" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -259,7 +244,6 @@ /area/tether_away/aerostat/inside) "aG" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -268,13 +252,9 @@ /area/tether_away/aerostat/solars) "aH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/rust, @@ -303,8 +283,6 @@ /area/tether_away/aerostat/inside) "aM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/bluegrid/virgo2, @@ -366,7 +344,6 @@ "aU" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/rust, @@ -374,13 +351,9 @@ /area/tether_away/aerostat/solars) "aV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -406,13 +379,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -420,8 +389,6 @@ /area/tether_away/aerostat/solars) "aZ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/rust, @@ -429,13 +396,9 @@ /area/tether_away/aerostat/solars) "ba" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -443,8 +406,6 @@ /area/tether_away/aerostat/solars) "bb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -452,13 +413,9 @@ /area/tether_away/aerostat/solars) "bc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -547,13 +504,9 @@ /area/tether_away/aerostat/inside) "bt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -561,8 +514,6 @@ /area/tether_away/aerostat/solars) "bu" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -886,8 +837,6 @@ /area/tether_away/aerostat/inside) "cx" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -1002,8 +951,6 @@ "cP" = ( /obj/tether_away_spawner/aerostat_inside, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -1083,8 +1030,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -1092,13 +1037,9 @@ /area/tether_away/aerostat/solars) "dc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1109,13 +1050,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -1123,13 +1060,9 @@ /area/tether_away/aerostat/solars) "de" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -1160,7 +1093,6 @@ }, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/rust, @@ -1199,7 +1131,6 @@ }, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/rust, @@ -1213,16 +1144,12 @@ icon_state = "0-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "do" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -1236,8 +1163,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -1245,8 +1170,6 @@ /area/tether_away/aerostat/solars) "dq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1270,8 +1193,6 @@ /area/tether_away/aerostat/inside) "dt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust, @@ -1279,13 +1200,9 @@ /area/tether_away/aerostat/solars) "du" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -1296,8 +1213,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/rust, @@ -1309,13 +1224,9 @@ /area/tether_away/aerostat/solars) "dx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -1333,13 +1244,9 @@ /area/tether_away/aerostat/inside) "dz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust, @@ -1352,13 +1259,9 @@ /area/tether_away/aerostat/solars) "dB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1369,13 +1272,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1398,8 +1297,6 @@ /area/tether_away/aerostat/solars) "dF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -1410,7 +1307,6 @@ /area/tether_away/aerostat/solars) "dG" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/dust, @@ -1420,8 +1316,6 @@ /area/tether_away/aerostat/solars) "dH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/dust, @@ -1430,7 +1324,6 @@ /area/tether_away/aerostat/solars) "dI" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -1459,8 +1352,6 @@ icon_state = "0-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/bluegrid/virgo2, @@ -1468,7 +1359,6 @@ "dM" = ( /obj/machinery/power/smes/buildable, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/bluegrid/virgo2, @@ -1506,7 +1396,6 @@ /obj/machinery/power/solar, /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/rust, @@ -1515,8 +1404,6 @@ "dS" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1527,8 +1414,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, diff --git a/maps/expedition_vr/alienship/alienship.dmm b/maps/expedition_vr/alienship/alienship.dmm index 18737671f6..bbe4d4fd3b 100644 --- a/maps/expedition_vr/alienship/alienship.dmm +++ b/maps/expedition_vr/alienship/alienship.dmm @@ -179,7 +179,7 @@ /area/tether_away/alienship) "aK" = ( /obj/structure/closet/crate, -/obj/item/weapon/tool/crowbar/power, +/obj/item/weapon/tool/transforming/jawsoflife, /obj/item/weapon/tool/wrench, /turf/simulated/shuttle/floor/alien, /area/tether_away/alienship) @@ -196,7 +196,7 @@ "aM" = ( /obj/structure/closet/crate, /obj/item/weapon/tool/crowbar/red, -/obj/item/weapon/tool/screwdriver/power, +/obj/item/weapon/tool/transforming/powerdrill, /obj/item/weapon/tool/wirecutters, /turf/simulated/shuttle/floor/alien, /area/tether_away/alienship) diff --git a/maps/expedition_vr/beach/beach.dmm b/maps/expedition_vr/beach/beach.dmm index f30d64f3f4..d763c2118c 100644 --- a/maps/expedition_vr/beach/beach.dmm +++ b/maps/expedition_vr/beach/beach.dmm @@ -19,8 +19,6 @@ "af" = ( /obj/structure/grille, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -323,8 +321,6 @@ /area/tether_away/beach/jungle) "bT" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -431,13 +427,9 @@ /area/tether_away/beach/resort/lockermed) "eV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -520,8 +512,6 @@ /area/tether_away/beach/water) "gU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -543,8 +533,6 @@ /area/tether_away/beach/resort) "hq" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/weapon/stool/padded{ @@ -580,7 +568,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -599,8 +586,6 @@ pixel_y = 18 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -620,8 +605,6 @@ /area/tether_away/beach/resort/janibar) "jc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -640,8 +623,6 @@ /area/tether_away/beach/resort) "jQ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -666,14 +647,12 @@ pixel_x = -27 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/kafel_full/white, /area/tether_away/beach/resort/lockermed) "ku" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/smes/buildable/offmap_spawn/empty, @@ -689,8 +668,6 @@ /area/tether_away/beach/resort) "kO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -709,16 +686,12 @@ pixel_y = 18 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, /area/tether_away/beach/resort/dorm2) "kT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -732,7 +705,6 @@ wall_mounted = 1 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/alarms_hidden{ @@ -767,7 +739,6 @@ pixel_x = -27 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/wood, @@ -789,7 +760,6 @@ pixel_y = 26 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/wood, @@ -825,7 +795,6 @@ "mM" = ( /obj/machinery/power/solar_control, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -835,18 +804,12 @@ /area/tether_away/beach/powershed) "mS" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -862,7 +825,6 @@ /area/tether_away/beach/resort/dorm4) "nm" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/tracker, @@ -903,8 +865,6 @@ /area/tether_away/beach/jungle) "oF" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/stool/padded{ @@ -932,23 +892,15 @@ /area/tether_away/beach/cavebase) "py" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -963,8 +915,6 @@ /area/tether_away/beach/resort) "pC" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light_switch{ @@ -977,18 +927,12 @@ /area/tether_away/beach/resort/dorm4) "pF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1014,13 +958,9 @@ /area/tether_away/beach/jungle) "qi" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1050,8 +990,6 @@ pixel_y = 18 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -1102,8 +1040,6 @@ /area/tether_away/beach/resort/janibar) "to" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -1118,18 +1054,12 @@ /area/tether_away/beach) "ts" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1161,8 +1091,6 @@ /area/tether_away/beach/resort) "uL" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light_switch{ @@ -1214,8 +1142,6 @@ /area/tether_away/beach/resort) "wM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -1287,8 +1213,6 @@ "zb" = ( /obj/structure/table/woodentable, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -1307,8 +1231,6 @@ /area/tether_away/beach/powershed) "zP" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -1328,8 +1250,6 @@ /area/tether_away/beach/resort/kitchen) "zZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -1446,8 +1366,6 @@ /area/tether_away/beach/resort) "Cr" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1486,7 +1404,6 @@ /area/tether_away/beach/jungle) "DA" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/item/solar_assembly, @@ -1505,8 +1422,6 @@ name = "Love Shack 2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -1541,7 +1456,6 @@ pixel_x = 22 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/wood, @@ -1568,8 +1482,6 @@ /area/tether_away/beach/resort) "Fm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1588,16 +1500,12 @@ name = "Love Shack 3" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel, /area/tether_away/beach/resort/dorm3) "Gr" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/kafel_full/white, @@ -1647,8 +1555,6 @@ name = "Love Shack 1" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -1659,8 +1565,6 @@ /area/tether_away/beach/resort) "Ja" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/wood, @@ -1676,8 +1580,6 @@ "Jn" = ( /obj/machinery/door/airlock/sandstone, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -1688,8 +1590,6 @@ /area/tether_away/beach/water) "JU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1742,8 +1642,6 @@ name = "Love Shack 4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -1786,18 +1684,12 @@ /area/tether_away/beach/water) "Mp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1806,13 +1698,9 @@ /area/tether_away/beach/resort) "ME" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1832,8 +1720,6 @@ /area/tether_away/beach/resort/dorm2) "Nt" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1931,8 +1817,6 @@ /area/tether_away/beach/resort/dorm2) "Rh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1941,7 +1825,6 @@ /area/tether_away/beach/resort) "Rm" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/alarms_hidden{ @@ -1966,13 +1849,9 @@ /area/tether_away/beach/resort/dorm4) "Rx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -1997,7 +1876,6 @@ pixel_x = 22 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/wood, @@ -2009,8 +1887,6 @@ /area/tether_away/beach/water) "RX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -2049,8 +1925,6 @@ req_one_access = list() }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -2088,8 +1962,6 @@ /area/tether_away/beach/resort) "Uk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel, @@ -2109,8 +1981,6 @@ /area/tether_away/beach/resort/janibar) "UQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -2176,8 +2046,6 @@ pixel_y = 18 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -2204,8 +2072,6 @@ /area/tether_away/beach/resort/kitchen) "XZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -2232,8 +2098,6 @@ /area/tether_away/beach/resort) "Yq" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -2257,8 +2121,6 @@ /area/tether_away/beach/jungle) "YR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -2277,18 +2139,12 @@ /area/tether_away/beach/cavebase) "ZA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel{ @@ -2300,13 +2156,9 @@ /area/tether_away/beach/cavebase) "ZX" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel{ diff --git a/maps/expedition_vr/beach/submaps/Rockb1.dmm b/maps/expedition_vr/beach/submaps/Rockb1.dmm index 7290e089cd..e85a8b4a56 100644 --- a/maps/expedition_vr/beach/submaps/Rockb1.dmm +++ b/maps/expedition_vr/beach/submaps/Rockb1.dmm @@ -117,16 +117,12 @@ /area/submap/Rockb1) "A" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/submap/Rockb1) "B" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -136,15 +132,12 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/submap/Rockb1) "D" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ diff --git a/maps/expedition_vr/beach/submaps/deadBeacon.dmm b/maps/expedition_vr/beach/submaps/deadBeacon.dmm index 0b01461d31..eda6b1e6dc 100644 --- a/maps/expedition_vr/beach/submaps/deadBeacon.dmm +++ b/maps/expedition_vr/beach/submaps/deadBeacon.dmm @@ -88,7 +88,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor/tiled/asteroid_steel, /area/submap/cave/deadBeacon) diff --git a/maps/expedition_vr/beach/submaps/digsite.dmm b/maps/expedition_vr/beach/submaps/digsite.dmm index 1ec8bcde48..8f8d0d7085 100644 --- a/maps/expedition_vr/beach/submaps/digsite.dmm +++ b/maps/expedition_vr/beach/submaps/digsite.dmm @@ -89,14 +89,12 @@ "w" = ( /obj/machinery/power/port_gen/pacman/super, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/external, /area/submap/cave/digsite) "x" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/external, diff --git a/maps/expedition_vr/beach/submaps/quarantineshuttle.dmm b/maps/expedition_vr/beach/submaps/quarantineshuttle.dmm index beeb7784ff..efb45b4947 100644 --- a/maps/expedition_vr/beach/submaps/quarantineshuttle.dmm +++ b/maps/expedition_vr/beach/submaps/quarantineshuttle.dmm @@ -823,7 +823,7 @@ /area/submap/cave/qShuttle) "ck" = ( /obj/structure/table/steel, -/obj/item/weapon/tool/crowbar/power, +/obj/item/weapon/tool/transforming/jawsoflife, /turf/simulated/mineral/floor/ignore_mapgen/cave, /area/submap/cave/qShuttle) "cl" = ( diff --git a/maps/expedition_vr/space/fueldepot.dmm b/maps/expedition_vr/space/fueldepot.dmm index 062c7b576d..20c22865ff 100644 --- a/maps/expedition_vr/space/fueldepot.dmm +++ b/maps/expedition_vr/space/fueldepot.dmm @@ -10,8 +10,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ @@ -42,8 +40,6 @@ /area/tether_away/fueldepot) "ae" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/aux{ @@ -82,8 +78,6 @@ /area/tether_away/fueldepot) "ai" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/fuel{ @@ -108,8 +102,6 @@ /area/tether_away/fueldepot) "al" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/fuel{ @@ -141,8 +133,6 @@ "ao" = ( /obj/machinery/atmospherics/pipe/simple/visible/fuel, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -165,8 +155,6 @@ /area/tether_away/fueldepot) "ar" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ @@ -244,16 +232,12 @@ /area/space) "aD" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/shuttle/plating/airless, @@ -298,8 +282,6 @@ icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/shuttle/plating/airless, @@ -343,8 +325,6 @@ /area/tether_away/fueldepot) "aP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint/airless, @@ -432,8 +412,6 @@ /area/tether_away/fueldepot) "aX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -478,8 +456,6 @@ /area/tether_away/fueldepot) "be" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -530,8 +506,6 @@ /area/tether_away/fueldepot) "bk" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ @@ -553,8 +527,6 @@ /area/tether_away/fueldepot) "bm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/fuel, @@ -682,8 +654,6 @@ /area/tether_away/fueldepot) "bA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/fuel{ @@ -698,13 +668,9 @@ /area/tether_away/fueldepot) "bB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/visible/fuel{ @@ -722,8 +688,6 @@ /area/tether_away/fueldepot) "bD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/aux, @@ -836,8 +800,6 @@ /area/tether_away/fueldepot) "bO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/aux{ @@ -851,8 +813,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -932,8 +892,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/visible/aux, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated/dark, @@ -1086,8 +1044,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -1127,8 +1083,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/shuttle/plating/airless, @@ -1202,8 +1156,6 @@ /area/tether_away/fueldepot) "cF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/aux{ @@ -1230,8 +1182,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/dark, @@ -1242,8 +1192,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ @@ -1332,8 +1280,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, diff --git a/maps/gateway_archive_vr/Academy.dmm b/maps/gateway_archive_vr/Academy.dmm index 90aa18dea9..1aa4550433 100644 --- a/maps/gateway_archive_vr/Academy.dmm +++ b/maps/gateway_archive_vr/Academy.dmm @@ -46,7 +46,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -63,16 +62,12 @@ /area/awaymission/academy/headmaster) "al" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet, /area/awaymission/academy/headmaster) "am" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -81,8 +76,6 @@ /area/awaymission/academy/headmaster) "an" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -90,16 +83,12 @@ /area/awaymission/academy/headmaster) "ao" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/carpet, /area/awaymission/academy/headmaster) "ap" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -124,8 +113,6 @@ "at" = ( /obj/structure/mineral_door/wood, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -133,13 +120,9 @@ /area/awaymission/academy/headmaster) "au" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -147,8 +130,6 @@ /area/awaymission/academy/headmaster) "av" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/carpet, @@ -168,8 +149,6 @@ /area/awaymission/academy/headmaster) "az" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/stack/sheet/animalhide/monkey, @@ -177,7 +156,6 @@ /area/awaymission/academy/headmaster) "aA" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light/small{ @@ -211,8 +189,6 @@ /area/awaymission/academy/headmaster) "aG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -270,8 +246,6 @@ locked = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet, @@ -285,8 +259,6 @@ /area/awaymission/academy/headmaster) "aS" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -316,8 +288,6 @@ "aY" = ( /obj/structure/table/woodentable, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -357,8 +327,6 @@ "bf" = ( /obj/structure/table/woodentable, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -380,8 +348,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -413,8 +379,6 @@ "bo" = ( /obj/machinery/door/airlock/gold, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -553,8 +517,6 @@ /area/awaymission/academy/headmaster) "bL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor{ @@ -563,8 +525,6 @@ /area/awaymission/academy/headmaster) "bM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -575,8 +535,6 @@ /area/awaymission/academy/headmaster) "bN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -587,8 +545,6 @@ "bO" = ( /obj/effect/decal/cleanable/cobweb2, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -604,8 +560,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -628,7 +582,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor, /area/awaymission/academy/classrooms) @@ -676,8 +629,6 @@ /area/awaymission/academy/headmaster) "cc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -693,8 +644,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -718,8 +667,6 @@ "cg" = ( /obj/structure/table/standard, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -743,8 +690,6 @@ /area/awaymission/academy/headmaster) "ck" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -772,8 +717,6 @@ "co" = ( /obj/structure/table/standard, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -816,8 +759,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -832,8 +773,6 @@ "cx" = ( /obj/structure/table/standard, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -862,22 +801,16 @@ /area/awaymission/academy/headmaster) "cC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet, /area/awaymission/academy/headmaster) "cD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -891,8 +824,6 @@ "cF" = ( /obj/structure/table/standard, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -916,8 +847,6 @@ /area/awaymission/academy/headmaster) "cJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -996,16 +925,12 @@ /area/awaymission/academy/headmaster) "cU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, /area/awaymission/academy/classrooms) "cV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1013,8 +938,6 @@ /area/awaymission/academy/classrooms) "cW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1024,8 +947,6 @@ /area/awaymission/academy/classrooms) "cX" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor, @@ -1110,7 +1031,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor/plating, /area/awaymission/academy/classrooms) @@ -1122,7 +1042,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor/greengrid, /area/awaymission/academy/classrooms) @@ -1168,13 +1087,9 @@ /area/awaymission/academy/classrooms) "dv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark{ @@ -1185,8 +1100,6 @@ /area/awaymission/academy/classrooms) "dw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1195,19 +1108,13 @@ /area/awaymission/academy/classrooms) "dx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/reagent_dispensers/fueltank, @@ -1215,13 +1122,9 @@ /area/awaymission/academy/classrooms) "dy" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1285,16 +1188,12 @@ /area/awaymission/academy/classrooms) "dK" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/awaymission/academy/classrooms) "dL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1306,8 +1205,6 @@ "dM" = ( /obj/machinery/door/airlock/freezer, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1317,8 +1214,6 @@ /area/awaymission/academy/classrooms) "dN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1328,8 +1223,6 @@ /area/awaymission/academy/classrooms) "dO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -1349,8 +1242,6 @@ "dR" = ( /obj/structure/mineral_door/iron, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1376,8 +1267,6 @@ /area/awaymission/academy/classrooms) "dW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1414,8 +1303,6 @@ /area/awaymission/academy/classrooms) "ec" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1462,7 +1349,6 @@ "eh" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -1480,8 +1366,6 @@ /area/awaymission/academy/classrooms) "ej" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1549,8 +1433,6 @@ /area/awaymission/academy/classrooms) "et" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1565,8 +1447,6 @@ "ev" = ( /obj/machinery/door/airlock/freezer, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1632,8 +1512,6 @@ /area/awaymission/academy/classrooms) "eF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1674,8 +1552,6 @@ /area/awaymission/academy/classrooms) "eL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1731,8 +1607,6 @@ /area/awaymission/academy/classrooms) "eT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1780,16 +1654,12 @@ /area/awaymission/academy/classrooms) "eZ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet, /area/awaymission/academy/classrooms) "fa" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1797,22 +1667,16 @@ /area/awaymission/academy/classrooms) "fb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/carpet, /area/awaymission/academy/classrooms) "fc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1823,8 +1687,6 @@ "fd" = ( /obj/structure/mineral_door/wood, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1834,8 +1696,6 @@ /area/awaymission/academy/classrooms) "fe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1847,8 +1707,6 @@ "ff" = ( /obj/structure/table/standard, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1860,8 +1718,6 @@ "fg" = ( /obj/structure/table/reinforced, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1872,8 +1728,6 @@ /area/awaymission/academy/classrooms) "fh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1884,8 +1738,6 @@ /area/awaymission/academy/classrooms) "fi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -1976,13 +1828,9 @@ /area/awaymission/academy/classrooms) "ft" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -1992,8 +1840,6 @@ /area/awaymission/academy/classrooms) "fu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2009,8 +1855,6 @@ /area/awaymission/academy/classrooms) "fv" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -2019,13 +1863,9 @@ /area/awaymission/academy/classrooms) "fw" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -2034,13 +1874,9 @@ /area/awaymission/academy/classrooms) "fx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2060,8 +1896,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -2073,8 +1907,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2087,8 +1919,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -2098,8 +1928,6 @@ /area/awaymission/academy/academyaft) "fD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2115,8 +1943,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -2124,8 +1950,6 @@ "fG" = ( /obj/machinery/shieldwallgen, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2136,8 +1960,6 @@ /area/awaymission/academy/classrooms) "fH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2148,8 +1970,6 @@ /area/awaymission/academy/classrooms) "fI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -2187,7 +2007,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor{ icon_state = "vault" @@ -2246,8 +2065,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2287,8 +2104,6 @@ /area/awaymission/academy/classrooms) "ge" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2298,8 +2113,6 @@ /area/awaymission/academy/academyaft) "gf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/carpet, @@ -2312,8 +2125,6 @@ /area/awaymission/academy/classrooms) "gh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2360,8 +2171,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2379,8 +2188,6 @@ /area/awaymission/academy/classrooms) "gp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2456,8 +2263,6 @@ /area/awaymission/academy/classrooms) "gz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2465,8 +2270,6 @@ /area/awaymission/academy/academyaft) "gA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/carpet, @@ -2552,14 +2355,10 @@ /area/awaymission/academy/classrooms) "gM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet, @@ -2569,8 +2368,6 @@ locked = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2578,8 +2375,6 @@ /area/awaymission/academy/classrooms) "gO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2590,8 +2385,6 @@ /area/awaymission/academy/classrooms) "gP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -2621,7 +2414,6 @@ "gS" = ( /obj/machinery/shieldwallgen, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor{ @@ -2648,8 +2440,6 @@ "gW" = ( /obj/structure/mineral_door/wood, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2664,16 +2454,12 @@ /area/awaymission/academy/academyaft) "gZ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, /area/awaymission/academy/academyaft) "ha" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2681,14 +2467,10 @@ /area/awaymission/academy/academyaft) "hb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor{ @@ -2697,8 +2479,6 @@ /area/awaymission/academy/academyaft) "hc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2708,8 +2488,6 @@ /area/awaymission/academy/academyaft) "hd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -2719,7 +2497,6 @@ "he" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -2735,7 +2512,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor/plating, /area/awaymission/academy/academyaft) @@ -2774,16 +2550,12 @@ /area/awaymission/academy/academyaft) "hm" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/awaymission/academy/academyaft) "hn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2793,8 +2565,6 @@ /area/awaymission/academy/academyaft) "ho" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2802,8 +2572,6 @@ /area/awaymission/academy/academyaft) "hp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2811,7 +2579,6 @@ /area/awaymission/academy/academyaft) "hq" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -2819,8 +2586,6 @@ "hr" = ( /obj/machinery/power/smes/magical, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2832,19 +2597,14 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/plating, /area/awaymission/academy/academyaft) "ht" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2854,8 +2614,6 @@ /area/awaymission/academy/academyaft) "hu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -2864,14 +2622,10 @@ /area/awaymission/academy/academyaft) "hv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -2880,8 +2634,6 @@ /area/awaymission/academy/academyaft) "hw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2890,27 +2642,19 @@ /area/awaymission/academy/academyaft) "hx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, /area/awaymission/academy/academyaft) "hy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2921,8 +2665,6 @@ /area/awaymission/academy/academyaft) "hz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2930,8 +2672,6 @@ /area/awaymission/academy/academyaft) "hA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2942,36 +2682,26 @@ /area/awaymission/academy/academyaft) "hB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/carpet, /area/awaymission/academy/academyaft) "hC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet, /area/awaymission/academy/academyaft) "hD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2983,27 +2713,19 @@ /area/awaymission/academy/academyaft) "hE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, /area/awaymission/academy/academyaft) "hF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -3016,8 +2738,6 @@ /area/awaymission/academy/academyaft) "hH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3025,8 +2745,6 @@ /area/awaymission/academy/academyaft) "hI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3132,8 +2850,6 @@ /area/awaymission/academy/academyaft) "hY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3142,14 +2858,10 @@ /area/awaymission/academy/academyaft) "hZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -3174,8 +2886,6 @@ /area/awaymission/academy/academyaft) "id" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3405,8 +3115,6 @@ /area/awaymission/academy/academyaft) "iG" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -3449,21 +3157,15 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, /area/awaymission/academy/academyaft) "iM" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3476,13 +3178,9 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3493,8 +3191,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless{ @@ -3550,8 +3246,6 @@ health = 1e+007 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3559,14 +3253,10 @@ /area/awaymission/academy/academyaft) "iW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless{ @@ -3576,8 +3266,6 @@ /area/awaymission/academy/academyaft) "iX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3593,7 +3281,6 @@ health = 1e+007 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -3605,8 +3292,6 @@ /area/awaymission/academy/academyaft) "ja" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3629,8 +3314,6 @@ /area/awaymission/academy/academyaft) "jd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3672,8 +3355,6 @@ /area/awaymission/academy/academyaft) "ji" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless{ @@ -3684,7 +3365,6 @@ "jj" = ( /obj/structure/grille, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/item/weapon/shard, @@ -3765,8 +3445,6 @@ /area/awaymission/academy/academyaft) "jv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3789,16 +3467,12 @@ /area/awaymission/academy/academyaft) "jy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/carpet, /area/awaymission/academy/academyaft) "jz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3842,8 +3516,6 @@ "jF" = ( /obj/machinery/door/airlock/hatch, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet, @@ -3863,8 +3535,6 @@ /area/awaymission/academy/academygate) "jJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3890,8 +3560,6 @@ /area/awaymission/academy/academygate) "jO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3904,22 +3572,16 @@ /area/awaymission/academy/academygate) "jQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/carpet, /area/awaymission/academy/academygate) "jR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3927,8 +3589,6 @@ /area/awaymission/academy/academygate) "jS" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/carpet, @@ -3942,8 +3602,6 @@ /area/awaymission/academy/academygate) "jV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet, @@ -3958,7 +3616,6 @@ }, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /turf/simulated/floor/carpet, /area/awaymission/academy/academygate) @@ -3970,22 +3627,17 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor/plating, /area/awaymission/academy/academygate) "jZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, /area/awaymission/academy/academygate) "ka" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/carpet, @@ -3995,8 +3647,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -4006,8 +3656,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, diff --git a/maps/gateway_archive_vr/blackmarketpackers.dmm b/maps/gateway_archive_vr/blackmarketpackers.dmm index d9f05180a6..a2173b3e04 100644 --- a/maps/gateway_archive_vr/blackmarketpackers.dmm +++ b/maps/gateway_archive_vr/blackmarketpackers.dmm @@ -216,8 +216,6 @@ /area/awaymission/BMPship1) "aL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating/airless, @@ -225,8 +223,6 @@ "aM" = ( /obj/machinery/optable, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -235,7 +231,6 @@ "aN" = ( /obj/machinery/computer/operating, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/airless, @@ -324,8 +319,6 @@ /area/awaymission/BMPship1) "aZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating/airless, @@ -453,8 +446,6 @@ /area/awaymission/BMPship1) "bu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/clothing/glasses/regular/hipster, @@ -462,8 +453,6 @@ /area/awaymission/BMPship1) "bv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -472,8 +461,6 @@ "bw" = ( /obj/machinery/door/unpowered/shuttle, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -481,8 +468,6 @@ /area/awaymission/BMPship1) "bx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -493,8 +478,6 @@ /area/awaymission/BMPship1) "by" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -517,14 +500,11 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/plating, /area/awaymission/BMPship1) "bC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -535,7 +515,6 @@ /area/awaymission/BMPship1) "bD" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -567,8 +546,6 @@ /area/awaymission/BMPship1) "bJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -655,16 +632,12 @@ /area/awaymission/BMPship1) "bY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, /area/awaymission/BMPship1) "bZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -673,8 +646,6 @@ /area/awaymission/BMPship1) "ca" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -682,8 +653,6 @@ /area/awaymission/BMPship1) "cb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -826,8 +795,6 @@ /area/awaymission/BMPship1) "cv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating{ @@ -866,7 +833,6 @@ "cA" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -1028,8 +994,6 @@ /area/awaymission/BMPship1) "cU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/poddoor/shutters{ @@ -1051,8 +1015,6 @@ /area/awaymission/BMPship3) "cX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1149,8 +1111,6 @@ /area/awaymission/BMPship1) "dn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -1178,8 +1138,6 @@ /area/awaymission/BMPship3) "ds" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -1189,8 +1147,6 @@ /area/awaymission/BMPship3) "dt" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -1218,7 +1174,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor{ icon_state = "barber" @@ -1249,7 +1204,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor{ icon_state = "showroomfloor" @@ -1296,7 +1250,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -1349,8 +1302,6 @@ /area/awaymission/BMPship3) "dN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1391,13 +1342,9 @@ /area/awaymission/BMPship2) "dT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1406,8 +1353,6 @@ /area/awaymission/BMPship2) "dU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1417,8 +1362,6 @@ /area/awaymission/BMPship2) "dV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -1428,8 +1371,6 @@ "dW" = ( /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1438,21 +1379,15 @@ /area/awaymission/BMPship1) "dX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/awaymission/BMPship1) "dY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1462,36 +1397,26 @@ /area/awaymission/BMPship1) "dZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/awaymission/BMPship1) "ea" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, /area/awaymission/BMPship1) "eb" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light/small{ @@ -1564,8 +1489,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1583,8 +1506,6 @@ /area/awaymission/BMPship2) "em" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor{ @@ -1593,8 +1514,6 @@ /area/awaymission/BMPship2) "en" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1604,8 +1523,6 @@ /area/awaymission/BMPship2) "eo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1625,8 +1542,6 @@ /area/awaymission/BMPship2) "er" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1652,8 +1567,6 @@ /area/awaymission/BMPship1) "eu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1661,8 +1574,6 @@ /area/awaymission/BMPship1) "ev" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1708,13 +1619,9 @@ /area/awaymission/BMPship3) "eB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -1724,8 +1631,6 @@ "eC" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1736,8 +1641,6 @@ /area/awaymission/BMPship2) "eD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -1748,19 +1651,14 @@ /obj/machinery/shieldwallgen, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/plating, /area/awaymission/BMPship2) "eF" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1770,7 +1668,6 @@ "eG" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /obj/machinery/power/apc{ dir = 1; @@ -1822,8 +1719,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -1873,8 +1768,6 @@ /area/awaymission/BMPship1) "eS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1888,8 +1781,6 @@ name = "power storage unit" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1901,19 +1792,14 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/plating, /area/awaymission/BMPship1) "eV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1959,8 +1845,6 @@ /area/awaymission/BMPship3) "fa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor{ @@ -2030,8 +1914,6 @@ /area/awaymission/BMPship1) "fk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -2076,8 +1958,6 @@ /area/awaymission/BMPship1) "fq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2085,8 +1965,6 @@ /area/awaymission/BMPship1) "fr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2104,8 +1982,6 @@ /area/awaymission/BMPship1) "ft" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor{ @@ -2115,8 +1991,6 @@ /area/awaymission/BMPship3) "fu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2127,8 +2001,6 @@ /area/awaymission/BMPship3) "fv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2139,8 +2011,6 @@ /area/awaymission/BMPship3) "fw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -2150,13 +2020,9 @@ /area/awaymission/BMPship3) "fx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor{ @@ -2165,14 +2031,10 @@ /area/awaymission/BMPship2) "fy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -2181,13 +2043,9 @@ /area/awaymission/BMPship2) "fz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -2254,8 +2112,6 @@ /area/awaymission/BMPship3) "fI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2300,13 +2156,9 @@ /area/awaymission/BMPship2) "fO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -2315,8 +2167,6 @@ /area/awaymission/BMPship2) "fP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2326,8 +2176,6 @@ /area/awaymission/BMPship1) "fQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2337,13 +2185,9 @@ /area/awaymission/BMPship1) "fR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -2371,8 +2215,6 @@ /area/awaymission/BMPship1) "fV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor{ @@ -2386,8 +2228,6 @@ /area/awaymission/BMPship1) "fX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2452,8 +2292,6 @@ /area/awaymission/BMPship1) "gg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2475,8 +2313,6 @@ /area/awaymission/BMPship3) "gj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2601,8 +2437,6 @@ amount = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating/airless, @@ -2612,8 +2446,6 @@ icon_state = "small" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2621,8 +2453,6 @@ /area/awaymission/BMPship3) "gD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2632,8 +2462,6 @@ /area/awaymission/BMPship3) "gE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating/airless{ @@ -2642,8 +2470,6 @@ /area/awaymission/BMPship3) "gF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/weapon/kitchenknife, @@ -2661,8 +2487,6 @@ /area/awaymission/BMPship2) "gH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -2671,8 +2495,6 @@ /area/awaymission/BMPship1) "gI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2682,8 +2504,6 @@ /area/awaymission/BMPship1) "gJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -2731,8 +2551,6 @@ /area/awaymission/BMPship3) "gR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2745,8 +2563,6 @@ /area/awaymission/BMPship2) "gT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor{ @@ -2774,8 +2590,6 @@ /area/awaymission/BMPship1) "gX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2841,8 +2655,6 @@ locked = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -2850,8 +2662,6 @@ "hh" = ( /obj/machinery/door/unpowered/shuttle, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2880,8 +2690,6 @@ /area/awaymission/BMPship3) "hm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/silver, @@ -3039,21 +2847,15 @@ "hP" = ( /obj/effect/decal/remains/human, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/awaymission/BMPship1) "hQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3061,20 +2863,15 @@ /area/awaymission/BMPship1) "hR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, /area/awaymission/BMPship1) "hS" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -3141,8 +2938,6 @@ /obj/item/weapon/bedsheet, /obj/item/weapon/storage/wallet/random, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -3174,14 +2969,11 @@ "ii" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/plating/airless, /area/awaymission) "ij" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3190,8 +2982,6 @@ "ik" = ( /obj/machinery/door/unpowered/shuttle, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3199,8 +2989,6 @@ /area/awaymission/BMPship1) "il" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3208,8 +2996,6 @@ /area/awaymission/BMPship1) "im" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, diff --git a/maps/gateway_archive_vr/carpfarm.dmm b/maps/gateway_archive_vr/carpfarm.dmm index 6156c8b62a..b3162b0453 100644 --- a/maps/gateway_archive_vr/carpfarm.dmm +++ b/maps/gateway_archive_vr/carpfarm.dmm @@ -1,261 +1,20629 @@ -"aa" = (/turf/space,/area/space) -"ab" = (/obj/effect/blocker,/turf/space{density = 1; desc = "You can't go there!"; name = "The 4th Wall"},/area/space) -"ac" = (/turf/simulated/mineral,/area/space) -"ad" = (/obj/effect/blocker,/turf/space,/area/space) -"ae" = (/mob/living/simple_mob/animal/space/carp,/turf/space,/area/space) -"ah" = (/turf/simulated/mineral/floor/ignore_mapgen,/area/space) -"ai" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/mineral/floor/ignore_mapgen,/area/space) -"aj" = (/obj/item/weapon/pickaxe/jackhammer,/turf/simulated/mineral/floor/ignore_mapgen,/area/space) -"ak" = (/turf/simulated/mineral,/area/mine/unexplored) -"al" = (/obj/structure/lattice,/turf/space,/area/space) -"am" = (/turf/simulated/wall/iron,/area/awaymission/carpfarm/base) -"an" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"ao" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"ap" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/port_gen/pacman,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aq" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"ar" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"as" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"at" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5},/obj/machinery/door/window,/turf/simulated/floor/tiled/freezer,/area/awaymission/carpfarm/base) -"au" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) -"av" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) -"aw" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) -"ax" = (/obj/structure/table/woodentable,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) -"ay" = (/obj/structure/bedsheetbin,/obj/machinery/light{dir = 1},/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) -"az" = (/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/paper/awaygate/carpfarm/suicide,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aA" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aB" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aC" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"aD" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"aE" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"aF" = (/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) -"aG" = (/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) -"aH" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) -"aI" = (/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) -"aJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aK" = (/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aL" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe/jackhammer,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aM" = (/obj/machinery/gateway{density = 0; dir = 10},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"aN" = (/obj/machinery/gateway,/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"aO" = (/obj/machinery/gateway{density = 0; dir = 6},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) -"aP" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{dir = 4; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) -"aQ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"aR" = (/obj/structure/table/woodentable,/obj/random/action_figure,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) -"aS" = (/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"aT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"aU" = (/obj/structure/closet/jcloset,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"aV" = (/obj/structure/closet/secure_closet/medical1,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"aW" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aX" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aY" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"aZ" = (/obj/machinery/door/airlock,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) -"ba" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"bb" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bc" = (/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"be" = (/obj/structure/closet/gimmick/russian,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bf" = (/obj/structure/closet/gimmick/russian,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/item/trash/syndi_cakes,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bh" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/under/syndicate/tacticool,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bi" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/costume,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bj" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bk" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bl" = (/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bm" = (/obj/structure/closet/crate/plastic,/obj/random/contraband,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bn" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/weapon,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bo" = (/obj/machinery/door/airlock/mining,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bp" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bq" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"br" = (/obj/item/mecha_parts/mecha_equipment/tool/drill,/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bs" = (/obj/structure/ore_box,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bt" = (/obj/machinery/light{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bu" = (/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bw" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -2; pixel_y = 6},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bx" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"by" = (/obj/machinery/vending/coffee{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bz" = (/obj/machinery/vending/sovietsoda,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bA" = (/obj/machinery/vending/snack{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bB" = (/obj/machinery/vending/cigarette{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bC" = (/obj/machinery/vending/dinnerware,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bD" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bE" = (/obj/structure/closet/crate/secure/weapon,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bF" = (/obj/structure/dispenser/oxygen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bI" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bJ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1375; master_tag = "carp_airlock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = newlist()},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bK" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bL" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bM" = (/obj/mecha/working/hoverpod/combatpod,/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bN" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bO" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) -"bP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/iron,/area/awaymission/carpfarm/base) -"bQ" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_inner"; locked = 1; name = "External Access"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"bR" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bS" = (/obj/item/weapon/reagent_containers/food/snacks/cubancarp,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bT" = (/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bU" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1375; id_tag = "carp_airlock"; pixel_x = -28; pixel_y = 0; req_access = null; tag_airpump = "carp_pump"; tag_chamber_sensor = "carp_sensor"; tag_exterior_door = "carp_outer"; tag_interior_door = "carp_inner"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 8},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"bW" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"bX" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/airlock_sensor{frequency = 1375; id_tag = "carp_sensor"; pixel_x = 28},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"bY" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"bZ" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"ca" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/candy/proteinbar,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) -"cb" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_outer"; locked = 1; name = "External Access"; req_access = newlist()},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) -"cc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) -"cd" = (/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) -"ce" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1375; master_tag = "carp_airlock"; name = "exterior access button"; pixel_x = 26; pixel_y = 26; req_access = newlist()},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) -"cf" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"cg" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/airless,/area/space) -"ch" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/airless,/area/space) -"ci" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/airless,/area/space) -"cj" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/space) -"ck" = (/turf/simulated/floor/airless,/area/space) -"cl" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/airless,/area/space) -"cm" = (/obj/effect/gibspawner/human,/turf/simulated/floor/airless,/area/space) -"cn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/airless,/area/space) -"co" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space) -"cp" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/airless,/area/space) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/obj/effect/blocker, +/turf/space{ + density = 1; + desc = "You can't go there!"; + name = "The 4th Wall" + }, +/area/space) +"ac" = ( +/turf/simulated/mineral, +/area/space) +"ad" = ( +/obj/effect/blocker, +/turf/space, +/area/space) +"ae" = ( +/mob/living/simple_mob/animal/space/carp, +/turf/space, +/area/space) +"ah" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"ai" = ( +/obj/effect/landmark{ + name = "awaystart" + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"aj" = ( +/obj/item/weapon/pickaxe/jackhammer, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"ak" = ( +/turf/simulated/mineral, +/area/mine/unexplored) +"al" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"am" = ( +/turf/simulated/wall/iron, +/area/awaymission/carpfarm/base) +"an" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/smes/buildable, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"ao" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"ap" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aq" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"ar" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"as" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"at" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/machinery/door/window, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/carpfarm/base) +"au" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"av" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aw" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"ax" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"ay" = ( +/obj/structure/bedsheetbin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"az" = ( +/obj/item/weapon/storage/toolbox/electrical, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/weapon/paper/awaygate/carpfarm/suicide, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aB" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aC" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aD" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aE" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aF" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aG" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aH" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed/padded, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aI" = ( +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aJ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aK" = ( +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aL" = ( +/obj/structure/closet/toolcloset, +/obj/item/weapon/pickaxe/jackhammer, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aM" = ( +/obj/machinery/gateway{ + density = 0; + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aN" = ( +/obj/machinery/gateway, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aO" = ( +/obj/machinery/gateway{ + density = 0; + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aR" = ( +/obj/structure/table/woodentable, +/obj/random/action_figure, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aS" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aU" = ( +/obj/structure/closet/jcloset, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aV" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aW" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aX" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aY" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aZ" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"ba" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bb" = ( +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bc" = ( +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"be" = ( +/obj/structure/closet/gimmick/russian, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bf" = ( +/obj/structure/closet/gimmick/russian, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer, +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bh" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/under/syndicate/tacticool, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/costume, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bj" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/internals, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bl" = ( +/obj/structure/closet/crate/internals, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bm" = ( +/obj/structure/closet/crate/plastic, +/obj/random/contraband, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bn" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bo" = ( +/obj/machinery/door/airlock/mining, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bp" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bq" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"br" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bs" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bu" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bv" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bw" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bx" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"by" = ( +/obj/machinery/vending/coffee{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bz" = ( +/obj/machinery/vending/sovietsoda, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bA" = ( +/obj/machinery/vending/snack{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bB" = ( +/obj/machinery/vending/cigarette{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bC" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bD" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bE" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bF" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1375; + master_tag = "carp_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = -26; + req_one_access = newlist() + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bK" = ( +/obj/machinery/suit_cycler/mining, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bL" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bM" = ( +/obj/mecha/working/hoverpod/combatpod, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bN" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/turf/simulated/wall/iron, +/area/awaymission/carpfarm/base) +"bQ" = ( +/obj/machinery/door/airlock/external{ + frequency = 1375; + icon_state = "door_locked"; + id_tag = "carp_inner"; + locked = 1; + name = "External Access"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bS" = ( +/obj/item/weapon/reagent_containers/food/snacks/cubancarp, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bT" = ( +/obj/item/weapon/reagent_containers/food/snacks/carpmeat, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1375; + id_tag = "carp_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1375; + id_tag = "carp_airlock"; + pixel_x = -28; + req_access = null; + tag_airpump = "carp_pump"; + tag_chamber_sensor = "carp_sensor"; + tag_exterior_door = "carp_outer"; + tag_interior_door = "carp_inner" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1375; + id_tag = "carp_pump" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bX" = ( +/obj/structure/closet/emcloset, +/obj/item/weapon/storage/toolbox/emergency, +/obj/machinery/airlock_sensor{ + frequency = 1375; + id_tag = "carp_sensor"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"ca" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/closet/crate/bin, +/obj/item/trash/candy/proteinbar, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"cb" = ( +/obj/machinery/door/airlock/external{ + frequency = 1375; + icon_state = "door_locked"; + id_tag = "carp_outer"; + locked = 1; + name = "External Access"; + req_access = newlist() + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"cc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"cd" = ( +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"ce" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1375; + master_tag = "carp_airlock"; + name = "exterior access button"; + pixel_x = 26; + pixel_y = 26; + req_access = newlist() + }, +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"cf" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"cg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/airless, +/area/space) +"ch" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"ci" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/space) +"cj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/space) +"ck" = ( +/turf/simulated/floor/airless, +/area/space) +"cl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/space) +"cm" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/airless, +/area/space) +"cn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/space) +"co" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/space) +"cp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/space) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaeaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaeaaaaacacacacacacacacacacacacacahahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahahahahahacacahahacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahaiahahahajahahahaiahahacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahaiahahacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahaiahahahacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahajahahaiahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahacacacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahaiahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahahahahacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacaaaaaaaaacacaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamamamamamamamamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamanaoapamaqarasamatauavawamaxayaxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamazaAaBamaCaDaEamaFaGamamamaHaIaHamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaMaNaOamaPaGavawamaIaIaIamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaQaQaQamaPaGamamamaRaIaxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaSaSaSamaPaGavawamaHaIaHamaTaTaSaSaUaVaVamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamaWamamamaXamamamaYamamamamaZamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbdbcbcbcbdbcbcbcbcbdbcbcbcambebfaSaSbgbhbiamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbjaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcambkblaSaSbmaTbnamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamamamboamamambpamamamambpamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambqbrbsbtbubcbvambwbxbybzbAbBbxbCambDbEaSaSaTaTaTamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbcbcbcbcbFambxbxbxbxbxbxbxbxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbGbHbIbJbKambxbxbxbLbLbxbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambMbNbObPbQbQamambxbxbRbSbTbUbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamambVbWbXambYbxbxbZbZbxbxcaamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalalalalalamcbcbamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalaaaaaacccdcecdakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaaaaacgchchciaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaalaacjckckclaaalaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjcmckclalalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaacfaaaaaacncococpaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaacfaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaacacaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacacacaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaacacacacacacacacacacacacacacacacacacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahaiahahahaiahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahahahahahahahahaiahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacahahahahahajahahahahahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababadaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +aj +ai +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ai +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +ai +ah +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ae +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ai +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +aj +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ai +ah +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ai +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +ak +ak +ak +ak +ak +ak +aa +ak +ak +ak +am +am +am +am +am +am +am +ba +ba +ba +am +am +am +am +am +am +al +al +cf +cf +cf +cf +cf +cf +cf +cf +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +an +az +aJ +aJ +aJ +am +bb +bb +bb +am +bq +bc +bc +bM +am +al +aa +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ao +aA +aK +aK +aK +aW +bc +bc +bc +am +br +bc +bc +bN +am +al +aa +aa +al +al +al +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ap +aB +aL +aL +aL +am +bc +bc +bc +am +bs +bc +bG +bO +am +al +aa +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +bt +bc +bH +bP +am +am +cc +cg +cj +cj +cj +cj +cj +cn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aq +aC +aM +aQ +aS +am +bc +bc +bc +am +bu +bc +bI +bQ +bV +cb +cd +ch +ck +ck +ck +ck +cm +co +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ar +aD +aN +aQ +aS +aX +bc +bc +bc +bo +bc +bc +bJ +bQ +bW +cb +ce +ch +ck +ck +ck +ck +ck +co +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +as +aE +aO +aQ +aS +am +bc +bc +bc +am +bv +bF +bK +am +bX +am +cd +ci +cl +cl +cl +cl +cl +cp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +am +am +am +am +am +am +ak +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +at +aF +aP +aP +aP +am +bc +bc +bc +am +bw +bx +bx +bx +bY +am +ak +ak +al +al +al +al +al +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +au +aG +aG +aG +aG +aY +bc +bc +bc +bp +bx +bx +bx +bx +bx +am +ak +ak +ak +al +aa +al +al +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +av +am +av +am +av +am +bc +bc +bc +am +by +bx +bx +bR +bx +am +ak +ak +ak +ak +ak +ak +al +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aw +am +aw +am +aw +am +bc +bc +bc +am +bz +bx +bL +bS +bZ +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +bA +bx +bL +bT +bZ +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ax +aH +aI +aR +aH +am +bc +bc +bc +am +bB +bx +bx +bU +bx +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ay +aI +aI +aI +aI +aZ +bc +bc +bc +bp +bx +bx +bx +bx +bx +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ax +aH +aI +ax +aH +am +bc +bc +bc +am +bC +bx +bx +bx +ca +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +bj +am +am +am +am +am +am +am +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aT +aS +be +aS +bk +aS +bD +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aT +aS +bf +aS +bl +aS +bE +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aS +aS +aS +aS +aS +aS +aS +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aS +aS +aS +aS +aS +aS +aS +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aU +aS +bg +aS +bm +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aV +aS +bh +aS +aT +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aV +aS +bi +aS +bn +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ae +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +ai +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +aj +ah +ai +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ai +ah +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa "} diff --git a/maps/gateway_archive_vr/challenge.dmm b/maps/gateway_archive_vr/challenge.dmm index 3b083c956b..e220370544 100644 --- a/maps/gateway_archive_vr/challenge.dmm +++ b/maps/gateway_archive_vr/challenge.dmm @@ -1228,7 +1228,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor{ icon_state = "vault"; @@ -1256,8 +1255,6 @@ /area/awaymission/challenge/end) "dd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1305,8 +1302,6 @@ /area/awaymission/challenge/end) "di" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1371,14 +1366,10 @@ /area/awaymission/challenge/end) "do" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /mob/living/simple_mob/hostile/syndicate{ @@ -1390,8 +1381,6 @@ /area/awaymission/challenge/end) "dp" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ diff --git a/maps/gateway_archive_vr/example.dmm b/maps/gateway_archive_vr/example.dmm index 8d1ca09ba3..d6cabf7e47 100644 --- a/maps/gateway_archive_vr/example.dmm +++ b/maps/gateway_archive_vr/example.dmm @@ -21,7 +21,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor, /area/awaymission/example) @@ -32,7 +31,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor, /area/awaymission/example) @@ -46,7 +44,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /turf/simulated/floor, /area/awaymission/example) @@ -70,31 +67,21 @@ /area/awaymission/example) "ak" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/awaymission/example) "al" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -102,8 +89,6 @@ /area/awaymission/example) "am" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -118,7 +103,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /obj/machinery/gateway/centeraway, /turf/simulated/floor, @@ -131,8 +115,6 @@ /area/awaymission/example) "aq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -151,8 +133,6 @@ "at" = ( /obj/machinery/gateway, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -162,8 +142,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -171,7 +149,6 @@ /area/awaymission/example) "av" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -182,15 +159,12 @@ "ax" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/plating, /area/awaymission/example) "ay" = ( /obj/machinery/light/small, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -198,8 +172,6 @@ /area/awaymission/example) "az" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -207,8 +179,6 @@ /area/awaymission/example) "aA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/decal/cleanable/oil, diff --git a/maps/gateway_archive_vr/listeningpost.dm b/maps/gateway_archive_vr/listeningpost.dm index 734d77b1aa..2d794cf7ad 100644 --- a/maps/gateway_archive_vr/listeningpost.dm +++ b/maps/gateway_archive_vr/listeningpost.dm @@ -8,208 +8,6 @@ name = "\improper SpacEx reciept" info = {"1 x Stechtkin pistol plus ammo - $600
      1 x silencer - $200
      shipping charge - $4360
      total - $5160"} - -//////// 2558 //////// - -/obj/item/weapon/paper/listneningpost/year2558/april - name = "\improper April 2558 report" - info = {"A good start to the operation: intercepted Nanotrasen military communications. - A convoy is scheduled to transfer nuclear warheads to a new military base. This - is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."} - -/obj/item/weapon/paper/listneningpost/year2558/may - name = "\improper May 2558 report" - info = {"I have intercepted faint transmissions from what appears to be some sort of pirate - radio station. They do not appear to be relevant to my assignment. I also learned that - the NDV Brutus is back in operation after being taken out of commission during our - attack in March. Ever since Townes got killed, we've lost our eyes on the inside at - Nanotrasen. Hence my being here..."} - -/obj/item/weapon/paper/listneningpost/year2558/june - name = "\improper June 2558 Report" - info = {"Sounds like Nanotrasen stepped up their recruitment efforts. Virgo is no longer a - secluded research station, and its scientists are no longer hand-picked. This could - be a major oppertunity for us to start snooping around."} - -/obj/item/weapon/paper/listneningpost/year2558/july - name = "\improper July 2558 Report" - info = {"The crew has at least tripled in size since NT got rid of the application-based - process of recruitment. We've managed to find a few people interested in aiding - our cause. From atmospherics sabotoge to straight up bombing the place, we've got - several people ready to go in posing as nothing but more grey tide. It's perfect."} - -/obj/item/weapon/paper/listneningpost/year2558/august - name = "\improper August 2558 Report" - info = {"Sounds like our agents have been successful in rattling things up. With their recuitment - policies laxed, we've been able to carry out several attacks on the VORE. It sounds like - we're the least of their problems, though. They've discovered a new technology. Something - they're calling Redspace."} - -/obj/item/weapon/paper/listneningpost/year2558/september - name = "\improper September 2558 Report" - info = {"Something REALLY BAD is brewing at the VORE. This Redspace shit seems to have attracted - the attention of the cult of Nar-Sie. I think Nanotrasen is trying to weaponize it. We - need to put a stop to this before Nanotrasen can use these weapons against innocent - people and rival companies."} - -/obj/item/weapon/paper/listneningpost/year2558/october - name = "\improper October 2558 Report" - info = {"Oh my god, if it weren't for the impending doom, I'd be laughing my ass off at - all the hell VORE has put up with this month. Near mutiny over a retarded clown, - redspace aliens coming to kill them, and then V.G. Station crew getting mixed up - in a transfer which led to a major riot where DEATHSQUAD had to come clean up the - mess! We shouldn't have to worry about the VORE, but they know about something - called the Citadel. Apparently the cultists are trying to use redspace to bring - in an army from another dimension. We have no time left. We have to strike while - there's still something worth saving."} - -/obj/item/weapon/paper/listneningpost/year2558/november - name = "\improper November 2558 Report" - info = {"Maybe these VORE people aren't so bad after all. Mike says they actually HELPED during - our (apparently failed) attack on the Citadel. Shame they work for an evil corporation - like Nanotrasen though. They seem like a group of okay guys. Anyway, beside that, there - was a lot of commotion at the VORE recently. Space-time anomalies or something. Some - crazy guy showed up on the station claiming he's from 1945. The crew seems to think it's - legit though. Maybe he is. I don't think he is though. I'll keep monitoring the situation."} - -/obj/item/weapon/paper/listneningpost/year2558/december - name = "\improper December 2558 Report" - info = {"We hired a merc to capture their top Redspace scientist Kisuke Gema. Unfortunately, Colonel - Morgan was a fucking idiot as usual and turned his back for half a second, and the nerd cut - his fucking head off WITH HIS OWN ENERGY SWORD. At least the asshole didn't get any credit - for it. Sicko fuck took Morgan's severed head back with him as proof, but some janitor found - it and got all the credit and a big promotion. Just to add insult to injury, Santa visited - their station. IN PERSON. Meanwhile all I got was fucking socks... Okay fine I did need the - socks. It's cold as balls on this outpost... Damn it I'm lonely."} - -//////// 2559 //////// - -/obj/item/weapon/paper/listneningpost/year2559/january - name = "\improper January 2559 Report" - info = {"So, this guy from 1945 is legit. His name is Chase Monroe and he's a former Seargent in - the USCM or something. Although I feel like the USCM didn't exist in 1945. Also a pirate - stole one of our ships this month. A week later, the VORE gets attacked by some asshole - pirate flying one of our ships. Probably the same guy. They managed to take a hostage, - blow several bombs on the station, and even steal the nuke. VORE's security forces are - showing serious signs of weakness. Maybe we could exploit this."} - -/obj/item/weapon/paper/listneningpost/year2559/february - name = "\improper February 2559 Report" - info = {"Sounds like the World War 2 guy from Earth brought some unwanted friends along. Early - in the month, a battlecruiser showed up out of nowhere and started shooting up the station - and Central Command. They even knocked the Brutus out of commission. The Icarus apparently - sacrificed its self to protect the station and CentCom until the Soviets showed up. I guess - the Soviets got a beef with these guys too. Sounds like they jacked one of the Soviet's ships. - Makes sense, because a battleship like that doesn't just appear out of nowhere."} - -/obj/item/weapon/paper/listneningpost/year2559/march - name = "\improper March 2559 Report" - info = {"Hard to believe it's already been a year. NT's private navy has been running exercises more - often than usual. They also replaced the Icarus with a new and more heavily armed cruiser called - the Daedalus. They also have this new Battlenet AI which brought the VORE crew on a simulated - reenactment of Operation Magnum. They even had a copy of Townes, played by a cyborg. There have - been some really cryptic messages popping up though. It's eerily familiar. The message just keeps - repeating Bible verses and saying 'The Truth will set you free'... It's like what Townes used to - say about Nanotrasen. The Truth will set us free. The truth about all the atrocities Nanotrasen - has done over the years."} - -/obj/item/weapon/paper/listneningpost/year2559/april - name = "\improper April 2559 Report" - info = {"We were approached today by a man calling himself the 'Werwolf', alleged to be part of that group - that attacked Nanotrasen in early February. We never understood his motives WHY he attacked them. - Maybe he was trying to win brownie points with the Syndicate. If that was his goal, he's done well. - He offered to buy those nukes we stole last year. He also expressed great interest in our singularity - beacons. He's offered us a huge cache of weapons and a hefty sum in ancient gold and silver artifacts. - I think we're going to take the deal. When I get confirmation, I'll forward a line to Mike and Dave to - make the trade."} - -/obj/item/weapon/paper/listneningpost/year2559/may - name = "\improper May 2559 Report" - info = {"V.O.R.E. found something. An abandoned space station with a weapon called a mind flayer. There's also - rumor about some sort of a secret weapon NT was developing; a singularity bomb. Nothing of else of - real interest to report."} - -/obj/item/weapon/paper/listneningpost/year2559/june - name = "\improper June 2559 Report" - info = {"The WW2 guy is dead. Went out in a blaze of glory killing Space Axis. Mike and Dave are pissed. - They apparently broke protocol and went to help the V.O.R.E. crew in the attack, and they want to - keep helping. I know it's unorthodox but I have to side with Mike and Dave on this one. Respectfully - command, if we do not neutralize this so-called Fourth Reich, we'll have an enemy much worse than - NanoTrasen to deal with. Curiously, NanoTrasen refuses to officially support helping to remove this - threat. Possible collaberation?"} - -/obj/item/weapon/paper/listneningpost/year2559/july - name = "\improper July 2559 Report" - info = {"USDF ships have been spotted in the area. Admiral Glenn Pink is on board. This guy went MIA almost - ten years ago, and now he's back? Why? Apparently he's got some kind of connection with V.O.R.E.'s - captain Ace. Sounds like they're gearing up to go kick some Axis ass. It's like a bad action movie - plot. I don't know who this Admiral Pink is, but I guess Ace has at least a couple friends in high - places."} - -/obj/item/weapon/paper/listneningpost/year2559/august - name = "\improper August 2559 Report" - info = {"So, the reason Admiral Pink showed up in the last report was because these Space Axis hijacked - one of his vessels; the USDF Jormungandr or something. Well, the crazy bastards took it back. - We overheard radio transmissions about some kind of huge mech, bigger than anything we've ever seen - in regard to exosuits. Tore up the crew bad. Killed a few, wounded all of them, but after-action - report says someone got close and slapped C4 on its leg while its anti-tank cannon was firing. - They managed to even capture another one and bring it home. Recommend command try to figure out - what this mech is, and if we can steal it. Furthermore, Dr. Kisuke Gema was KIA. His mechanical - arm was destroyed, and with it, all of his genetic information to get around his cloning disorder. - So he's finally out of our hair."} - -/obj/item/weapon/paper/listneningpost/year2559/september - name = "\improper September 2559 Report" - info = {"Of course it's not that simple. The nerd is back from the dead. Wonderful. I don't know how but - he's back, or they have a fake Kisuke Gema, or whatever bullshit. In other news, the station has - been slated for demolition. They're shipping a new Mark-3 Exodus-class station from Bay Shipyards - all the way from the NanoTrasen branch in Nyx. The demolition keeps getting delayed."} - -/obj/item/weapon/paper/listneningpost/year2559/october - name = "\improper October 2559 Report" - info = {"Station was demolished and operations were put on pause for a whole week. In other news, captain - Ace reportedly got a promotion to CentCom but something went wrong. The stronger loyalty implant - had a negative effect on him and almost killed him. He was quickly demoted back to Captain. This - could be useful information later. Recommend command investigate thoroughly."} - -/obj/item/weapon/paper/listneningpost/year2559/november - name = "\improper November 2559 Report" - info = {"A clown federation owned vessel called the Calypso was discovered in the Virgo system. It was a - ghost ship. Allegedly everyone on board perished due to a joke so funny that everyone laughed - themselves to madness, then death. NanoTrasen is trying to cover it up. No one knows why."} - -/obj/item/weapon/paper/listneningpost/year2559/december - name = "\improper December 2559 Report" - info = {"The V.O.R.E. discovered a new gateway location; a clown temple. We need to send someone to see - this. Reportedly it's full of tunnel clowns and these mutants called cluwnes. A clown researcher - came and tried to study the ruins and translate the glyphs, but I guess he discovered the joke. - I remember listening to him one week just absolutely losing it. Over the command channel, captain - Ace and the others talked about what they had to do, how he couldn't go back to the clown planet. - They never said it outright, but I think Ace put him out of his misery. All I know is the clown - researcher turned up dead. In other news, someone stole the station's entire cloning facility at - the end of the month right before Xmas. That shit was hilarious. We gotta find who this guy is - and see if he wants a job. Ask our contacts on station. Surely one of them knows who's behind - the heist."} - -/obj/item/weapon/paper/listneningpost/year2560/january - name = "\improper January 2560 Report" - info = {"A group of Akula pirates tried to kidnap Kisuke Gema. They succeded, but their leader died of - his injuries soon after. The other pirates defected. I wonder why?"} - -/obj/item/weapon/paper/listneningpost/year2560/february - name = "\improper February 2560 Report" - info = {"There were a few incidents regarding a redspace anomaly in the chapel but the effects have long - since subsided. Nothing of major interest otherwise."} - -/obj/item/weapon/paper/listneningpost/year2560/march - name = "\improper March 2560 Report" - info = {"Very quiet month. Nothing of interest to report. Perhaps the calm before the storm?"} - -/obj/item/weapon/paper/listneningpost/year2560/april - name = "\improper April 2560 Report" - info = {"A loud, painfully high pitched SSTV signal came across global comms. It seems to be a distress signal - of some kind. To what, I have no idea. Efforts to trace the signal's origin have fallen inconclusive."} - /obj/item/weapon/paper/listneningpost/oddreport name = "\improper Odd Report" info = {"I wonder how much longer they will accept my empty reports. They will cancel the case soon without diff --git a/maps/gateway_archive_vr/snow_outpost.dmm b/maps/gateway_archive_vr/snow_outpost.dmm index 64650440f5..1c203e69b0 100644 --- a/maps/gateway_archive_vr/snow_outpost.dmm +++ b/maps/gateway_archive_vr/snow_outpost.dmm @@ -702,14 +702,12 @@ "cz" = ( /obj/machinery/power/port_gen/pacman/super, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/external, /area/awaymission/snow_outpost/outside) "cA" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/external, @@ -1961,7 +1959,6 @@ /obj/machinery/power/port_gen/pacman, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /turf/simulated/floor, /area/awaymission/snow_outpost/outside) @@ -1979,8 +1976,6 @@ /area/awaymission/snow_outpost/outside) "gI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2008,16 +2003,12 @@ /area/awaymission/snow_outpost/outside) "gL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, /area/awaymission/snow_outpost/outside) "gM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2026,7 +2017,6 @@ "gN" = ( /obj/machinery/computer/communications, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, diff --git a/maps/gateway_archive_vr/snowfield.dmm b/maps/gateway_archive_vr/snowfield.dmm index c14316c50c..04b8022c85 100644 --- a/maps/gateway_archive_vr/snowfield.dmm +++ b/maps/gateway_archive_vr/snowfield.dmm @@ -1,389 +1,21555 @@ -"aa" = (/turf/unsimulated/wall/planetary/sif,/area/awaymission/snowfield/restricted) -"ab" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) -"ac" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) -"ad" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"ae" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield) -"af" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) -"ag" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"ah" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base) -"ai" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield) -"aj" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"ak" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"al" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base) -"am" = (/obj/machinery/light/small,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"an" = (/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) -"ao" = (/obj/structure/sign/electricshock,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) -"ap" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"aq" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"ar" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/stack/cable_coil/yellow{amount = 2; icon_state = "coil2"},/obj/item/weapon/shovel,/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"as" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"at" = (/obj/machinery/power/smes/buildable{charge = 2.5e+006; input_attempt = 1; input_level = 250000; inputting = 1; output_level = 250000; RCon_tag = "Telecommunications Satellite"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"au" = (/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"av" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"aw" = (/obj/machinery/power/apc{dir = 8; name = "west bump-derelict"; operating = 0; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"ax" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"ay" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"az" = (/obj/structure/sign/biohazard,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) -"aA" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"aB" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aC" = (/obj/structure/closet/secure_closet/hydroponics{req_access = list(47)},/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aD" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aE" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aG" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/machinery/atmospherics/portables_connector,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aH" = (/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"aI" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aJ" = (/obj/machinery/atmospherics/portables_connector,/obj/item/weapon/tool/wrench,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aK" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aL" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aM" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aN" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aO" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"aP" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/deluxe,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"aQ" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"aR" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aS" = (/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aT" = (/obj/effect/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"aV" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Isolation to Waste"},/obj/effect/floor_decal/corner/green/full,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aW" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aX" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aY" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"aZ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"ba" = (/obj/effect/floor_decal/corner/green/full,/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Port to Isolation"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bb" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bc" = (/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bd" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"be" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/structure/table/glass,/obj/item/weapon/storage/box/botanydisk,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bf" = (/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"bg" = (/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bi" = (/obj/machinery/door/airlock/research{name = "Xenoflora Storage"; req_access = list(55)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bj" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bk" = (/obj/machinery/botany/editor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bl" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"bm" = (/obj/effect/floor_decal/corner/green/full,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bn" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bo" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bp" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/corner/green/full{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"br" = (/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bs" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"bt" = (/obj/machinery/door/window/northright{name = "Xenoflora Containment"; req_access = list(47)},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bu" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bv" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bw" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bx" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"by" = (/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bz" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bA" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bB" = (/obj/effect/floor_decal/corner/green{dir = 5},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bC" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bD" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"bE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bG" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bH" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/structure/table/standard,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bI" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/item/device/radio/intercom{layer = 4; name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bJ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bK" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bL" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bM" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bN" = (/obj/machinery/seed_storage/xenobotany,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bO" = (/obj/machinery/vending/hydronutrients{categories = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bP" = (/obj/machinery/smartfridge,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bQ" = (/obj/structure/table/glass,/obj/item/weapon/tape_roll,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bR" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"bS" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/janitorialcart,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"bT" = (/obj/machinery/light,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"bU" = (/obj/machinery/portable_atmospherics/hydroponics{closed_system = 1; name = "isolation tray"},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bV" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"bX" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"bY" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) -"bZ" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) -"ca" = (/obj/machinery/gateway{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cb" = (/obj/machinery/gateway{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cc" = (/obj/machinery/gateway{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cd" = (/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/crate,/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) -"ce" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"cf" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"cg" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"ch" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/sink/kitchen{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"ci" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cj" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"ck" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cl" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cm" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cn" = (/obj/structure/table/standard,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"co" = (/obj/structure/toilet,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cp" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cq" = (/obj/machinery/gateway{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cr" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cs" = (/obj/machinery/gateway{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"ct" = (/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) -"cu" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cv" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cw" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cx" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cy" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cz" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) -"cA" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cB" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cC" = (/obj/machinery/door/airlock/silver{name = "Restroom"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cD" = (/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"cE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) -"cF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) -"cG" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/sovietsoda,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cH" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cI" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) -"cJ" = (/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) -"cK" = (/obj/structure/bed/padded,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) -"cL" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"cM" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"cN" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/dinnerware,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cO" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) -"cP" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) -"cQ" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cR" = (/obj/machinery/door/airlock/highsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"cS" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/pistachios,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cT" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cU" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) -"cV" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"cW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"cX" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) -"cY" = (/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"cZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"da" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d9,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"db" = (/obj/effect/floor_decal/derelict/d10,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dc" = (/obj/effect/floor_decal/derelict/d11,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dd" = (/obj/effect/floor_decal/derelict/d12,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"de" = (/obj/effect/floor_decal/derelict/d13,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"df" = (/obj/effect/floor_decal/derelict/d14,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dg" = (/obj/effect/floor_decal/derelict/d15,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dh" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d16,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"di" = (/obj/effect/floor_decal/derelict/d1,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dj" = (/obj/effect/floor_decal/derelict/d2,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dk" = (/obj/effect/floor_decal/derelict/d3,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dl" = (/obj/effect/floor_decal/derelict/d4,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dm" = (/obj/effect/floor_decal/derelict/d5,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dn" = (/obj/effect/floor_decal/derelict/d6,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"do" = (/obj/effect/floor_decal/derelict/d7,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dp" = (/obj/effect/floor_decal/derelict/d8,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dq" = (/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"ds" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/southleft,/obj/machinery/door/window/northleft,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dt" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) -"du" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) -"dv" = (/obj/machinery/door/airlock/maintenance{locked = 1; name = "Storage Access"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dw" = (/obj/structure/closet/l3closet/security,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dx" = (/obj/structure/fireaxecabinet{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dy" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dz" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dA" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dB" = (/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) -"dC" = (/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) -"dD" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gimmick/russian,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/l3closet/general,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer/rations,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/weapon,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dJ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dK" = (/obj/structure/closet/firecloset,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dL" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/device/radio/phone,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dM" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) -"dN" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) -"dO" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) -"dP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) -"dQ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dR" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dS" = (/obj/structure/closet/bombclosetsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dT" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/shuttle/awaymission/oldengbase) -"dU" = (/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dV" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/backpack/satchel/sec,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"dW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/head/hood/winter,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dY" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/remains/human,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"dZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/remains/human,/obj/structure/closet/crate/mimic/guaranteed{name = "steel crate"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"ea" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gmcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"eb" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"ec" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "Secure Armoury Section"; req_access = list(150)},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"ed" = (/obj/structure/closet,/obj/item/clothing/under/soviet,/obj/item/clothing/shoes/boots/jackboots,/obj/item/clothing/head/ushanka,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"ee" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"ef" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"eg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/head/helmet/space/syndicate,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"eh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/hgpirate,/obj/item/clothing/head/hgpiratecap,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"ei" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/armor/combat,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"ej" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"ek" = (/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"el" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"em" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) -"en" = (/obj/structure/coatrack,/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) -"eo" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/wardrobe/red,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"ep" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"eq" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"er" = (/obj/effect/floor_decal/industrial/loading{icon_state = "loadingarea"; dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"es" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"et" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/phoron,/obj/fiftyspawner/phoron,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"eu" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/toolcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"ev" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/door/airlock/centcom,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) -"ew" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) -"ex" = (/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"ey" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"ez" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eA" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eB" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eC" = (/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eD" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eE" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eF" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eG" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eH" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eI" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eJ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eK" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) -"eL" = (/turf/simulated/floor/reinforced{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/unsimulated/wall/planetary/sif, +/area/awaymission/snowfield/restricted) +"ab" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/restricted) +"ac" = ( +/obj/effect/blocker, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/restricted) +"ad" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"ae" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield) +"af" = ( +/obj/effect/blocker, +/obj/effect/blocker, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/restricted) +"ag" = ( +/obj/effect/blocker, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"ah" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ai" = ( +/obj/effect/blocker, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield) +"aj" = ( +/obj/effect/blocker, +/obj/effect/blocker, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"ak" = ( +/obj/effect/landmark/away, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"al" = ( +/obj/effect/landmark/away, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"am" = ( +/obj/machinery/light/small, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"an" = ( +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/outside) +"ao" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/outside) +"ap" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"aq" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"ar" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil/yellow{ + amount = 2; + icon_state = "coil2" + }, +/obj/item/weapon/shovel, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"as" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"at" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Telecommunications Satellite"; + charge = 2.5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 1; + output_level = 250000 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"au" = ( +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"av" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"aw" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump-derelict"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"ax" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"ay" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"az" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/outside) +"aA" = ( +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"aB" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aC" = ( +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(47) + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aD" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aE" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aF" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aG" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aH" = ( +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"aI" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aJ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/item/weapon/tool/wrench, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aK" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aL" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aM" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aN" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aO" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"aP" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/deluxe, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"aQ" = ( +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"aR" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aS" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aT" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"aV" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Isolation to Waste" + }, +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aW" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aY" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"aZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"ba" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bb" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bc" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bd" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"be" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/botanydisk, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bf" = ( +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"bg" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bh" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bi" = ( +/obj/machinery/door/airlock/research{ + name = "Xenoflora Storage"; + req_access = list(55) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bj" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bk" = ( +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bl" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"bm" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bn" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bo" = ( +/obj/machinery/atmospherics/unary/heater{ + icon_state = "heater" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bp" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"br" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bs" = ( +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"bt" = ( +/obj/machinery/door/window/northright{ + name = "Xenoflora Containment"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bx" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"by" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bz" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bA" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bC" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"bE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bF" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bG" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bI" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + layer = 4; + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bJ" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bL" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bM" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bN" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bO" = ( +/obj/machinery/vending/hydronutrients{ + categories = 3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bP" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bQ" = ( +/obj/structure/table/glass, +/obj/item/weapon/tape_roll, +/obj/item/device/analyzer/plant_analyzer, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bR" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"bS" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/janitorialcart, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"bT" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"bU" = ( +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bV" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"bX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"bY" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/outside) +"bZ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/outside) +"ca" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cb" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cc" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cd" = ( +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/outside) +"ce" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"cf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"cg" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"ch" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/sink/kitchen{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"ci" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cj" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"ck" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cl" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cm" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cn" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"co" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cp" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/door/window/southright{ + name = "Shower" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cq" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cr" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cs" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"ct" = ( +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/outside) +"cu" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cv" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cw" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cx" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cy" = ( +/obj/machinery/gateway, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cz" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/outside) +"cA" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cB" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cC" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cD" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"cE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/outside) +"cF" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/outside) +"cG" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/sovietsoda, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cH" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cI" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/outside) +"cJ" = ( +/turf/simulated/floor/wood, +/area/awaymission/snowfield/outside) +"cK" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/outside) +"cL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"cM" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"cN" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cO" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/outside) +"cP" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/outside) +"cQ" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cR" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"cS" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/closet/crate/bin, +/obj/item/trash/pistachios, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cT" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cU" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/outside) +"cV" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"cW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"cX" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/outside) +"cY" = ( +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"cZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"da" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/derelict/d9, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"db" = ( +/obj/effect/floor_decal/derelict/d10, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dc" = ( +/obj/effect/floor_decal/derelict/d11, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dd" = ( +/obj/effect/floor_decal/derelict/d12, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"de" = ( +/obj/effect/floor_decal/derelict/d13, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"df" = ( +/obj/effect/floor_decal/derelict/d14, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dg" = ( +/obj/effect/floor_decal/derelict/d15, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/derelict/d16, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"di" = ( +/obj/effect/floor_decal/derelict/d1, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dj" = ( +/obj/effect/floor_decal/derelict/d2, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dk" = ( +/obj/effect/floor_decal/derelict/d3, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dl" = ( +/obj/effect/floor_decal/derelict/d4, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dm" = ( +/obj/effect/floor_decal/derelict/d5, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dn" = ( +/obj/effect/floor_decal/derelict/d6, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"do" = ( +/obj/effect/floor_decal/derelict/d7, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dp" = ( +/obj/effect/floor_decal/derelict/d8, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dq" = ( +/obj/machinery/door/airlock/security, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"ds" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/southleft, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/outside) +"du" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/outside) +"dv" = ( +/obj/machinery/door/airlock/maintenance{ + locked = 1; + name = "Storage Access" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dw" = ( +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dx" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dy" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dA" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dB" = ( +/turf/simulated/floor/grass, +/area/awaymission/snowfield/outside) +"dC" = ( +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/outside) +"dD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/gimmick/russian, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/general, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dK" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dL" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/phone, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dM" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/outside) +"dN" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/outside) +"dO" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/outside) +"dP" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/outside) +"dQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dS" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dT" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/shuttle/awaymission/oldengbase) +"dU" = ( +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/backpack/satchel/sec, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"dW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/head/hood/winter, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"dZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/remains/human, +/obj/structure/closet/crate/mimic/guaranteed{ + name = "steel crate" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"ea" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/gmcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"eb" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"ec" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "Secure Armoury Section"; + req_access = list(150) + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"ed" = ( +/obj/structure/closet, +/obj/item/clothing/under/soviet, +/obj/item/clothing/shoes/boots/jackboots, +/obj/item/clothing/head/ushanka, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"ee" = ( +/obj/structure/closet/crate/secure/gear, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"ef" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"eg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"eh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/hgpirate, +/obj/item/clothing/head/hgpiratecap, +/obj/structure/closet/crate/secure/gear, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"ei" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/armor/combat, +/obj/structure/closet/crate/secure/gear, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"ej" = ( +/obj/machinery/light{ + dir = 8 + }, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"ek" = ( +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"el" = ( +/obj/machinery/light{ + dir = 4 + }, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"em" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/outside) +"en" = ( +/obj/structure/coatrack, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/outside) +"eo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/wardrobe/red, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"ep" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"eq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"er" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1; + icon_state = "loadingarea" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"es" = ( +/obj/machinery/conveyor_switch{ + id = "away_soviet" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"et" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/phoron, +/obj/fiftyspawner/phoron, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"eu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"ev" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/outside) +"ew" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + id = "away_soviet" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/outside) +"ex" = ( +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"ey" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"ez" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eA" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eB" = ( +/obj/machinery/conveyor_switch{ + id = "away_soviet" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eC" = ( +/obj/machinery/conveyor{ + id = "away_soviet" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eF" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eG" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eH" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eJ" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eK" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"eL" = ( +/turf/simulated/floor/reinforced{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) (1,1,1) = {" -aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -aaabababababababafagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagaiaiaiagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagajadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahalahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadakadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaddTadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadamadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananaoapananadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaqarasatanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanauauauavanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanawaxaxayanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananananananananazaAaoanananananananananananadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaBaCaCaDanaEaFaFaGaHaHaHaIaJaKaLaMaNanaOaPaQanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaRaSaSaTaUaVaWaXaYaZaZaZbabbbcbcbdbeanbfbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbgaSbhaTbiaHaHaHbjbjbjbjbjaHaHaHaHbkanblbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbmbnbobpbqaHaHaHbjbjbjbjbjaHaHaHaHbranbsbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbtbubvbwanbxbybybybzaHaHbAbybybybBbCanbDbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbEaHbFbGanbHbIbJbKbLaHaHbMbNbObPbQbRanbSbTbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananbUbVanananananbWbXbYbYbWbXanananananananbZanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananancacbccancdcdcecfcdcdancgchcicjckclcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancncocpancqcrcsanctctcecfctctancucmcmcvcvcmcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancwaSaSancxcyczancdcdcecfcdcdancAcmcvcicBcvcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancCanancDcDcDancEctcecfctcFancGcmcvcicicvcHanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKancLcDcMancdcdcecfcdcdancNcmcmcvcvcmcmanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancOcJcPancDcDcDanctctcecfctctancicmcmcmcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKanancRanancdcdcecfcdcdancScmcmcTcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancUanancDcDcDanbWbXcVcVbWbXanbWcWbXanancXananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadancYcYcYcZcYcYcYdadbdcdddedfdgdhcYcYcYcZcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadancYcYcYcYcYcYcYdidjdkdldmdndodpcYcYcYcYcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadanandqanandrdsdtanananduduanananananandvananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadandwcDcDdxdydzdAandBdBdCdCdBdBandDdEdFdGdHdIdJanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadandKcDcDcDcDcDdLandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadandScDcDcDdUcDdVandBdNdCdCdOdBandWdHdXdYdZeaebanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananecanananandBdBdCdCdBdBandGdGdGdGdGdGdGanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDeeeeeeandBdNdCdCdOdBanefdHegdGdHeheianadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanejekekekekekelandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDemememandBendCdCendBaneoepeqereseteuanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanananananananananananevevananananananewananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexeyezezeAexexexexeBeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexexexexexexexexexeEeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeFeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeHeIeJeGeKadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeyezezezezezezezezezezezezezezezezezezezezeAadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad -aaabababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabababababab -aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab -aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab -aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab -aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab -aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab -aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab -aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(3,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(4,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(5,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(6,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(7,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(8,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(9,1,1) = {" +ab +ab +ab +ab +ab +ab +af +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(10,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(11,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(12,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(13,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(14,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(15,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(16,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(17,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(18,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(19,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(20,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(21,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(22,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(23,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(24,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(25,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(26,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(27,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(28,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(29,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(30,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(31,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(32,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(33,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(34,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(35,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(36,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(37,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(38,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(39,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(40,1,1) = {" +ad +ad +ad +ad +ad +ad +ai +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(41,1,1) = {" +ad +ad +ad +ad +ad +ad +ai +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(42,1,1) = {" +ad +ad +ad +ad +ad +ad +ai +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(43,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(44,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(45,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(46,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(47,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(48,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(49,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(50,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(51,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(52,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(53,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(54,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(55,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(56,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(57,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(58,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(59,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(60,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(61,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aB +aR +bg +bm +bt +bE +an +an +cn +cw +an +cI +cO +cI +an +cY +cY +an +dw +dK +dS +an +ed +ej +ed +an +ex +ex +eF +eE +eE +eE +eE +eE +eE +eE +eE +eE +eE +ey +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(62,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aC +aS +aS +bn +bu +aH +bU +an +co +aS +cC +cJ +cJ +cJ +cU +cY +cY +dq +cD +cD +cD +an +ed +ek +ed +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(63,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aC +aS +bh +bo +bv +bF +bV +an +cp +aS +an +cK +cP +cK +an +cY +cY +an +cD +cD +cD +an +ed +ek +ed +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(64,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aD +aT +aT +bp +bw +bG +an +an +an +an +an +an +an +an +an +cZ +cY +an +dx +cD +cD +ec +cD +ek +cD +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(65,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +an +aU +bi +bq +an +an +an +ca +cq +cx +cD +cL +cD +an +cD +cY +cY +dr +dy +cD +dU +an +ee +ek +em +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(66,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aE +aV +aH +aH +bx +bH +an +cb +cr +cy +cD +cD +cD +cR +cD +cY +cY +ds +dz +cD +cD +an +ee +ek +em +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(67,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aF +aW +aH +aH +by +bI +an +cc +cs +cz +cD +cM +cD +an +cD +cY +cY +dt +dA +dL +dV +an +ee +el +em +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(68,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +an +an +an +an +aF +aX +aH +aH +by +bJ +an +an +an +an +an +an +an +an +an +da +di +an +an +an +an +an +an +an +an +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(69,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aq +au +aw +an +aG +aY +bj +bj +by +bK +bW +cd +ct +cd +cE +cd +ct +cd +bW +db +dj +an +dB +dM +dB +dB +dB +dM +dB +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(70,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +am +ao +ar +au +ax +az +aH +aZ +bj +bj +bz +bL +bX +cd +ct +cd +ct +cd +ct +cd +bX +dc +dk +an +dB +dN +dN +dB +dN +dN +en +an +ey +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(71,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ap +as +au +ax +aA +aH +aZ +bj +bj +aH +aH +bY +ce +ce +ce +ce +ce +ce +ce +cV +dd +dl +du +dC +dC +dC +dC +dC +dC +dC +ev +ez +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(72,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +at +av +ay +ao +aH +aZ +bj +bj +aH +aH +bY +cf +cf +cf +cf +cf +cf +cf +cV +de +dm +du +dC +dC +dC +dC +dC +dC +dC +ev +ez +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(73,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +an +an +an +an +aI +ba +bj +bj +bA +bM +bW +cd +ct +cd +ct +cd +ct +cd +bW +df +dn +an +dB +dO +dO +dB +dO +dO +en +an +eA +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(74,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aJ +bb +aH +aH +by +bN +bX +cd +ct +cd +cF +cd +ct +cd +bX +dg +do +an +dB +dP +dB +dB +dB +dP +dB +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(75,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aK +bc +aH +aH +by +bO +an +an +an +an +an +an +an +an +an +dh +dp +an +an +an +an +an +an +an +an +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(76,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aL +bc +aH +aH +by +bP +an +cg +cu +cA +cG +cN +ci +cS +bW +cY +cY +an +dD +dQ +dW +dG +ef +dQ +eo +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(77,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aM +bd +aH +aH +bB +bQ +an +ch +cm +cm +cm +cm +cm +cm +cW +cY +cY +an +dE +dG +dH +dG +dH +dG +ep +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(78,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aN +be +bk +br +bC +bR +an +ci +cm +cv +cv +cm +cm +cm +bX +cY +cY +an +dF +dG +dX +dG +eg +dG +eq +an +eB +eE +eH +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(79,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +an +an +an +an +an +an +an +cj +cv +ci +ci +cv +cm +cT +an +cZ +cY +dv +dG +dG +dY +dG +dG +dG +er +ew +eC +eC +eI +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(80,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aO +bf +bl +bs +bD +bS +an +ck +cv +cB +ci +cv +cm +cm +an +cY +cY +an +dH +dG +dZ +dG +dH +dG +es +an +eD +eD +eJ +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(81,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aP +bf +bf +bf +bf +bT +an +cl +cm +cv +cv +cm +cm +cm +cX +cY +cY +an +dI +dG +ea +dG +eh +dG +et +an +ex +ex +eG +eL +eL +eL +eL +eL +eL +eL +eL +eL +eL +ez +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(82,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +aQ +bf +bf +bf +bf +bf +bZ +cm +cm +cm +cH +cm +cQ +cQ +an +cY +cY +an +dJ +dR +eb +dG +ei +dR +eu +an +ex +ex +eK +eD +eD +eD +eD +eD +eD +eD +eD +eD +eD +eA +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(83,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(84,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +dT +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(85,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(86,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(87,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(88,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(89,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(90,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(91,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(92,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(93,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(94,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(95,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(96,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(97,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(98,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(99,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(100,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(101,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(102,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +al +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(103,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(104,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(105,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(106,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(107,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(108,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(109,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(110,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(111,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(112,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(113,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(114,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(115,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(116,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(117,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(118,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(119,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(120,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(121,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(122,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(123,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(124,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(125,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(126,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(127,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(128,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(129,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(130,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(131,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(132,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(133,1,1) = {" +ad +ad +ad +ad +ad +ad +ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(134,1,1) = {" +ad +ad +ad +ad +ad +ad +aj +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(135,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(136,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(137,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(138,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(139,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(140,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aa "} diff --git a/maps/gateway_archive_vr/stationCollision.dmm b/maps/gateway_archive_vr/stationCollision.dmm index 3a2629c3c5..6cfc12c33f 100644 --- a/maps/gateway_archive_vr/stationCollision.dmm +++ b/maps/gateway_archive_vr/stationCollision.dmm @@ -1153,8 +1153,6 @@ /area/awaymission/northblock) "dp" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless{ @@ -1166,8 +1164,6 @@ name = "Security Airlock" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1175,8 +1171,6 @@ /area/awaymission/research) "dr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1192,8 +1186,6 @@ name = "Windoor" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1203,8 +1195,6 @@ /area/awaymission/research) "dt" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -1265,8 +1255,6 @@ /area/awaymission/northblock) "dB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless{ @@ -1436,8 +1424,6 @@ /area/awaymission/northblock) "dV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless{ @@ -1626,8 +1612,6 @@ /area/awaymission/northblock) "eu" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -1635,8 +1619,6 @@ "ev" = ( /obj/machinery/door/airlock/command, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1644,8 +1626,6 @@ /area/awaymission/northblock) "ew" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1655,8 +1635,6 @@ /area/awaymission/northblock) "ex" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1664,8 +1642,6 @@ /area/awaymission/northblock) "ey" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1675,8 +1651,6 @@ /area/awaymission/northblock) "ez" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1686,8 +1660,6 @@ /area/awaymission/northblock) "eA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1698,8 +1670,6 @@ /area/awaymission/northblock) "eB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -1709,13 +1679,9 @@ /area/awaymission/northblock) "eC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless{ @@ -1825,8 +1791,6 @@ /area/awaymission/northblock) "eP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless{ @@ -1957,8 +1921,6 @@ /area/awaymission/northblock) "fe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless{ @@ -2113,8 +2075,6 @@ /area/awaymission/midblock) "fw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless{ @@ -2239,8 +2199,6 @@ /area/awaymission/midblock) "fI" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless{ @@ -2249,8 +2207,6 @@ /area/awaymission/midblock) "fJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2260,8 +2216,6 @@ /area/awaymission/midblock) "fK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless{ @@ -2372,8 +2326,6 @@ /area/awaymission/northblock) "fW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -2467,8 +2419,6 @@ /area/awaymission/northblock) "gj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless{ @@ -2628,7 +2578,6 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor, /area/awaymission/midblock) @@ -2637,8 +2586,6 @@ /obj/item/ammo_casing/shotgun, /obj/item/ammo_casing/shotgun, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2649,8 +2596,6 @@ /obj/effect/decal/remains/human, /obj/item/clothing/under/rank/bartender, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2661,8 +2606,6 @@ "gJ" = ( /obj/structure/table/standard, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2671,8 +2614,6 @@ "gK" = ( /obj/structure/stool, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor, @@ -2880,8 +2821,6 @@ "hm" = ( /obj/structure/stool, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -3016,8 +2955,6 @@ icon_state = "tube1" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -3045,8 +2982,6 @@ /area/awaymission/midblock) "hH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -3113,8 +3048,6 @@ /area/awaymission/midblock) "hS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/blood/splatter, @@ -3194,7 +3127,6 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor{ icon_state = "red"; @@ -3203,8 +3135,6 @@ /area/awaymission/arrivalblock) "ic" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3215,8 +3145,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3225,8 +3153,6 @@ "ie" = ( /obj/effect/decal/remains/human, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3241,8 +3167,6 @@ req_access_txt = "0" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3250,8 +3174,6 @@ /area/awaymission/arrivalblock) "ig" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3259,13 +3181,9 @@ /area/awaymission/midblock) "ih" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless{ @@ -3300,8 +3218,6 @@ /obj/item/ammo_casing/a10mm, /obj/item/clothing/under/syndicate, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/weapon/gun/projectile/automatic/c20r/sc_c20r, @@ -3405,8 +3321,6 @@ "iC" = ( /obj/item/ammo_casing/a10mm, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/blood/splatter, @@ -3490,8 +3404,6 @@ "iM" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -3555,8 +3467,6 @@ /area/awaymission/southblock) "iW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -3640,16 +3550,12 @@ /area/awaymission/southblock) "jl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/awaymission/southblock) "jm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3660,8 +3566,6 @@ pixel_y = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3669,14 +3573,10 @@ /area/awaymission/southblock) "jo" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -3686,8 +3586,6 @@ pixel_y = -32 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3695,21 +3593,15 @@ /area/awaymission/southblock) "jq" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/awaymission/southblock) "jr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -3731,8 +3623,6 @@ name = "Airlock" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -3752,8 +3642,6 @@ "jy" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -3826,8 +3714,6 @@ /area/awaymission/southblock) "jJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -4019,8 +3905,6 @@ icon_state = "tube1" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -4035,7 +3919,6 @@ /obj/structure/cable{ icon_state = "0-2"; pixel_y = 1; - d2 = 2 }, /obj/machinery/gateway/centeraway{ calibrated = 0 @@ -4112,8 +3995,6 @@ /area/awaymission/gateroom) "ky" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/gateway, @@ -4272,8 +4153,6 @@ /area/awaymission/gateroom) "kU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark{ @@ -4364,8 +4243,6 @@ /area/awaymission/gateroom) "lg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark{ @@ -4598,16 +4475,12 @@ "lK" = ( /obj/effect/decal/remains/human, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/awaymission/southblock) "lL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/highsecurity{ @@ -4620,15 +4493,12 @@ /area/awaymission/gateroom) "lN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/awaymission/gateroom) "lO" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/magical{ @@ -4684,16 +4554,12 @@ /area/awaymission/southblock) "lW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, /area/awaymission/southblock) "lX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -4701,8 +4567,6 @@ /area/awaymission/southblock) "lY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -4713,13 +4577,9 @@ /area/awaymission/southblock) "lZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -4730,8 +4590,6 @@ /area/awaymission/southblock) "ma" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -4742,8 +4600,6 @@ /area/awaymission/southblock) "mb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -4752,8 +4608,6 @@ /area/awaymission/gateroom) "mc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -4761,19 +4615,13 @@ /area/awaymission/gateroom) "md" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor, @@ -4783,7 +4631,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -4850,8 +4697,6 @@ /area/awaymission/southblock) "mn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/light/small, @@ -4865,7 +4710,6 @@ pixel_y = 0 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, diff --git a/maps/gateway_vr/carpfarm.dmm b/maps/gateway_vr/carpfarm.dmm index df90d3d7fd..6f90e4f782 100644 --- a/maps/gateway_vr/carpfarm.dmm +++ b/maps/gateway_vr/carpfarm.dmm @@ -32,7 +32,6 @@ /area/awaymission/carpfarm/base) "an" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/outline/yellow, @@ -50,7 +49,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -59,7 +57,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/port_gen/pacman, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, diff --git a/maps/gateway_vr/isle_de_monch.dmm b/maps/gateway_vr/isle_de_monch.dmm index b15337cbf5..82f66aa497 100644 --- a/maps/gateway_vr/isle_de_monch.dmm +++ b/maps/gateway_vr/isle_de_monch.dmm @@ -8,8 +8,6 @@ /area/tether_away/beach/resort) "bh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -128,8 +126,6 @@ /area/tether_away/beach/resort) "hj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -144,7 +140,6 @@ /area/tether_away/beach/resort) "im" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/item/weapon/melee/baton/cattleprod{ @@ -236,8 +231,6 @@ /area/tether_away/beach/resort) "mp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/outdoors/grass/forest, @@ -298,8 +291,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -338,8 +329,6 @@ /area/tether_away/beach/resort) "pB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -359,8 +348,6 @@ /area/tether_away/beach/resort) "qf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -533,8 +520,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -542,7 +527,6 @@ "xM" = ( /obj/item/stack/cable_coil, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/item/weapon/melee/baton/cattleprod{ @@ -700,18 +684,12 @@ /area/tether_away/beach/resort) "DW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -852,8 +830,6 @@ "Mm" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -966,7 +942,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -994,8 +969,6 @@ /area/tether_away/beach/resort) "RJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/outdoors/grass/forest, @@ -1057,7 +1030,6 @@ "TR" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/outdoors/grass/forest, @@ -1069,7 +1041,6 @@ pixel_x = -28 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/handrail, @@ -1131,13 +1102,9 @@ /area/tether_away/beach/resort) "Vs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/outdoors/grass/forest, @@ -1165,8 +1132,6 @@ /area/tether_away/beach/resort) "WJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1220,8 +1185,6 @@ /area/tether_away/beach/resort) "XA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/outdoors/grass, diff --git a/maps/gateway_vr/listeningpost.dm b/maps/gateway_vr/listeningpost.dm index 869b197cc7..c7504ff740 100644 --- a/maps/gateway_vr/listeningpost.dm +++ b/maps/gateway_vr/listeningpost.dm @@ -15,208 +15,6 @@ name = "\improper SpacEx reciept" info = {"1 x Stechtkin pistol plus ammo - $600
      1 x silencer - $200
      shipping charge - $4360
      total - $5160"} - -//////// 2558 //////// - -/obj/item/weapon/paper/listeningpost/year2558/april - name = "\improper April 2558 report" - info = {"A good start to the operation: intercepted Nanotrasen military communications. - A convoy is scheduled to transfer nuclear warheads to a new military base. This - is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."} - -/obj/item/weapon/paper/listeningpost/year2558/may - name = "\improper May 2558 report" - info = {"I have intercepted faint transmissions from what appears to be some sort of pirate - radio station. They do not appear to be relevant to my assignment. I also learned that - the NDV Brutus is back in operation after being taken out of commission during our - attack in March. Ever since Townes got killed, we've lost our eyes on the inside at - Nanotrasen. Hence my being here..."} - -/obj/item/weapon/paper/listeningpost/year2558/june - name = "\improper June 2558 Report" - info = {"Sounds like Nanotrasen stepped up their recruitment efforts. Virgo is no longer a - secluded research station, and its scientists are no longer hand-picked. This could - be a major oppertunity for us to start snooping around."} - -/obj/item/weapon/paper/listeningpost/year2558/july - name = "\improper July 2558 Report" - info = {"The crew has at least tripled in size since NT got rid of the application-based - process of recruitment. We've managed to find a few people interested in aiding - our cause. From atmospherics sabotoge to straight up bombing the place, we've got - several people ready to go in posing as nothing but more grey tide. It's perfect."} - -/obj/item/weapon/paper/listeningpost/year2558/august - name = "\improper August 2558 Report" - info = {"Sounds like our agents have been successful in rattling things up. With their recuitment - policies laxed, we've been able to carry out several attacks on the VORE. It sounds like - we're the least of their problems, though. They've discovered a new technology. Something - they're calling Redspace."} - -/obj/item/weapon/paper/listeningpost/year2558/september - name = "\improper September 2558 Report" - info = {"Something REALLY BAD is brewing at the VORE. This Redspace shit seems to have attracted - the attention of the cult of Nar-Sie. I think Nanotrasen is trying to weaponize it. We - need to put a stop to this before Nanotrasen can use these weapons against innocent - people and rival companies."} - -/obj/item/weapon/paper/listeningpost/year2558/october - name = "\improper October 2558 Report" - info = {"Oh my god, if it weren't for the impending doom, I'd be laughing my ass off at - all the hell VORE has put up with this month. Near mutiny over a retarded clown, - redspace aliens coming to kill them, and then V.G. Station crew getting mixed up - in a transfer which led to a major riot where DEATHSQUAD had to come clean up the - mess! We shouldn't have to worry about the VORE, but they know about something - called the Citadel. Apparently the cultists are trying to use redspace to bring - in an army from another dimension. We have no time left. We have to strike while - there's still something worth saving."} - -/obj/item/weapon/paper/listeningpost/year2558/november - name = "\improper November 2558 Report" - info = {"Maybe these VORE people aren't so bad after all. Mike says they actually HELPED during - our (apparently failed) attack on the Citadel. Shame they work for an evil corporation - like Nanotrasen though. They seem like a group of okay guys. Anyway, beside that, there - was a lot of commotion at the VORE recently. Space-time anomalies or something. Some - crazy guy showed up on the station claiming he's from 1945. The crew seems to think it's - legit though. Maybe he is. I don't think he is though. I'll keep monitoring the situation."} - -/obj/item/weapon/paper/listeningpost/year2558/december - name = "\improper December 2558 Report" - info = {"We hired a merc to capture their top Redspace scientist Kisuke Gema. Unfortunately, Colonel - Morgan was a fucking idiot as usual and turned his back for half a second, and the nerd cut - his fucking head off WITH HIS OWN ENERGY SWORD. At least the asshole didn't get any credit - for it. Sicko fuck took Morgan's severed head back with him as proof, but some janitor found - it and got all the credit and a big promotion. Just to add insult to injury, Santa visited - their station. IN PERSON. Meanwhile all I got was fucking socks... Okay fine I did need the - socks. It's cold as balls on this outpost... Damn it I'm lonely."} - -//////// 2559 //////// - -/obj/item/weapon/paper/listeningpost/year2559/january - name = "\improper January 2559 Report" - info = {"So, this guy from 1945 is legit. His name is Chase Monroe and he's a former Seargent in - the USCM or something. Although I feel like the USCM didn't exist in 1945. Also a pirate - stole one of our ships this month. A week later, the VORE gets attacked by some asshole - pirate flying one of our ships. Probably the same guy. They managed to take a hostage, - blow several bombs on the station, and even steal the nuke. VORE's security forces are - showing serious signs of weakness. Maybe we could exploit this."} - -/obj/item/weapon/paper/listeningpost/year2559/february - name = "\improper February 2559 Report" - info = {"Sounds like the World War 2 guy from Earth brought some unwanted friends along. Early - in the month, a battlecruiser showed up out of nowhere and started shooting up the station - and Central Command. They even knocked the Brutus out of commission. The Icarus apparently - sacrificed its self to protect the station and CentCom until the Soviets showed up. I guess - the Soviets got a beef with these guys too. Sounds like they jacked one of the Soviet's ships. - Makes sense, because a battleship like that doesn't just appear out of nowhere."} - -/obj/item/weapon/paper/listeningpost/year2559/march - name = "\improper March 2559 Report" - info = {"Hard to believe it's already been a year. NT's private navy has been running exercises more - often than usual. They also replaced the Icarus with a new and more heavily armed cruiser called - the Daedalus. They also have this new Battlenet AI which brought the VORE crew on a simulated - reenactment of Operation Magnum. They even had a copy of Townes, played by a cyborg. There have - been some really cryptic messages popping up though. It's eerily familiar. The message just keeps - repeating Bible verses and saying 'The Truth will set you free'... It's like what Townes used to - say about Nanotrasen. The Truth will set us free. The truth about all the atrocities Nanotrasen - has done over the years."} - -/obj/item/weapon/paper/listeningpost/year2559/april - name = "\improper April 2559 Report" - info = {"We were approached today by a man calling himself the 'Werwolf', alleged to be part of that group - that attacked Nanotrasen in early February. We never understood his motives WHY he attacked them. - Maybe he was trying to win brownie points with the Syndicate. If that was his goal, he's done well. - He offered to buy those nukes we stole last year. He also expressed great interest in our singularity - beacons. He's offered us a huge cache of weapons and a hefty sum in ancient gold and silver artifacts. - I think we're going to take the deal. When I get confirmation, I'll forward a line to Mike and Dave to - make the trade."} - -/obj/item/weapon/paper/listeningpost/year2559/may - name = "\improper May 2559 Report" - info = {"V.O.R.E. found something. An abandoned space station with a weapon called a mind flayer. There's also - rumor about some sort of a secret weapon NT was developing; a singularity bomb. Nothing of else of - real interest to report."} - -/obj/item/weapon/paper/listeningpost/year2559/june - name = "\improper June 2559 Report" - info = {"The WW2 guy is dead. Went out in a blaze of glory killing Space Axis. Mike and Dave are pissed. - They apparently broke protocol and went to help the V.O.R.E. crew in the attack, and they want to - keep helping. I know it's unorthodox but I have to side with Mike and Dave on this one. Respectfully - command, if we do not neutralize this so-called Fourth Reich, we'll have an enemy much worse than - NanoTrasen to deal with. Curiously, NanoTrasen refuses to officially support helping to remove this - threat. Possible collaberation?"} - -/obj/item/weapon/paper/listeningpost/year2559/july - name = "\improper July 2559 Report" - info = {"USDF ships have been spotted in the area. Admiral Glenn Pink is on board. This guy went MIA almost - ten years ago, and now he's back? Why? Apparently he's got some kind of connection with V.O.R.E.'s - captain Ace. Sounds like they're gearing up to go kick some Axis ass. It's like a bad action movie - plot. I don't know who this Admiral Pink is, but I guess Ace has at least a couple friends in high - places."} - -/obj/item/weapon/paper/listeningpost/year2559/august - name = "\improper August 2559 Report" - info = {"So, the reason Admiral Pink showed up in the last report was because these Space Axis hijacked - one of his vessels; the USDF Jormungandr or something. Well, the crazy bastards took it back. - We overheard radio transmissions about some kind of huge mech, bigger than anything we've ever seen - in regard to exosuits. Tore up the crew bad. Killed a few, wounded all of them, but after-action - report says someone got close and slapped C4 on its leg while its anti-tank cannon was firing. - They managed to even capture another one and bring it home. Recommend command try to figure out - what this mech is, and if we can steal it. Furthermore, Dr. Kisuke Gema was KIA. His mechanical - arm was destroyed, and with it, all of his genetic information to get around his cloning disorder. - So he's finally out of our hair."} - -/obj/item/weapon/paper/listeningpost/year2559/september - name = "\improper September 2559 Report" - info = {"Of course it's not that simple. The nerd is back from the dead. Wonderful. I don't know how but - he's back, or they have a fake Kisuke Gema, or whatever bullshit. In other news, the station has - been slated for demolition. They're shipping a new Mark-3 Exodus-class station from Bay Shipyards - all the way from the NanoTrasen branch in Nyx. The demolition keeps getting delayed."} - -/obj/item/weapon/paper/listeningpost/year2559/october - name = "\improper October 2559 Report" - info = {"Station was demolished and operations were put on pause for a whole week. In other news, captain - Ace reportedly got a promotion to CentCom but something went wrong. The stronger loyalty implant - had a negative effect on him and almost killed him. He was quickly demoted back to Captain. This - could be useful information later. Recommend command investigate thoroughly."} - -/obj/item/weapon/paper/listeningpost/year2559/november - name = "\improper November 2559 Report" - info = {"A clown federation owned vessel called the Calypso was discovered in the Virgo system. It was a - ghost ship. Allegedly everyone on board perished due to a joke so funny that everyone laughed - themselves to madness, then death. NanoTrasen is trying to cover it up. No one knows why."} - -/obj/item/weapon/paper/listeningpost/year2559/december - name = "\improper December 2559 Report" - info = {"The V.O.R.E. discovered a new gateway location; a clown temple. We need to send someone to see - this. Reportedly it's full of tunnel clowns and these mutants called cluwnes. A clown researcher - came and tried to study the ruins and translate the glyphs, but I guess he discovered the joke. - I remember listening to him one week just absolutely losing it. Over the command channel, captain - Ace and the others talked about what they had to do, how he couldn't go back to the clown planet. - They never said it outright, but I think Ace put him out of his misery. All I know is the clown - researcher turned up dead. In other news, someone stole the station's entire cloning facility at - the end of the month right before Xmas. That shit was hilarious. We gotta find who this guy is - and see if he wants a job. Ask our contacts on station. Surely one of them knows who's behind - the heist."} - -/obj/item/weapon/paper/listeningpost/year2560/january - name = "\improper January 2560 Report" - info = {"A group of Akula pirates tried to kidnap Kisuke Gema. They succeded, but their leader died of - his injuries soon after. The other pirates defected. I wonder why?"} - -/obj/item/weapon/paper/listeningpost/year2560/february - name = "\improper February 2560 Report" - info = {"There were a few incidents regarding a redspace anomaly in the chapel but the effects have long - since subsided. Nothing of major interest otherwise."} - -/obj/item/weapon/paper/listeningpost/year2560/march - name = "\improper March 2560 Report" - info = {"Very quiet month. Nothing of interest to report. Perhaps the calm before the storm?"} - -/obj/item/weapon/paper/listeningpost/year2560/april - name = "\improper April 2560 Report" - info = {"A loud, painfully high pitched SSTV signal came across global comms. It seems to be a distress signal - of some kind. To what, I have no idea. Efforts to trace the signal's origin have fallen inconclusive."} - /obj/item/weapon/paper/crumpled/listeningpost/fanfiction name = "\improper Regarding Latest Report" info = {"I swear to god, Dave, if you send us your stupid 'Futuristic version of VORE' fanfiction instead of actual diff --git a/maps/gateway_vr/listeningpost.dmm b/maps/gateway_vr/listeningpost.dmm index 6c2d6b2fb9..3d32c77f5b 100644 --- a/maps/gateway_vr/listeningpost.dmm +++ b/maps/gateway_vr/listeningpost.dmm @@ -97,31 +97,6 @@ /area/awaymission/listeningpost) "av" = ( /obj/structure/filingcabinet/chestdrawer, -/obj/item/weapon/paper/listeningpost/year2558/april, -/obj/item/weapon/paper/listeningpost/year2558/may, -/obj/item/weapon/paper/listeningpost/year2558/june, -/obj/item/weapon/paper/listeningpost/year2558/july, -/obj/item/weapon/paper/listeningpost/year2558/august, -/obj/item/weapon/paper/listeningpost/year2558/september, -/obj/item/weapon/paper/listeningpost/year2558/october, -/obj/item/weapon/paper/listeningpost/year2558/november, -/obj/item/weapon/paper/listeningpost/year2558/december, -/obj/item/weapon/paper/listeningpost/year2559/january, -/obj/item/weapon/paper/listeningpost/year2559/february, -/obj/item/weapon/paper/listeningpost/year2559/march, -/obj/item/weapon/paper/listeningpost/year2559/april, -/obj/item/weapon/paper/listeningpost/year2559/may, -/obj/item/weapon/paper/listeningpost/year2559/june, -/obj/item/weapon/paper/listeningpost/year2559/july, -/obj/item/weapon/paper/listeningpost/year2559/august, -/obj/item/weapon/paper/listeningpost/year2559/september, -/obj/item/weapon/paper/listeningpost/year2559/october, -/obj/item/weapon/paper/listeningpost/year2559/november, -/obj/item/weapon/paper/listeningpost/year2559/december, -/obj/item/weapon/paper/listeningpost/year2560/january, -/obj/item/weapon/paper/listeningpost/year2560/february, -/obj/item/weapon/paper/listeningpost/year2560/march, -/obj/item/weapon/paper/listeningpost/year2560/april, /turf/simulated/shuttle/floor/red/airless, /area/space) "aw" = ( diff --git a/maps/gateway_vr/lucky_7.dmm b/maps/gateway_vr/lucky_7.dmm index a74d18d72d..254dfd346b 100644 --- a/maps/gateway_vr/lucky_7.dmm +++ b/maps/gateway_vr/lucky_7.dmm @@ -1,1299 +1,29783 @@ -"aa" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"ab" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"ac" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 8; frequency = 1380; id_tag = "l7_dock_d1a3"; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"ad" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light_switch{dir = 4; pixel_x = -26; pixel_y = -7},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"ae" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"af" = (/obj/structure/table/woodentable,/obj/machinery/light,/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"ag" = (/obj/structure/table/borosilicate,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/awaymission/lucky7/loungeprivateroom) -"ah" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"ai" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"aj" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"ak" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"al" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"am" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"an" = (/obj/structure/casino_table/craps{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"ao" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"ap" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/item/weapon/material/knife/butch,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"aq" = (/obj/effect/floor_decal/spline/plain{dir = 10},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/casinofloor) -"ar" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/structure/cable/green,/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; pixel_y = -27; start_charge = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"as" = (/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"at" = (/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"au" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"av" = (/obj/structure/table/borosilicate,/obj/structure/dancepole,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/awaymission/lucky7/loungeprivateroom) -"aw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"ax" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"ay" = (/obj/structure/table/borosilicate,/turf/simulated/floor/tiled/eris/steel/bar_light,/area/awaymission/lucky7/loungeprivateroom) -"az" = (/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"aA" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/awaymission/lucky7/loungeprivateroom) -"aB" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/awaymission/lucky7/loungeprivateroom) -"aC" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"aD" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/privateroom/four) -"aE" = (/obj/structure/casino_table/blackjack_m{dir = 4},/obj/machinery/light/floortube{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"aF" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"aG" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/awaymission/lucky7/loungeprivateroom) -"aH" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"aI" = (/obj/structure/casino_table/blackjack_r{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"aJ" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 8; pixel_x = -27; start_charge = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"aK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"aL" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"aM" = (/obj/structure/casino_table/blackjack_r,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"aN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"aO" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/grey/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"aP" = (/obj/effect/floor_decal/rust,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"aQ" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"aR" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"aS" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"aT" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"aU" = (/obj/structure/casino_table/blackjack_r{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"aV" = (/obj/machinery/light/floortube{dir = 8},/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"aW" = (/obj/structure/cable/green,/obj/machinery/power/fractal_reactor/fluff/smes,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"aX" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/machinery/telecomms/allinone/casino,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"aY" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_cheat,/obj/structure/table/rack/shelf,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"ba" = (/obj/structure/table/borosilicate,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"bc" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"be" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"bf" = (/obj/machinery/gateway{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"bh" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"bj" = (/obj/structure/window/basic,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"bn" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"bo" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"bp" = (/turf/simulated/wall,/area/awaymission/lucky7/privategameroom) -"bt" = (/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "l7_dock_d2a1"; pixel_y = 28},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "dock_d1a1_sensor"; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "dock_d1a1_pump"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"bu" = (/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"bw" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"bx" = (/obj/structure/sink/kitchen{name = "sink"; pixel_y = 20},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"by" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/machinery/microwave,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"bB" = (/obj/random/soap,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/three) -"bC" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"bD" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/obj/item/device/radio{pixel_x = 10; pixel_y = 8},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"bE" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"bH" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"bK" = (/obj/structure/bed/chair/bay/comfy/blue,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"bL" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"bN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"bP" = (/obj/structure/casino_table/blackjack_m{dir = 4},/obj/item/weapon/deck/cards/casino,/obj/machinery/light/floortube{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"bX" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/breakroom) -"cb" = (/obj/machinery/gateway{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"cc" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"cm" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"cn" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"cp" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/loungeprivateroom) -"cq" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"cr" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"cz" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/tiled/freezer/cold,/area/awaymission/lucky7/kitchen) -"cD" = (/obj/structure/table/darkglass,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"cF" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"cG" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"cH" = (/obj/structure/lattice,/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"cI" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"cJ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"cK" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"cL" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"cM" = (/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"cN" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"cO" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"cR" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"cT" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"cV" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "l7_dock_d2a2"; landmark_tag = "l7_dockarm_d2a2"; name = "Dock D2A2"},/turf/space,/area/space) -"cY" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"da" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 7; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = -3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_y = -3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 7; pixel_y = -3},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"dd" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/alarm{pixel_y = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"df" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hotelhall) -"dg" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/monotile,/area/awaymission/lucky7/entry) -"dn" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"do" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"dr" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"du" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"dw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"dy" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"dz" = (/obj/machinery/computer/arcade/orion_trail,/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"dC" = (/obj/structure/bed/chair/sofa/left/brown{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"dE" = (/obj/machinery/computer/arcade/battle,/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"dF" = (/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/space_heater,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"dG" = (/obj/structure/window/basic,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"dP" = (/obj/structure/flora/pottedplant/largebush,/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"dS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/morgue{dir = 2; name = "Private Room"; req_access = null},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"dW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"dX" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"dZ" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/five) -"ea" = (/obj/machinery/bodyscanner{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"ec" = (/obj/machinery/door/morgue{dir = 2; name = "Private Room"; req_access = null},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/loungeprivateroom) -"ed" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/three) -"ei" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"ej" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer/cold,/area/awaymission/lucky7/kitchen) -"em" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/floor_decal/rust,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"en" = (/obj/structure/table/glass,/obj/machinery/door/window/eastleft{req_access = null},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"eo" = (/obj/structure/bed/chair/sofa/left/brown,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"ep" = (/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"er" = (/obj/effect/floor_decal/rust,/obj/structure/table/steel,/obj/item/weapon/weldingtool{pixel_x = 1; pixel_y = -4},/obj/item/clothing/glasses/welding{pixel_x = -3; pixel_y = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"et" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"ev" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/two) -"ey" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"ez" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"eC" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"eF" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"eG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"eH" = (/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"eL" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/handcuffs{pixel_y = -5},/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs{pixel_y = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"eS" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"eU" = (/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"eV" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/firealarm{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"eW" = (/obj/machinery/door/airlock{id_tag = "L7 Room 3"; name = "Private Room 3"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"eY" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"fb" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"fc" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"ff" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/storage/pill_bottle/happy,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"fi" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"fl" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"fu" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"fv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"fx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"fy" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"fA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/alarm{dir = 8; pixel_x = 27},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"fD" = (/obj/machinery/door/airlock{id_tag = "L7 Room 1"; name = "Private Room 1"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"fH" = (/turf/simulated/wall,/area/awaymission/lucky7/privategameroom/three) -"fM" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"fN" = (/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"fO" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hotelhall) -"fQ" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/privateroom) -"fS" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hall2) -"fT" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"fU" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/casinofloor) -"fX" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled/monotile,/area/awaymission/lucky7/entry) -"fZ" = (/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/medical) -"ga" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/bed/chair/office,/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"ge" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall2) -"gf" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"gh" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"gi" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/eastleft{dir = 2},/obj/item/weapon/pen,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "casino_check"; opacity = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"gr" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"gx" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/alarm{dir = 4; pixel_x = -27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"gB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"gD" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"gG" = (/turf/simulated/wall,/area/awaymission/lucky7/hall2) -"gH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"gL" = (/turf/simulated/wall,/area/awaymission/lucky7/dock1) -"gN" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"gS" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"gU" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"gV" = (/obj/machinery/door/airlock{name = "Arcade"},/obj/structure/cable/green{icon_state = "4-8"},/obj/item/tape/engineering,/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"gZ" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"hc" = (/obj/machinery/light{dir = 1},/obj/machinery/alarm{pixel_y = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"hh" = (/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"hi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"hm" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"hn" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"ho" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"hq" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"hu" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"hw" = (/obj/machinery/clawmachine,/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"hy" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/privateroom/five) -"hD" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"hF" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"hI" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "dock_d1l_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "dock_d1l_sensor"; pixel_x = 30; pixel_y = 8},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"hM" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/gateway) -"hN" = (/obj/structure/table/marble,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/chemical_dispenser/premium/full{dir = 4},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"hO" = (/turf/simulated/wall,/area/awaymission/lucky7/privateroom) -"hS" = (/obj/structure/table/marble,/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"hU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"ia" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"ib" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"id" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"il" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"ip" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"ir" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light,/turf/simulated/floor/carpet/retro,/area/awaymission/lucky7/arcade) -"it" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"iu" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"iv" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"iy" = (/obj/structure/table/bench/padded,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"iA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"iB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"iE" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"iG" = (/obj/random/trash_pile,/obj/random/trash,/obj/random/trash,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"iJ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"iM" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/vending/wallmed1/public{pixel_y = 28},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"iV" = (/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"iZ" = (/obj/effect/floor_decal/techfloor/orange,/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"jb" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hall2) -"jc" = (/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"jd" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"je" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"jl" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"jo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"jp" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"jq" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"jr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"jt" = (/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"jv" = (/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/medical) -"jx" = (/obj/structure/table/woodentable,/obj/item/trash/asian_bowl,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"jA" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"jB" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"jC" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"jH" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"jI" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "dock_d1l"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"jJ" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"jK" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"jM" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"jN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"jP" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"jQ" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"jS" = (/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"jV" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"jW" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/three) -"ka" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/rust,/obj/machinery/atmospherics/pipe/tank/air/full{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"kc" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"kd" = (/turf/simulated/floor/carpet/purcarpet,/area/awaymission/lucky7/privateroom/vip) -"ke" = (/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"kh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"km" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"kp" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"ks" = (/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"kv" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"kx" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"ky" = (/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"kz" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"kD" = (/turf/simulated/wall,/area/awaymission/lucky7/security) -"kF" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hall2) -"kJ" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"kL" = (/obj/structure/table/marble,/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/alarm{pixel_y = 28},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"kN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"kO" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"kP" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"kQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"kV" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"lh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"li" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"lm" = (/obj/machinery/alarm{dir = 4; pixel_x = -27},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"ln" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"lp" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/deliveryChute,/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"lq" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"lu" = (/turf/simulated/wall,/area/awaymission/lucky7/maint1) -"lw" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"lx" = (/obj/random/drinkbottle,/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"lB" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"lE" = (/obj/structure/lattice,/obj/structure/lattice,/turf/space,/area/space) -"lF" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"lI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"lL" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"lS" = (/turf/simulated/floor/tiled/freezer/cold,/area/awaymission/lucky7/kitchen) -"lZ" = (/obj/structure/bed/chair/comfy/beige,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"mb" = (/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"md" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"mh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/tank/air/full{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"mo" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"mp" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"mq" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 6},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"mt" = (/obj/structure/closet/crate/trashcart,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"mu" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer/cold,/area/awaymission/lucky7/kitchen) -"mv" = (/obj/structure/table/standard,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"mw" = (/obj/structure/flora/pottedplant/unusual,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"mC" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"mD" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"mE" = (/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"mH" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"mI" = (/obj/random/trash,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"mJ" = (/obj/structure/table/rack,/obj/item/weapon/storage/belt/janitor,/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"mK" = (/turf/simulated/wall,/area/awaymission/lucky7/casinofloor) -"mL" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"mN" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/structure/cable/green{dir = 1; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"mO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"mQ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"mR" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/bed/chair/office,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"mS" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"mT" = (/obj/random/trash,/obj/random/trash,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"mV" = (/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"mW" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"mX" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"na" = (/obj/structure/casino_table/blackjack_m{dir = 8},/obj/machinery/light/floortube{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"ng" = (/obj/item/weapon/stool/padded{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"nh" = (/obj/structure/window/basic,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"nj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"nl" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"nn" = (/obj/machinery/vending/deluxe_boozeomat/open,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/techmaint/airless,/area/awaymission/lucky7/barbackroom) -"np" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"nq" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"ns" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"nv" = (/obj/structure/table/gamblingtable,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"nw" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"nz" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"nA" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"nC" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"nD" = (/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/paleblue/border{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 9},/obj/machinery/alarm{dir = 4; pixel_x = -27},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"nE" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 1"; name = "Private Game Room 1"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"nK" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"nM" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 2"; name = "Private Game Room 2"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"nN" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer/cold,/area/awaymission/lucky7/kitchen) -"nR" = (/obj/structure/table/bench/padded,/obj/machinery/light,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"nS" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/structure/cable/green,/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"nX" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"nY" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"ob" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"og" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"oh" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 3"; name = "Private Game Room 3"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"ol" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"op" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"oq" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"or" = (/obj/structure/bed/chair/sofa/left/purp,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"os" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"oA" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"oD" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"oE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"oF" = (/obj/random/trash_pile,/obj/random/trash,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"oG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"oH" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/obj/machinery/light,/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"oO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"oP" = (/obj/machinery/alarm{dir = 4; pixel_x = -27},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"oS" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"oT" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/radio,/obj/item/ammo_casing/spent{pixel_x = -12; pixel_y = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"oV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"oY" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hotelhall) -"pb" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/arcade) -"pe" = (/obj/machinery/door/airlock/glass_security{req_one_access = null},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"pk" = (/obj/structure/table/glass,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/random/medical,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"pn" = (/obj/item/weapon/flame/candle/candelabra/everburn,/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"pr" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "dock_d1a1"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"ps" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"py" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"pA" = (/obj/structure/bed/chair/sofa/bench/left{dir = 1},/obj/effect/floor_decal/borderfloorblack{dir = 10},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"pB" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"pE" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/three) -"pH" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "L7 Cell 1"; name = "Cell 1 Door"; pixel_x = 28; req_access = null},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"pL" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"pM" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"pN" = (/obj/structure/bed/chair/comfy/beige,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"pO" = (/obj/structure/table/rack/shelf/steel,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/tool,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"pP" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"pV" = (/turf/simulated/wall,/area/awaymission/lucky7/loungeprivateroom) -"pX" = (/obj/structure/table/reinforced,/obj/item/ammo_magazine/m45{pixel_x = -5; pixel_y = -3},/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"qd" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"qg" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/vending/sol,/turf/simulated/floor/tiled/monotile,/area/awaymission/lucky7/hotelhall) -"qk" = (/obj/structure/railing{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"qs" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"qt" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = null; landmark_tag = "l7_dock_near"; name = "Near Dock"},/turf/space,/area/space) -"qv" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/captaindouble,/obj/structure/curtain/open/bed,/turf/simulated/floor/carpet/purcarpet,/area/awaymission/lucky7/privateroom/vip) -"qw" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"qz" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"qA" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"qB" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"qF" = (/turf/simulated/wall,/area/awaymission/lucky7/breakroom) -"qG" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"qH" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"qL" = (/obj/structure/table/borosilicate,/obj/structure/dancepole,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"qM" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"qN" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/lounge) -"qS" = (/obj/structure/casino_table/blackjack_l{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"qU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"qW" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/machinery/vending/wallmed1/public{pixel_y = 28},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"qY" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"rb" = (/obj/machinery/gateway{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"re" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"rf" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"rg" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/grey/border{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"rj" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/casinofloor) -"rm" = (/turf/space,/area/space) -"rn" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/clothing/mask/smokable/pipe,/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/casinofloor) -"rp" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"ru" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/breakroom) -"rw" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/bar) -"rx" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"rA" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance/common{name = "Trash Collection"},/obj/structure/catwalk,/obj/structure/cable/green{dir = 1; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"rB" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"rK" = (/obj/structure/bed/chair/sofa/bench/right{dir = 1},/obj/effect/floor_decal/borderfloorblack{dir = 6},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"rM" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/railing,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"rN" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/bar_guide,/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"rT" = (/obj/structure/casino_table/blackjack_r{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"rU" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"rZ" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"sc" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"sg" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"si" = (/obj/structure/bed/chair/wood{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"sk" = (/obj/random/trash,/obj/random/trash,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"sm" = (/obj/structure/table/standard,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"so" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"sp" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/firealarm{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"sq" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"ss" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"sv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"sB" = (/obj/machinery/washing_machine,/obj/item/clothing/under/modjump3,/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"sH" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"sM" = (/obj/structure/catwalk,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"sQ" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"sS" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"sT" = (/turf/simulated/wall,/area/awaymission/lucky7/maint2) -"sU" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"sV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"sX" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/cigar/havana{pixel_x = -2; pixel_y = 2},/obj/item/weapon/storage/fancy/cigar{pixel_x = 2; pixel_y = 3},/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/bar) -"sZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"tc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"td" = (/obj/structure/casino_table/roulette_chart,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"te" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer/cold,/area/awaymission/lucky7/kitchen) -"tm" = (/obj/machinery/vending/deluxe_dinner/open,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/techmaint/airless,/area/awaymission/lucky7/barbackroom) -"to" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/item/weapon/stool/padded{dir = 8},/obj/effect/decal/cleanable/filth,/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"tp" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"tr" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/three) -"ts" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"tt" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/alarm{dir = 8; pixel_x = 27},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"tv" = (/obj/structure/casino_table/roulette_table,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"tz" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"tD" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"tE" = (/obj/structure/table/marble,/obj/item/weapon/material/ashtray/glass,/obj/machinery/light/floortube{dir = 4},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"tG" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"tH" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"tJ" = (/obj/effect/floor_decal/sign/dock/one,/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"tM" = (/obj/structure/table/gamblingtable,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"tQ" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"tV" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/effect/floor_decal/techfloor/hole/right{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"tY" = (/obj/structure/table/gamblingtable,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"tZ" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"ua" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"ub" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"uc" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"ue" = (/obj/structure/bed/chair/sofa/bench/right,/obj/effect/floor_decal/borderfloorblack{dir = 9},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"uf" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/structure/flora/pottedplant,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"up" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"uu" = (/turf/simulated/wall,/area/awaymission/lucky7/privateroom/two) -"uv" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"ux" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"uy" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/effect/floor_decal/rust,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 32},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"uz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"uA" = (/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/structure/table/rack/steel,/obj/random/contraband,/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"uB" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"uE" = (/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"uF" = (/obj/structure/casino_table/craps,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/machinery/light/floortube{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"uG" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom) -"uH" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"uI" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"uJ" = (/obj/machinery/door/window/brigdoor/southleft{dir = 8; id = "L7 Cell 1"; name = "Cell 1"; req_access = list(2)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/security) -"uL" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"uO" = (/obj/random/trash_pile,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"uR" = (/turf/simulated/wall,/area/awaymission/lucky7/privateroom/four) -"uY" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"uZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"va" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/structure/cable/green{dir = 1; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"vb" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"vd" = (/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"vf" = (/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/borderfloorblack/corner2{dir = 6},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"vg" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"vk" = (/obj/effect/floor_decal/rust,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"vo" = (/obj/machinery/door/airlock/glass{name = "Dock Lounge"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"vq" = (/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"vr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"vt" = (/obj/random/soap,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/four) -"vu" = (/obj/effect/floor_decal/spline/plain{dir = 5},/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"vx" = (/obj/structure/casino_table/blackjack_m,/obj/machinery/light/floortube{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"vy" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"vN" = (/obj/effect/floor_decal/rust,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"vO" = (/obj/structure/lattice,/turf/space,/area/space) -"vR" = (/obj/structure/casino_table/blackjack_l{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"vT" = (/obj/effect/floor_decal/rust,/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"vU" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"vZ" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"wb" = (/obj/structure/bed/chair/sofa/left/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"wc" = (/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"wd" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"we" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/casino,/obj/item/weapon/pen,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"wj" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"wk" = (/obj/structure/bed/chair/sofa/right/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"wl" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"wo" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"wq" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "L7 Room 4"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/machinery/light_switch{pixel_x = 33; pixel_y = 26},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"wt" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"wu" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom) -"wv" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"ww" = (/obj/structure/table/marble,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/chemical_dispenser/premium/full{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"wC" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom) -"wG" = (/obj/structure/table/woodentable,/obj/item/trash/asian_bowl,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"wJ" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"wK" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"wL" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"wT" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"wY" = (/obj/structure/bed/chair/sofa/corner/brown{dir = 8},/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"xb" = (/obj/structure/table/rack/steel,/obj/random/maintenance,/obj/random/maintenance,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"xd" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"xh" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/embedded_controller/radio/airlock/docking_port{dir = 8; frequency = 1380; id_tag = "l7_dock_d2a3"; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"xm" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"xn" = (/turf/simulated/wall,/area/awaymission/lucky7/dock2) -"xq" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"xr" = (/obj/structure/table/glass,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/random/medical,/obj/machinery/light,/obj/random/medical,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"xt" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"xv" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"xz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"xC" = (/obj/machinery/light,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"xF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"xH" = (/obj/structure/casino_table/craps,/obj/machinery/light/floortube{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"xJ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"xK" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"xL" = (/obj/effect/decal/cleanable/blood/oil,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"xM" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"xN" = (/obj/machinery/holoplant,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/vip) -"xU" = (/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 1; pixel_y = 4},/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 2; pixel_y = -6},/obj/structure/table/rack/gun_rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"xZ" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"yb" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"yf" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/four) -"yg" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"yi" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/four) -"yk" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"yo" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"yp" = (/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"yv" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"yw" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/grey/border{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"yy" = (/obj/structure/bed/chair/sofa/right/purp{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"yz" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Dock Lounge"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/lounge) -"yA" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"yD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"yH" = (/obj/structure/table/steel,/obj/random/toolbox,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"yO" = (/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"yR" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/machinery/door/firedoor/glass,/obj/random/maintenance/foodstuff,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"yX" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"yY" = (/turf/simulated/wall,/area/awaymission/lucky7/arcade) -"yZ" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"za" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"zg" = (/obj/structure/table/gamblingtable,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"zk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"zp" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"zq" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"zr" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "dock_d1l_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "dock_d1l_sensor"; pixel_x = 30; pixel_y = 8},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"zv" = (/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"zx" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"zD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"zE" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"zH" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"zK" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"zM" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"zQ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"zR" = (/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"zV" = (/obj/effect/floor_decal/rust,/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"zW" = (/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"zY" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Ab" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"Am" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"Ap" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"Ar" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack/shelf/steel,/obj/random/maintenance/engineering,/obj/random/contraband,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"Av" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "dock_d1l"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"Ax" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Ay" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "dock_d1a1"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"AF" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"AG" = (/obj/structure/table/gamblingtable,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"AJ" = (/obj/random/trash_pile,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"AK" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled/freezer,/area/awaymission/lucky7/privateroom/vip) -"AN" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/privateroom/three) -"AO" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/two) -"AP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"AQ" = (/obj/machinery/vending/deluxe_cigs/open,/obj/effect/floor_decal/spline/plain,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/tiled/techmaint/airless,/area/awaymission/lucky7/barbackroom) -"AS" = (/obj/structure/bed/chair/sofa/bench,/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"AU" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"AW" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"AX" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"AY" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hotelhall) -"Ba" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"Be" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Bf" = (/turf/simulated/wall,/area/awaymission/lucky7/lounge) -"Bi" = (/obj/effect/floor_decal/rust,/obj/random/maintenance,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Bm" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/maint2) -"Bq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"Bs" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"BA" = (/obj/structure/closet/secure_closet/bar,/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"BE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"BH" = (/obj/structure/bed/chair/sofa/right/black{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"BK" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"BM" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"BQ" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"BT" = (/obj/structure/table/woodentable,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"BV" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/bed/chair/sofa/left/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"BW" = (/obj/effect/floor_decal/rust,/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"Cb" = (/obj/structure/table/standard,/obj/item/clothing/under/suit_jacket/really_black{pixel_x = 5; pixel_y = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"Cf" = (/obj/random/soap,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/five) -"Ch" = (/obj/machinery/door/airlock/glass_security{req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Ci" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"Ck" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Cl" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/bar) -"Cm" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"Cn" = (/obj/machinery/door/airlock{id_tag = "br bathroom"; name = "Bathroom"},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/breakroom) -"Co" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/breakroom) -"Cp" = (/obj/machinery/door/airlock/freezer{name = "Freezer"},/turf/simulated/floor/tiled/freezer/cold,/area/awaymission/lucky7/kitchen) -"Cu" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"CC" = (/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"CD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"CE" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"CG" = (/obj/structure/table/gamblingtable,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"CI" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"CM" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"CN" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"CO" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"CQ" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"CR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"CU" = (/obj/structure/table/steel,/obj/random/tool,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"CW" = (/obj/structure/table/steel,/obj/item/stack/cable_coil,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"CZ" = (/obj/structure/frame,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Db" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"Dg" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"Dh" = (/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/security) -"Di" = (/turf/simulated/wall,/area/awaymission/lucky7/workshop) -"Dk" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/four) -"Dm" = (/obj/effect/floor_decal/spline/plain{dir = 10},/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"Dn" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"Dp" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/effect/floor_decal/techfloor/hole/right{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"Dv" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/bar) -"Dw" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"Dx" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"DD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"DF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"DG" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"DH" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"DI" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"DL" = (/turf/simulated/wall,/area/awaymission/lucky7/privateroom/five) -"DO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"DP" = (/obj/structure/morgue{dir = 2},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/medical) -"DQ" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"DR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"DS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 4; icon_state = "pipe-j2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"DT" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"DY" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 4},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"DZ" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "l7_dock_d1a1"; landmark_tag = "l7_dockarm_d1a1"; name = "Dock D1A1"},/turf/space,/area/space) -"Ee" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "dock_d1a3_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "dock_d1a3_sensor"; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "l7_dock_d1a2"; pixel_y = 28},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"Ei" = (/obj/machinery/door/airlock{id_tag = "L7 VIP Room"; name = "VIP Room"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"Es" = (/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 8},/obj/machinery/door/airlock/glass_external,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"Et" = (/obj/machinery/door/airlock/engineering{name = "Workshop"; req_one_access = null},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Ew" = (/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 8},/obj/machinery/door/airlock/glass_external,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"Ez" = (/obj/structure/table/steel,/obj/item/stack/material/diamond{amount = 50; pixel_x = -5; pixel_y = -5},/obj/item/stack/material/diamond{amount = 50},/obj/item/stack/material/diamond{amount = 50; pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/security) -"EB" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"EC" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"EF" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"EI" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/gateway) -"EM" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"EN" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"EO" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"ES" = (/obj/structure/railing,/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"ET" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"EW" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/obj/structure/railing,/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Fa" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/item/device/flashlight/color,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Fd" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/four) -"Fj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"Fl" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"Fm" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"Fp" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"Fr" = (/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"Ft" = (/obj/machinery/door/airlock/medical{name = "Morgue"; req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/medical) -"Fu" = (/turf/simulated/wall,/area/awaymission/lucky7/bar) -"Fv" = (/obj/item/weapon/stool/padded{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Fw" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"FF" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"FG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/grey/border,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hotelhall) -"FJ" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"FK" = (/obj/structure/railing,/obj/structure/railing{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"FL" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"FN" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"FQ" = (/obj/effect/landmark/hidden_level,/turf/space,/area/space) -"FT" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"FU" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"FV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"FW" = (/obj/random/trash,/obj/machinery/light/small{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"FY" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/rust,/obj/random/contraband,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"FZ" = (/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Ge" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/two) -"Gf" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"Gg" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"Gh" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"Gi" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Gj" = (/turf/simulated/wall,/area/awaymission/lucky7/hotelhall) -"Gk" = (/obj/structure/table/woodentable,/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/carpet/purcarpet,/area/awaymission/lucky7/privateroom/vip) -"Gm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/button/remote/airlock{id = "L7 VIP Room"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/machinery/light_switch{pixel_x = 33; pixel_y = 26},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"Gn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Gp" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/vip) -"Gr" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Gs" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Gz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"GA" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/effect/floor_decal/techfloor/hole/right{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/gateway) -"GE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"GJ" = (/turf/simulated/wall,/area/awaymission/lucky7/privategameroom/two) -"GO" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"GP" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"GQ" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/medical) -"GR" = (/obj/structure/table/standard,/obj/machinery/button/remote/airlock{id = "br bathroom"; name = "Bathroom Lock"; pixel_x = -20; pixel_y = 10; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/breakroom) -"GS" = (/obj/effect/floor_decal/rust,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"GT" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"GV" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"GX" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"Ha" = (/obj/machinery/vending/wallmed1/public{pixel_x = 28},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/breakroom) -"Hb" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"Hf" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/obj/machinery/light,/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"Hg" = (/obj/effect/floor_decal/borderfloorblack,/obj/structure/bed/chair/sofa/bench{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"Hl" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Hm" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Hn" = (/obj/structure/table/marble,/obj/machinery/light/floortube{dir = 1},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"Ht" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "dock_d1a1"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"Hx" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Hz" = (/obj/random/trash,/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"HA" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"HB" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/obj/machinery/light,/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"HF" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/grille,/turf/space,/area/space) -"HH" = (/obj/effect/floor_decal/rust,/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"HJ" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"HM" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"HQ" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "L7 Room 1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/machinery/light_switch{pixel_x = 33; pixel_y = 26},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"HS" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"HW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"HZ" = (/obj/structure/table/rack/steel,/obj/item/weapon/spacecash/c1000{pixel_x = 6; pixel_y = 6},/obj/item/weapon/spacecash/c1000{pixel_x = 3; pixel_y = 3},/obj/item/weapon/spacecash/c1000,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/security) -"Ig" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"Ij" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"Ik" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Im" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/breakroom) -"In" = (/obj/structure/table/glass,/obj/random/medical,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Iq" = (/obj/structure/table/rack,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = -3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = -3},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = 3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = 3},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Ir" = (/obj/structure/table/glass,/obj/random/soap,/obj/item/weapon/towel/random,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/vip) -"Is" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"It" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"Iu" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"Iv" = (/obj/effect/floor_decal/rust,/obj/random/maintenance,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"Iw" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"IC" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/five) -"IF" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"IJ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"IM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"IN" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/grey/border{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"IR" = (/obj/random/soap,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/two) -"IS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Jc" = (/obj/structure/table/steel,/obj/random/cash/huge{pixel_y = 8},/obj/random/cash/huge,/obj/item/weapon/bikehorn{pixel_x = -7; pixel_y = 7},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/security) -"Jd" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/five) -"Jg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Jj" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"Jp" = (/obj/machinery/body_scanconsole{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Jq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Jw" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "casino_check"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Jy" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"Jz" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"JB" = (/turf/simulated/wall,/area/awaymission/lucky7/barbackroom) -"JC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"JE" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"JK" = (/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "l7_dock_d1a1"; pixel_y = 28},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "dock_d1a1_sensor"; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "dock_d1a1_pump"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/floor_decal/industrial/warning/cee{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"JL" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"JN" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"JP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"JR" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"JU" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"JW" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"Ka" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/bed/chair/sofa/bench/left,/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"Kf" = (/turf/simulated/wall,/area/awaymission/lucky7/kitchen) -"Ki" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Kj" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/hall2) -"Kk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"Kl" = (/turf/simulated/wall,/area/awaymission/lucky7/medical) -"Km" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/alarm{dir = 1; pixel_y = -27},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Kn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Ks" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"Kt" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"Ku" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/security) -"Kw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/obj/item/stack/material/phoron{amount = 2},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Kx" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"KA" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"KC" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"KE" = (/obj/structure/casino_table/blackjack_l,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"KG" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"KH" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"KI" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"KK" = (/turf/simulated/wall,/area/awaymission/lucky7/privateroom/three) -"KL" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"KM" = (/obj/machinery/door/airlock{id_tag = "L7 Room 4"; name = "Private Room 4"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"KN" = (/turf/simulated/wall/r_wall,/area/awaymission/lucky7/security) -"KR" = (/obj/random/trash_pile,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"KS" = (/obj/structure/table/steel,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"KT" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"KU" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"KY" = (/obj/structure/table/rack/steel,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"KZ" = (/obj/structure/bed/chair/sofa/left/purp{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"Le" = (/obj/random/trash_pile,/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Lg" = (/obj/random/trash,/obj/random/trash,/obj/machinery/light/small,/obj/structure/railing{dir = 8},/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"Lh" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"Li" = (/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Lj" = (/obj/machinery/door/airlock{name = "Breakroom"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"Lk" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "dock_d1l"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"Ll" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Lo" = (/obj/structure/table/woodentable,/obj/item/trash/bowl,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Lq" = (/obj/item/modular_computer/console{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Lr" = (/obj/structure/closet/crate,/obj/random/tool,/obj/random/tool,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Ls" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/flora/pottedplant/unusual,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Lw" = (/turf/simulated/wall,/area/awaymission/lucky7/privateroom/vip) -"Lx" = (/obj/structure/salvageable/slotmachine2,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Ly" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/purcarpet,/area/awaymission/lucky7/privateroom/vip) -"LA" = (/obj/structure/bed/chair/comfy/beige,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"LB" = (/obj/structure/salvageable/slotmachine1,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"LC" = (/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite/corner2,/obj/effect/floor_decal/corner/paleblue/bordercorner2,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"LE" = (/obj/machinery/slot_machine,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"LF" = (/obj/structure/table/steel,/obj/random/tool,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"LI" = (/obj/item/modular_computer/console{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"LJ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"LL" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/structure/closet/firecloset,/obj/machinery/alarm{pixel_y = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"LN" = (/obj/structure/table/marble,/obj/random/drinkbottle,/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"LO" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/bed/chair/office,/obj/machinery/alarm{pixel_y = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"LU" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"LV" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"LY" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"Ma" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/tool,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Mb" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"Mc" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 7; pixel_y = -3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_y = -3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = -3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 7; pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -7; pixel_y = 3},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"Md" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 8; pixel_x = -27; start_charge = 0},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"Me" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"Mf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"Mg" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Mh" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/grey/border{dir = 4},/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"Mk" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "dock_d1a3"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"Mm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Mn" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hotelhall) -"Mo" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"Mq" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/cola/soft{dir = 4},/turf/simulated/floor/tiled/monotile,/area/awaymission/lucky7/lounge) -"Ms" = (/obj/machinery/vending/assist{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Mt" = (/obj/structure/bed/chair/sofa/brown,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"Mw" = (/turf/simulated/wall,/area/awaymission/lucky7/gateway) -"My" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"MA" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/spline/plain{dir = 10},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/bar) -"ME" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"MG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"MJ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"MQ" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"MV" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/structure/table/rack/steel,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"MX" = (/obj/structure/table/steel,/obj/item/weapon/tool/wrench{pixel_x = 6; pixel_y = -3},/obj/item/device/multitool{pixel_x = -6},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"MY" = (/obj/effect/floor_decal/rust,/obj/structure/table/steel,/obj/item/stack/material/phoron{amount = 19},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"MZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"Na" = (/obj/structure/table/marble,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"Nb" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/closet/secure_closet/brig{id = "Cell 1"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/security) -"Nc" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Nd" = (/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Ng" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"Ni" = (/obj/random/trash_pile,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Nl" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/breakroom) -"Nm" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"No" = (/obj/machinery/door/morgue{dir = 2; name = "Private Room"; req_access = null},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"Nq" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Nr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Ny" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Nz" = (/obj/structure/coatrack,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"NC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/lounge) -"ND" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "L7 Room 5"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/machinery/light_switch{pixel_x = 33; pixel_y = 26},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"NF" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"NG" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"NI" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"NJ" = (/obj/effect/floor_decal/borderfloorwhite/corner{dir = 8},/obj/effect/floor_decal/corner/paleblue/bordercorner{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"NL" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock2) -"NN" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"NQ" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"NR" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "L7 Cell 2"; name = "Cell 2 Door"; pixel_x = 28; req_access = null},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"NS" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"NT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "brig_lockdown"; name = "Security Blast Doors"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/security) -"NV" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"NY" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/medical) -"Oa" = (/obj/structure/undies_wardrobe,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"Of" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_security{req_one_access = null},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Og" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"Oj" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Ok" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Ol" = (/obj/item/weapon/stool/padded{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Om" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Oo" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"Oq" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"Or" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "dock_d1a1"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"Ot" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/closet/secure_closet/brig{id = "Cell 2"},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/security) -"Ou" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/vip) -"Ow" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Ox" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"OA" = (/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"OB" = (/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/machinery/light/small{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/security) -"OC" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"OE" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"OI" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"OJ" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"OM" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"ON" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"OO" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/security) -"OP" = (/turf/simulated/wall,/area/awaymission/lucky7/laundry) -"OS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/alarm{dir = 4; pixel_x = -27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"OT" = (/obj/machinery/slot_machine,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"OW" = (/obj/effect/floor_decal/rust,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Pa" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"Pc" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/junk,/obj/effect/floor_decal/rust,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Pj" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Pk" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/chem_master/condimaster,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Pm" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "dock_d1l_pump"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"Pn" = (/obj/structure/table/rack/steel,/obj/random/maintenance,/obj/random/junk,/obj/random/junk,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/obj/random/contraband,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Pq" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 8; pixel_x = -27; start_charge = 0},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Ps" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Pu" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"Pw" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"Py" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"PC" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "L7 Room 3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/machinery/light_switch{pixel_x = 33; pixel_y = 26},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"PE" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"PF" = (/obj/machinery/alarm{pixel_y = 27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"PG" = (/obj/effect/floor_decal/borderfloorwhite/corner,/obj/effect/floor_decal/corner/paleblue/bordercorner,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"PI" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"PJ" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"PN" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/two) -"PP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"PQ" = (/obj/structure/bed/chair/sofa/right/brown,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"PT" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"PV" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/sink/kitchen{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"PX" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"Qa" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"Qd" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"Qg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/medical{name = "Clinic"; req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Qi" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"Qm" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/appliance/cooker/grill,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Qo" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/appliance/cooker/fryer,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Qp" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/vending/bepis,/turf/simulated/floor/tiled/monotile,/area/awaymission/lucky7/hotelhall) -"Qq" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"Qr" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "Safe"; req_one_access = null},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/security) -"Qs" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Qt" = (/obj/structure/table/gamblingtable,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"Qv" = (/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Qz" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 8; pixel_x = -27; start_charge = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"QC" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"QD" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom) -"QG" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"QK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/catwalk,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"QM" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 1; pixel_y = 27; start_charge = 0},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"QR" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"QU" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"QV" = (/obj/machinery/casino_prize_dispenser,/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/casinofloor) -"Rb" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Rc" = (/obj/effect/floor_decal/spline/plain,/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/obj/random/cash/big{pixel_x = 5; pixel_y = 8},/obj/random/cash/big,/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/casinofloor) -"Rf" = (/obj/machinery/casino_prize_dispenser,/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/casinofloor) -"Rk" = (/obj/machinery/chipmachine{pixel_y = 32},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Rm" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"Ro" = (/obj/structure/bed/chair/sofa/brown{dir = 8},/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"Ru" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"Rw" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"Rx" = (/obj/effect/floor_decal/spline/plain,/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"RF" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"RH" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"RL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"RM" = (/turf/simulated/floor/carpet/purple,/area/awaymission/lucky7/privategameroom) -"RN" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"RQ" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack/steel,/obj/random/tool,/obj/random/junk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"RT" = (/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"RV" = (/obj/machinery/alarm{pixel_y = 27},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"RW" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/awaymission/lucky7/barbackroom) -"RX" = (/obj/structure/table/woodentable,/obj/item/trash/bowl,/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"RY" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/vip) -"RZ" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/grey/border{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"Sd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"Sj" = (/obj/item/weapon/stool/padded,/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Sk" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"Sl" = (/obj/machinery/door/airlock{id_tag = "L7 Room 4"; name = "Private Room 4"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"Sm" = (/obj/effect/shuttle_landmark{base_area = /area/space; base_turf = /turf/space; docking_controller = "l7_dock_d1a2"; landmark_tag = "l7_dockarm_d1a2"; name = "Dock D1A2"},/turf/space,/area/space) -"Sn" = (/obj/structure/bed/chair/sofa/brown{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"Sr" = (/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/breakroom) -"Ss" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/five) -"Sv" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"Sw" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hotelhall) -"SE" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"SF" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/grey/bordercorner,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"SG" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/two) -"SI" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/laundry) -"SK" = (/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"SM" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"SO" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/grey/border{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hotelhall) -"SP" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"SR" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"SS" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "dock_d1a3_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "dock_d1a3_sensor"; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "l7_dock_d2a2"; pixel_y = 28},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"SX" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"SY" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"SZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/obj/structure/disposalpipe/segment{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Ta" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stack/material/phoron{amount = 6},/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Td" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"Te" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"Tf" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/power/port_gen/pacman{anchored = 1},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"Th" = (/obj/machinery/door/window/brigdoor/southleft{dir = 8; id = "L7 Cell 2"; name = "Cell 2"; req_access = list(2)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/security) -"Tj" = (/obj/structure/bed/chair/sofa/brown{dir = 1},/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"Tk" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"Tl" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/vip) -"Tn" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/eastright{dir = 2},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "casino_check"; opacity = 0},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Ts" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/spline/plain{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/bar) -"Tt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Tu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"Tv" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/vip) -"Tx" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/decal/cleanable/egg_smudge,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Ty" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"TB" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"TD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"TF" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"TH" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"TI" = (/obj/machinery/door/airlock{id_tag = "L7 Room 2"; name = "Private Room 2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"TK" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"TM" = (/obj/effect/floor_decal/borderfloorblack{dir = 8},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"TP" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"TQ" = (/obj/machinery/gateway{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"TR" = (/obj/structure/window/basic,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"TT" = (/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"TU" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"TV" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/awaymission/lucky7/dock1) -"TW" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"TX" = (/obj/random/trash_pile,/obj/random/maintenance,/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"TY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"TZ" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 8; pixel_x = -27; start_charge = 0},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"Ub" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Ud" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Uf" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Ug" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Um" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "dock_d1l"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"Ut" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Uu" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"Uv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/borderfloorblack{dir = 4},/obj/effect/floor_decal/borderfloorblack/corner2{dir = 5},/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/gateway) -"Ux" = (/obj/machinery/firealarm{pixel_y = 26},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"UD" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"UE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/maint1) -"UG" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/three) -"UM" = (/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"US" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "dock_d1l_pump"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"UW" = (/turf/simulated/wall,/area/awaymission/lucky7/trash) -"UY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/alarm{dir = 4; pixel_x = -27},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"Va" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/machinery/door/airlock/glass{name = "Kitchen"},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Vd" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "L7 Room 2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26},/obj/machinery/light_switch{pixel_x = 33; pixel_y = 26},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/two) -"Vi" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/vending/security{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Vk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Vm" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"Vp" = (/obj/machinery/gateway{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"Vs" = (/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/security) -"Vt" = (/obj/machinery/light,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"Vu" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Vv" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"Vw" = (/obj/machinery/slot_machine,/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hall2) -"Vx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "dock_d1a3"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"Vz" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"VC" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"VD" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/greendouble,/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"VO" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"VS" = (/turf/simulated/floor/plating,/area/awaymission/lucky7/trash) -"VT" = (/obj/structure/table/bench/padded,/turf/simulated/floor/wood,/area/awaymission/lucky7/lounge) -"VU" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/three) -"VV" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet/turcarpet,/area/awaymission/lucky7/casinofloor) -"VW" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Wc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"Wd" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"Wh" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Wi" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/vending/cigarette{dir = 4},/turf/simulated/floor/tiled/monotile,/area/awaymission/lucky7/lounge) -"Wj" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/item/clothing/suit/armor/bulletproof/alt{pixel_x = -6},/obj/item/clothing/suit/armor/bulletproof/alt{pixel_x = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Wm" = (/obj/structure/table/gamblingtable,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet/green,/area/awaymission/lucky7/privategameroom/two) -"Wp" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Wr" = (/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Ws" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"Wu" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Wy" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/yellowdouble,/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"Wz" = (/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock2) -"WA" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"WB" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"WC" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/random/donkpocketbox{pixel_x = 1; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"WE" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"WG" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool,/area/awaymission/lucky7/privateroom/vip) -"WI" = (/obj/effect/floor_decal/rust,/obj/random/maintenance,/turf/simulated/floor/plating,/area/awaymission/lucky7/maint1) -"WJ" = (/obj/machinery/door/airlock/glass_external,/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/awaymission/lucky7/dock1) -"WK" = (/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom) -"WM" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"WP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"WQ" = (/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/obj/structure/table/standard,/obj/item/device/healthanalyzer,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"WR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"WU" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"WV" = (/obj/structure/disposalpipe/segment,/obj/structure/catwalk,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/awaymission/lucky7/maint2) -"WX" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"WZ" = (/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom) -"Xa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/five) -"Xf" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Xg" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"Xn" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Xo" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/awaymission/lucky7/gateway) -"Xr" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Xs" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) -"Xw" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/structure/table/marble,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/kitchen) -"Xz" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"XA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"XH" = (/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"XK" = (/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 5},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"XO" = (/obj/machinery/door/window/eastleft{req_access = null},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"XP" = (/obj/machinery/firealarm{dir = 4; pixel_x = 27},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"XS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"XT" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"XU" = (/obj/structure/table/woodentable,/obj/item/pizzabox/margherita,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"XZ" = (/obj/effect/decal/cleanable/filth,/turf/simulated/floor/lino,/area/awaymission/lucky7/bar) -"Yb" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Yc" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"Ye" = (/obj/effect/overmap/visitable/sector/common_gateway/lucky7,/turf/space,/area/space) -"Yj" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Yk" = (/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"Yn" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/workshop) -"Yp" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"Yw" = (/obj/machinery/alarm{pixel_y = 27},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/hotelhall) -"Yy" = (/turf/simulated/wall,/area/awaymission/lucky7/entry) -"YA" = (/obj/structure/bed/chair,/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"YC" = (/obj/structure/flora/pottedplant{icon_state = "plant-21"},/obj/effect/floor_decal/borderfloorwhite{dir = 5},/obj/effect/floor_decal/corner/paleblue/border{dir = 5},/obj/machinery/alarm{dir = 8; pixel_x = 27},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"YD" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"YE" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/machinery/alarm{pixel_y = 27},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"YG" = (/obj/machinery/media/jukebox,/turf/simulated/floor/wood,/area/awaymission/lucky7/bar) -"YO" = (/obj/random/soap,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom) -"YQ" = (/obj/structure/casino_table/blackjack_m,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/floortube{dir = 1},/turf/simulated/floor/carpet/brown,/area/awaymission/lucky7/casinofloor) -"YT" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"YX" = (/turf/simulated/wall,/area/awaymission/lucky7/hall1) -"YY" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"YZ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock2) -"Za" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/four) -"Ze" = (/obj/structure/table/reinforced,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/ammo_casing/spent,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Zf" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"Zh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access = null},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"Zi" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/security) -"Zj" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"Zu" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"Zx" = (/obj/structure/bed/chair/sofa/right/purp,/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/vip) -"ZB" = (/obj/structure/bed/chair/sofa/right/brown,/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"ZC" = (/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/structure/cable/green,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 4; pixel_x = 27; start_charge = 0},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/medical) -"ZD" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/lucky7/privateroom/five) -"ZE" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"ZF" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/soap/nanotrasen,/obj/structure/closet,/obj/effect/floor_decal/rust,/obj/item/weapon/storage/bag/trash,/turf/simulated/floor/tiled,/area/awaymission/lucky7/maint1) -"ZJ" = (/obj/structure/bed/chair/sofa/brown,/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"ZK" = (/obj/structure/bed/chair/sofa/corner/brown,/turf/simulated/floor/carpet,/area/awaymission/lucky7/hall1) -"ZL" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/awaymission/lucky7/hall1) -"ZO" = (/obj/structure/table/steel,/obj/item/weapon/spacecasinocash/c1000{pixel_x = -3; pixel_y = -3},/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techfloor,/area/awaymission/lucky7/security) -"ZP" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/power/apc{alarms_hidden = 1; cell_type = /obj/item/weapon/cell/apc; dir = 8; pixel_x = -27; start_charge = 0},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/carpet/blue2,/area/awaymission/lucky7/privategameroom/three) -"ZR" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/lucky7/entry) -"ZT" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/privateroom/two) -"ZV" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/awaymission/lucky7/privateroom/four) -"ZW" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/awaymission/lucky7/dock1) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"ab" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"ac" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + frequency = 1380; + id_tag = "l7_dock_d1a3"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"ad" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -26; + pixel_y = -7 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"ae" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"af" = ( +/obj/structure/table/woodentable, +/obj/machinery/light, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"ag" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/awaymission/lucky7/loungeprivateroom) +"ah" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"ai" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"aj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"ak" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"al" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"am" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"an" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"ao" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"ap" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"aq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/casinofloor) +"ar" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + alarms_hidden = 1; + pixel_y = -27; + start_charge = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"as" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"at" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"au" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"av" = ( +/obj/structure/table/borosilicate, +/obj/structure/dancepole, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/awaymission/lucky7/loungeprivateroom) +"aw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"ax" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"ay" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/awaymission/lucky7/loungeprivateroom) +"az" = ( +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"aA" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/awaymission/lucky7/loungeprivateroom) +"aB" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/awaymission/lucky7/loungeprivateroom) +"aC" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"aD" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/privateroom/four) +"aE" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"aF" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"aG" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/awaymission/lucky7/loungeprivateroom) +"aH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"aI" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"aJ" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 8; + pixel_x = -27; + start_charge = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"aK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"aL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"aM" = ( +/obj/structure/casino_table/blackjack_r, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"aN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"aO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"aP" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"aQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"aR" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"aS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"aT" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"aU" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"aV" = ( +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/structure/casino_table/roulette_chart, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"aW" = ( +/obj/structure/cable/green, +/obj/machinery/power/fractal_reactor/fluff/smes, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"aX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/machinery/telecomms/allinone/casino, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"aY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/weapon/storage/box/roulette_balls_normal, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/obj/item/weapon/storage/box/roulette_balls_cheat, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"ba" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"bc" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"be" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"bf" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"bh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"bj" = ( +/obj/structure/window/basic, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"bn" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"bo" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"bp" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privategameroom) +"bt" = ( +/obj/machinery/light/small, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "l7_dock_d2a1"; + pixel_y = 28 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d1a1_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "dock_d1a1_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"bu" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"bw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"bx" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 20 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"by" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"bB" = ( +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/three) +"bC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork/plastic, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"bD" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/device/radio{ + pixel_x = 10; + pixel_y = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"bE" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"bH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"bK" = ( +/obj/structure/bed/chair/bay/comfy/blue, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"bL" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"bN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"bP" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 4 + }, +/obj/item/weapon/deck/cards/casino, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"bX" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/breakroom) +"cb" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"cc" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"cm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"cn" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"cp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/loungeprivateroom) +"cq" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"cr" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"cz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/freezer/cold, +/area/awaymission/lucky7/kitchen) +"cD" = ( +/obj/structure/table/darkglass, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"cF" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"cG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"cH" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"cI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"cJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"cK" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"cL" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"cM" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"cN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"cO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"cR" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"cT" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"cV" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "l7_dock_d2a2"; + landmark_tag = "l7_dockarm_d2a2"; + name = "Dock D2A2" + }, +/turf/space, +/area/space) +"cY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"da" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"dd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"df" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hotelhall) +"dg" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/monotile, +/area/awaymission/lucky7/entry) +"dn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"do" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"dr" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"du" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"dw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"dy" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"dz" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"dC" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"dE" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"dF" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"dG" = ( +/obj/structure/window/basic, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"dP" = ( +/obj/structure/flora/pottedplant/largebush, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"dS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/morgue{ + dir = 2; + name = "Private Room"; + req_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"dW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"dX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"dZ" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/five) +"ea" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"ec" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Private Room"; + req_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/loungeprivateroom) +"ed" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/three) +"ei" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"ej" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer/cold, +/area/awaymission/lucky7/kitchen) +"em" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/effect/floor_decal/rust, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"en" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/eastleft{ + req_access = null + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"eo" = ( +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"ep" = ( +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"er" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/steel, +/obj/item/weapon/weldingtool{ + pixel_x = 1; + pixel_y = -4 + }, +/obj/item/clothing/glasses/welding{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"et" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"ev" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/two) +"ey" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"ez" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"eC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"eF" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"eG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"eH" = ( +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"eL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/handcuffs{ + pixel_y = -5 + }, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"eS" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"eU" = ( +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"eV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"eW" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 3"; + name = "Private Room 3" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"eY" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"fb" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"fc" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"ff" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/storage/pill_bottle/happy, +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"fi" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"fl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"fu" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"fv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"fx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"fy" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"fA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"fD" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 1"; + name = "Private Room 1" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"fH" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privategameroom/three) +"fM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"fN" = ( +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"fO" = ( +/obj/structure/flora/pottedplant/tall, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hotelhall) +"fQ" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/privateroom) +"fS" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hall2) +"fT" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"fU" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/casinofloor) +"fX" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/monotile, +/area/awaymission/lucky7/entry) +"fZ" = ( +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/medical) +"ga" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/bed/chair/office, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"ge" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall2) +"gf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"gh" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"gi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2 + }, +/obj/item/weapon/pen, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "casino_check"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"gr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"gx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"gB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"gD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"gG" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/hall2) +"gH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"gL" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/dock1) +"gN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"gS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"gU" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"gV" = ( +/obj/machinery/door/airlock{ + name = "Arcade" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/tape/engineering, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"gZ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"hc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"hh" = ( +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"hi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"hm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"hn" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"ho" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"hq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"hu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"hw" = ( +/obj/machinery/clawmachine, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"hy" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/privateroom/five) +"hD" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"hF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"hI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "dock_d1l_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d1l_sensor"; + pixel_x = 30; + pixel_y = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"hM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/gateway) +"hN" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/chemical_dispenser/premium/full{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"hO" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privateroom) +"hS" = ( +/obj/structure/table/marble, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"hU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"ia" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"ib" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"id" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"il" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"ip" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"ir" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/light, +/turf/simulated/floor/carpet/retro, +/area/awaymission/lucky7/arcade) +"it" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"iu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"iv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"iy" = ( +/obj/structure/table/bench/padded, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"iA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"iB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"iE" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"iG" = ( +/obj/random/trash_pile, +/obj/random/trash, +/obj/random/trash, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"iJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"iM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"iV" = ( +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"iZ" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"jb" = ( +/obj/structure/flora/pottedplant/tall, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hall2) +"jc" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"jd" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"je" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"jl" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"jo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"jp" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"jq" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"jr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"jt" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"jv" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/medical) +"jx" = ( +/obj/structure/table/woodentable, +/obj/item/trash/asian_bowl, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"jA" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"jB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"jC" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"jH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"jI" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "dock_d1l"; + name = "interior access button"; + pixel_x = -28; + pixel_y = -26; + req_access = list(13) + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"jJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"jK" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"jM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"jN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"jP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"jQ" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"jS" = ( +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"jV" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"jW" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/three) +"ka" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/tank/air/full{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"kc" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"kd" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/awaymission/lucky7/privateroom/vip) +"ke" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"kh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"km" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"kp" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"ks" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"kv" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"kx" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"ky" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"kz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"kD" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/security) +"kF" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hall2) +"kJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"kL" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"kN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"kO" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"kP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"kQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"kV" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"lh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"li" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"lm" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"ln" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"lp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/deliveryChute, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"lq" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"lu" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/maint1) +"lw" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"lx" = ( +/obj/random/drinkbottle, +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"lB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"lE" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/space, +/area/space) +"lF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"lI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"lL" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"lS" = ( +/turf/simulated/floor/tiled/freezer/cold, +/area/awaymission/lucky7/kitchen) +"lZ" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"mb" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"md" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"mh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/tank/air/full{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"mo" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"mp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"mq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"mt" = ( +/obj/structure/closet/crate/trashcart, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"mu" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/awaymission/lucky7/kitchen) +"mv" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"mw" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"mC" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"mD" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"mE" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"mH" = ( +/obj/machinery/gateway, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"mI" = ( +/obj/random/trash, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"mJ" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/janitor, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"mK" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/casinofloor) +"mL" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"mN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"mO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"mQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"mR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/bed/chair/office, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"mS" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"mT" = ( +/obj/random/trash, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"mV" = ( +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"mW" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"mX" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"na" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"ng" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"nh" = ( +/obj/structure/window/basic, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"nj" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"nl" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"nn" = ( +/obj/machinery/vending/deluxe_boozeomat/open, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/techmaint/airless, +/area/awaymission/lucky7/barbackroom) +"np" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"nq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"ns" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"nv" = ( +/obj/structure/table/gamblingtable, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"nw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"nz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"nA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"nC" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"nD" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"nE" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 PGR 1"; + name = "Private Game Room 1" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"nK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"nM" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 PGR 2"; + name = "Private Game Room 2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"nN" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer/cold, +/area/awaymission/lucky7/kitchen) +"nR" = ( +/obj/structure/table/bench/padded, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"nS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"nX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"nY" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"ob" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"og" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"oh" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 PGR 3"; + name = "Private Game Room 3" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"ol" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"op" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"oq" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"or" = ( +/obj/structure/bed/chair/sofa/left/purp, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"os" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"oA" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"oD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"oE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"oF" = ( +/obj/random/trash_pile, +/obj/random/trash, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"oG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"oH" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"oO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"oP" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"oS" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"oT" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/radio, +/obj/item/ammo_casing/spent{ + pixel_x = -12; + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"oV" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"oY" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hotelhall) +"pb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/arcade) +"pe" = ( +/obj/machinery/door/airlock/glass_security{ + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"pk" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/random/medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"pn" = ( +/obj/item/weapon/flame/candle/candelabra/everburn, +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"pr" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d1a1"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26; + req_one_access = list(13) + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"ps" = ( +/obj/structure/closet/walllocker_double{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/book/manual/wizzoffguide, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"py" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 PGR 1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"pA" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"pB" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 PGR 2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"pE" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/three) +"pH" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "L7 Cell 1"; + name = "Cell 1 Door"; + pixel_x = 28; + req_access = null + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"pL" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"pM" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"pN" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"pO" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"pP" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"pV" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/loungeprivateroom) +"pX" = ( +/obj/structure/table/reinforced, +/obj/item/ammo_magazine/m45{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"qd" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 PGR 3"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"qg" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/vending/sol, +/turf/simulated/floor/tiled/monotile, +/area/awaymission/lucky7/hotelhall) +"qk" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"qs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"qt" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = null; + landmark_tag = "l7_dock_near"; + name = "Near Dock" + }, +/turf/space, +/area/space) +"qv" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet/purcarpet, +/area/awaymission/lucky7/privateroom/vip) +"qw" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"qz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"qA" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"qB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"qF" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/breakroom) +"qG" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"qH" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"qL" = ( +/obj/structure/table/borosilicate, +/obj/structure/dancepole, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"qM" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"qN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/lounge) +"qS" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"qU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"qW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"qY" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"rb" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"re" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"rf" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"rg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"rj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/casinofloor) +"rm" = ( +/turf/space, +/area/space) +"rn" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/clothing/mask/smokable/pipe, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/casinofloor) +"rp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"ru" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/breakroom) +"rw" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/bar) +"rx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"rA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/common{ + name = "Trash Collection" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"rB" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"rK" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"rM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"rN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/bar_guide, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"rT" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"rU" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"rZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"sc" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"sg" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"si" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"sk" = ( +/obj/random/trash, +/obj/random/trash, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"sm" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"so" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"sp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"sq" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"ss" = ( +/obj/structure/table/woodentable, +/obj/item/trash/plate, +/obj/item/weapon/material/kitchen/utensil/fork/plastic, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"sv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"sB" = ( +/obj/machinery/washing_machine, +/obj/item/clothing/under/modjump3, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"sH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"sM" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"sQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"sS" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"sT" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/maint2) +"sU" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"sV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"sX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/cigar/havana{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/storage/fancy/cigar{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/bar) +"sZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"tc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"td" = ( +/obj/structure/casino_table/roulette_chart, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"te" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer/cold, +/area/awaymission/lucky7/kitchen) +"tm" = ( +/obj/machinery/vending/deluxe_dinner/open, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/techmaint/airless, +/area/awaymission/lucky7/barbackroom) +"to" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/obj/effect/decal/cleanable/filth, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"tp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"tr" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/three) +"ts" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/crate/internals, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"tt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"tv" = ( +/obj/structure/casino_table/roulette_table, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"tz" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"tD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"tE" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/ashtray/glass, +/obj/machinery/light/floortube{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"tG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"tH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"tJ" = ( +/obj/effect/floor_decal/sign/dock/one, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"tM" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"tQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"tV" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"tY" = ( +/obj/structure/table/gamblingtable, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"tZ" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"ua" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"ub" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"uc" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"ue" = ( +/obj/structure/bed/chair/sofa/bench/right, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"uf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/structure/flora/pottedplant, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"up" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"uu" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privateroom/two) +"uv" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"ux" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"uy" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/rust, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"uz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"uA" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/structure/table/rack/steel, +/obj/random/contraband, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"uB" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"uE" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"uF" = ( +/obj/structure/casino_table/craps, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"uG" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom) +"uH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"uI" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"uJ" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + id = "L7 Cell 1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/security) +"uL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"uO" = ( +/obj/random/trash_pile, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"uR" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privateroom/four) +"uY" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/weapon/dice, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"uZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"va" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"vb" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"vd" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"vf" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"vg" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"vk" = ( +/obj/effect/floor_decal/rust, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"vo" = ( +/obj/machinery/door/airlock/glass{ + name = "Dock Lounge" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"vq" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"vt" = ( +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/four) +"vu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"vx" = ( +/obj/structure/casino_table/blackjack_m, +/obj/machinery/light/floortube{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"vy" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"vN" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"vO" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"vR" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"vT" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"vU" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"vZ" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"wb" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"wc" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"wd" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"we" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/casino, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"wj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"wk" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"wl" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"wo" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"wq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/airlock{ + id = "L7 Room 4"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 33; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"wt" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"wu" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom) +"wv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"ww" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/chemical_dispenser/premium/full{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"wC" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom) +"wG" = ( +/obj/structure/table/woodentable, +/obj/item/trash/asian_bowl, +/obj/item/weapon/material/kitchen/utensil/fork/plastic, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"wJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"wK" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"wL" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"wT" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"wY" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"xb" = ( +/obj/structure/table/rack/steel, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"xd" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"xh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + frequency = 1380; + id_tag = "l7_dock_d2a3"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"xm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"xn" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/dock2) +"xq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"xr" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/random/medical, +/obj/machinery/light, +/obj/random/medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"xt" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"xv" = ( +/obj/structure/table/woodentable, +/obj/item/trash/plate, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"xz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"xC" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"xF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"xH" = ( +/obj/structure/casino_table/craps, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"xJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"xK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"xL" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"xM" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"xN" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/vip) +"xU" = ( +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 2; + pixel_y = -6 + }, +/obj/structure/table/rack/gun_rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"xZ" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"yb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"yf" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/four) +"yg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"yi" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/four) +"yk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"yo" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"yp" = ( +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"yv" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"yw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"yy" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"yz" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Dock Lounge" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/lounge) +"yA" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"yD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"yH" = ( +/obj/structure/table/steel, +/obj/random/toolbox, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"yO" = ( +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"yR" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/machinery/door/firedoor/glass, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"yX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"yY" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/arcade) +"yZ" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"za" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"zg" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"zk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"zp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"zq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"zr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "dock_d1l_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d1l_sensor"; + pixel_x = 30; + pixel_y = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"zv" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"zx" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"zD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"zE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"zH" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"zK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"zM" = ( +/obj/structure/table/woodentable, +/obj/item/trash/plate, +/obj/item/weapon/material/kitchen/utensil/fork/plastic, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"zQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"zR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"zV" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"zW" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"zY" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Ab" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"Am" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"Ap" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"Ar" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/engineering, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"Av" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "dock_d1l"; + name = "interior access button"; + pixel_x = -28; + pixel_y = -26; + req_access = list(13) + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"Ax" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Ay" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "dock_d1a1"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26; + req_one_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"AF" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"AG" = ( +/obj/structure/table/gamblingtable, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"AJ" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"AK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/lucky7/privateroom/vip) +"AN" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/privateroom/three) +"AO" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/two) +"AP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"AQ" = ( +/obj/machinery/vending/deluxe_cigs/open, +/obj/effect/floor_decal/spline/plain, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled/techmaint/airless, +/area/awaymission/lucky7/barbackroom) +"AS" = ( +/obj/structure/bed/chair/sofa/bench, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"AU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"AW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"AX" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"AY" = ( +/obj/structure/flora/pottedplant/tall, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hotelhall) +"Ba" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"Be" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Bf" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/lounge) +"Bi" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Bm" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/maint2) +"Bq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"Bs" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"BA" = ( +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"BE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"BH" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"BK" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"BM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"BQ" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"BT" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"BV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/chair/sofa/left/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"BW" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"Cb" = ( +/obj/structure/table/standard, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"Cf" = ( +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/five) +"Ch" = ( +/obj/machinery/door/airlock/glass_security{ + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Ci" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"Ck" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Cl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/bar) +"Cm" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"Cn" = ( +/obj/machinery/door/airlock{ + id_tag = "br bathroom"; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/breakroom) +"Co" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/breakroom) +"Cp" = ( +/obj/machinery/door/airlock/freezer{ + name = "Freezer" + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/awaymission/lucky7/kitchen) +"Cu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"CC" = ( +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"CD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"CE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"CG" = ( +/obj/structure/table/gamblingtable, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"CI" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"CM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"CN" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"CO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"CQ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"CR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"CU" = ( +/obj/structure/table/steel, +/obj/random/tool, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"CW" = ( +/obj/structure/table/steel, +/obj/item/stack/cable_coil, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"CZ" = ( +/obj/structure/frame, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Db" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"Dg" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"Dh" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/security) +"Di" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/workshop) +"Dk" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/four) +"Dm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"Dn" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"Dp" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"Dv" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/bar) +"Dw" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"Dx" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"DD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"DF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"DG" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"DH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"DI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"DL" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privateroom/five) +"DO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"DP" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/medical) +"DQ" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"DR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"DS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"DT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"DY" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"DZ" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "l7_dock_d1a1"; + landmark_tag = "l7_dockarm_d1a1"; + name = "Dock D1A1" + }, +/turf/space, +/area/space) +"Ee" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "dock_d1a3_pump" + }, +/obj/machinery/light/small, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d1a3_sensor"; + pixel_y = -25 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "l7_dock_d1a2"; + pixel_y = 28 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"Ei" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 VIP Room"; + name = "VIP Room" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"Es" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"Et" = ( +/obj/machinery/door/airlock/engineering{ + name = "Workshop"; + req_one_access = null + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Ew" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"Ez" = ( +/obj/structure/table/steel, +/obj/item/stack/material/diamond{ + amount = 50; + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/stack/material/diamond{ + amount = 50 + }, +/obj/item/stack/material/diamond{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/security) +"EB" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"EC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"EF" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"EI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/gateway) +"EM" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"EN" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"EO" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"ES" = ( +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"ET" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"EW" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/railing, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Fa" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/item/device/flashlight/color, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Fd" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/four) +"Fj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"Fl" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"Fm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"Fp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"Fr" = ( +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"Ft" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/medical) +"Fu" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/bar) +"Fv" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Fw" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"FF" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"FG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hotelhall) +"FJ" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"FK" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"FL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"FN" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"FQ" = ( +/obj/effect/landmark/hidden_level, +/turf/space, +/area/space) +"FT" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"FU" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"FV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"FW" = ( +/obj/random/trash, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"FY" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/effect/floor_decal/rust, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"FZ" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Ge" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/two) +"Gf" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"Gg" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"Gh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"Gi" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Gj" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/hotelhall) +"Gk" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/awaymission/lucky7/privateroom/vip) +"Gm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/button/remote/airlock{ + id = "L7 VIP Room"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 33; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"Gn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Gp" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/vip) +"Gr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Gs" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Gz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"GA" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/gateway) +"GE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"GJ" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privategameroom/two) +"GO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"GP" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"GQ" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/bodybags, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/medical) +"GR" = ( +/obj/structure/table/standard, +/obj/machinery/button/remote/airlock{ + id = "br bathroom"; + name = "Bathroom Lock"; + pixel_x = -20; + pixel_y = 10; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/breakroom) +"GS" = ( +/obj/effect/floor_decal/rust, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"GT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"GV" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"GX" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"Ha" = ( +/obj/machinery/vending/wallmed1/public{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/breakroom) +"Hb" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"Hf" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"Hg" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/bed/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"Hl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Hm" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Hn" = ( +/obj/structure/table/marble, +/obj/machinery/light/floortube{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"Ht" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d1a1"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26; + req_one_access = list(13) + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"Hx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Hz" = ( +/obj/random/trash, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"HA" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"HB" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"HF" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/structure/grille, +/turf/space, +/area/space) +"HH" = ( +/obj/effect/floor_decal/rust, +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"HJ" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"HM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"HQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/airlock{ + id = "L7 Room 1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 33; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"HS" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"HW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"HZ" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/spacecash/c1000{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/weapon/spacecash/c1000{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/spacecash/c1000, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/security) +"Ig" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"Ij" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"Ik" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Im" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/breakroom) +"In" = ( +/obj/structure/table/glass, +/obj/random/medical, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Iq" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Ir" = ( +/obj/structure/table/glass, +/obj/random/soap, +/obj/item/weapon/towel/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/vip) +"Is" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"It" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"Iu" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"Iv" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"Iw" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"IC" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/five) +"IF" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"IJ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"IM" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"IN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"IR" = ( +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/two) +"IS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Jc" = ( +/obj/structure/table/steel, +/obj/random/cash/huge{ + pixel_y = 8 + }, +/obj/random/cash/huge, +/obj/item/weapon/bikehorn{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/security) +"Jd" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/five) +"Jg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Jj" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"Jp" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Jq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Jw" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + id = "casino_check" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Jy" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"Jz" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"JB" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/barbackroom) +"JC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"JE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"JK" = ( +/obj/machinery/light/small, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "l7_dock_d1a1"; + pixel_y = 28 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d1a1_sensor"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "dock_d1a1_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"JL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"JN" = ( +/obj/structure/casino_table/roulette_table, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"JP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"JR" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"JU" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"JW" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"Ka" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/bed/chair/sofa/bench/left, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"Kf" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/kitchen) +"Ki" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Kj" = ( +/obj/structure/flora/pottedplant/tall, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/hall2) +"Kk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"Kl" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/medical) +"Km" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -27 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Kn" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Ks" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"Kt" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"Ku" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/security) +"Kw" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/stack/material/phoron{ + amount = 2 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Kx" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"KA" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"KC" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"KE" = ( +/obj/structure/casino_table/blackjack_l, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"KG" = ( +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"KH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"KI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"KK" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privateroom/three) +"KL" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"KM" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 4"; + name = "Private Room 4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"KN" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/lucky7/security) +"KR" = ( +/obj/random/trash_pile, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"KS" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"KT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"KU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/floor_decal/sign/dock/two, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"KY" = ( +/obj/structure/table/rack/steel, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"KZ" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"Le" = ( +/obj/random/trash_pile, +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Lg" = ( +/obj/random/trash, +/obj/random/trash, +/obj/machinery/light/small, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"Lh" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"Li" = ( +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Lj" = ( +/obj/machinery/door/airlock{ + name = "Breakroom" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"Lk" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d1l"; + name = "exterior access button"; + pixel_x = 28; + pixel_y = -6; + req_access = list(13) + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"Ll" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Lo" = ( +/obj/structure/table/woodentable, +/obj/item/trash/bowl, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Lq" = ( +/obj/item/modular_computer/console{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Lr" = ( +/obj/structure/closet/crate, +/obj/random/tool, +/obj/random/tool, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Ls" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant/unusual, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Lw" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/privateroom/vip) +"Lx" = ( +/obj/structure/salvageable/slotmachine2, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Ly" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/purcarpet, +/area/awaymission/lucky7/privateroom/vip) +"LA" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"LB" = ( +/obj/structure/salvageable/slotmachine1, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"LC" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"LE" = ( +/obj/machinery/slot_machine, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"LF" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"LI" = ( +/obj/item/modular_computer/console{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"LJ" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"LL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/obj/machinery/alarm{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"LN" = ( +/obj/structure/table/marble, +/obj/random/drinkbottle, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"LO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/bed/chair/office, +/obj/machinery/alarm{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"LU" = ( +/obj/structure/table/woodentable, +/obj/item/trash/plate, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"LV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"LY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"Ma" = ( +/obj/structure/table/steel, +/obj/random/tool, +/obj/random/tool, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Mb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"Mc" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -7; + pixel_y = -3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"Md" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 8; + pixel_x = -27; + start_charge = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"Me" = ( +/obj/structure/closet/walllocker_double{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/book/manual/wizzoffguide, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"Mf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"Mg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Mh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"Mk" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d1a3"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26; + req_one_access = list(13) + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"Mm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Mn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hotelhall) +"Mo" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"Mq" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/cola/soft{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/awaymission/lucky7/lounge) +"Ms" = ( +/obj/machinery/vending/assist{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Mt" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"Mw" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/gateway) +"My" = ( +/obj/machinery/gateway/centeraway, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"MA" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/bar) +"ME" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"MG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"MJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"MQ" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"MV" = ( +/obj/effect/floor_decal/rust, +/obj/random/junk, +/obj/structure/table/rack/steel, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"MX" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/device/multitool{ + pixel_x = -6 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"MY" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/steel, +/obj/item/stack/material/phoron{ + amount = 19 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"MZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"Na" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"Nb" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/security) +"Nc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Nd" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Ng" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"Ni" = ( +/obj/random/trash_pile, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Nl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/breakroom) +"Nm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"No" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Private Room"; + req_access = null + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"Nq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Nr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Ny" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Nz" = ( +/obj/structure/coatrack, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"NC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/lounge) +"ND" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/airlock{ + id = "L7 Room 5"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 33; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"NF" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"NG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"NI" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"NJ" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"NL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock2) +"NN" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"NQ" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"NR" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "L7 Cell 2"; + name = "Cell 2 Door"; + pixel_x = 28; + req_access = null + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"NS" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"NT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "brig_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/security) +"NV" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"NY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/medical) +"Oa" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"Of" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Og" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"Oj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Ok" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Ol" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Om" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Oo" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"Oq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"Or" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "dock_d1a1"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26; + req_one_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"Ot" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/security) +"Ou" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/vip) +"Ow" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Ox" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"OA" = ( +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"OB" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/security) +"OC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"OE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"OI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"OJ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"OM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"ON" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"OO" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/security) +"OP" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/laundry) +"OS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"OT" = ( +/obj/machinery/slot_machine, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"OW" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Pa" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"Pc" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/junk, +/obj/effect/floor_decal/rust, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Pj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Pk" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Pm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "dock_d1l_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"Pn" = ( +/obj/structure/table/rack/steel, +/obj/random/maintenance, +/obj/random/junk, +/obj/random/junk, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Pq" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 8; + pixel_x = -27; + start_charge = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Ps" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Pu" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"Pw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"Py" = ( +/obj/structure/closet/walllocker_double{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/book/manual/wizzoffguide, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"PC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/airlock{ + id = "L7 Room 3"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 33; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"PE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"PF" = ( +/obj/machinery/alarm{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"PG" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"PI" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"PJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"PN" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/two) +"PP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"PQ" = ( +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"PT" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"PV" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/sink/kitchen{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"PX" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"Qa" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"Qd" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"Qg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Clinic"; + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Qi" = ( +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"Qm" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Qo" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Qp" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/vending/bepis, +/turf/simulated/floor/tiled/monotile, +/area/awaymission/lucky7/hotelhall) +"Qq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"Qr" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "Safe"; + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/security) +"Qs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Qt" = ( +/obj/structure/table/gamblingtable, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"Qv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Qz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 8; + pixel_x = -27; + start_charge = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"QC" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"QD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom) +"QG" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"QK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"QM" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + pixel_y = 27; + start_charge = 0 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"QR" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"QU" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"QV" = ( +/obj/machinery/casino_prize_dispenser, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/casinofloor) +"Rb" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Rc" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/obj/random/cash/big{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/random/cash/big, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/casinofloor) +"Rf" = ( +/obj/machinery/casino_prize_dispenser, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/casinofloor) +"Rk" = ( +/obj/machinery/chipmachine{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Rm" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"Ro" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"Ru" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"Rw" = ( +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"Rx" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"RF" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"RH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"RL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"RM" = ( +/turf/simulated/floor/carpet/purple, +/area/awaymission/lucky7/privategameroom) +"RN" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"RQ" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/rack/steel, +/obj/random/tool, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"RT" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"RV" = ( +/obj/machinery/alarm{ + pixel_y = 27 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"RW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/barbackroom) +"RX" = ( +/obj/structure/table/woodentable, +/obj/item/trash/bowl, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"RY" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/vip) +"RZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"Sd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"Sj" = ( +/obj/item/weapon/stool/padded, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Sk" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"Sl" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 4"; + name = "Private Room 4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"Sm" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "l7_dock_d1a2"; + landmark_tag = "l7_dockarm_d1a2"; + name = "Dock D1A2" + }, +/turf/space, +/area/space) +"Sn" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"Sr" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/breakroom) +"Ss" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/five) +"Sv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"Sw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hotelhall) +"SE" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"SF" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/grey/bordercorner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"SG" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/two) +"SI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/laundry) +"SK" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"SM" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"SO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hotelhall) +"SP" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"SR" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"SS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "dock_d1a3_pump" + }, +/obj/machinery/light/small, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d1a3_sensor"; + pixel_y = -25 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "l7_dock_d2a2"; + pixel_y = 28 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"SX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"SY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"SZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Ta" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/stack/material/phoron{ + amount = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Td" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"Te" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"Tf" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"Th" = ( +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + id = "L7 Cell 2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/security) +"Tj" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"Tk" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"Tl" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/vip) +"Tn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "casino_check"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Ts" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/bar) +"Tt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Tu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"Tv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/vip) +"Tx" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/effect/decal/cleanable/egg_smudge, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Ty" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"TB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"TD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"TF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"TH" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"TI" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 2"; + name = "Private Room 2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"TK" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"TM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"TP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"TQ" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"TR" = ( +/obj/structure/window/basic, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"TT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"TU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"TV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/dock1) +"TW" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"TX" = ( +/obj/random/trash_pile, +/obj/random/maintenance, +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"TY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"TZ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 8; + pixel_x = -27; + start_charge = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"Ub" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Ud" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Uf" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Ug" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Um" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d1l"; + name = "exterior access button"; + pixel_x = 28; + pixel_y = -6; + req_access = list(13) + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"Ut" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Uu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"Uv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/gateway) +"Ux" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"UD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"UE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/maint1) +"UG" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/three) +"UM" = ( +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"US" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "dock_d1l_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"UW" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/trash) +"UY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"Va" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Vd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/airlock{ + id = "L7 Room 2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = 33; + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/two) +"Vi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/vending/security{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Vk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Vm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"Vp" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"Vs" = ( +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/security) +"Vt" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"Vu" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Vv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"Vw" = ( +/obj/machinery/slot_machine, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hall2) +"Vx" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d1a3"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26; + req_one_access = list(13) + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"Vz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"VC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"VD" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"VO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"VS" = ( +/turf/simulated/floor/plating, +/area/awaymission/lucky7/trash) +"VT" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/lounge) +"VU" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/three) +"VV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/carpet/turcarpet, +/area/awaymission/lucky7/casinofloor) +"VW" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Wc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"Wd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"Wh" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Wi" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/awaymission/lucky7/lounge) +"Wj" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/item/clothing/suit/armor/bulletproof/alt{ + pixel_x = -6 + }, +/obj/item/clothing/suit/armor/bulletproof/alt{ + pixel_x = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Wm" = ( +/obj/structure/table/gamblingtable, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/carpet/green, +/area/awaymission/lucky7/privategameroom/two) +"Wp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Wr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Ws" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"Wu" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Wy" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/yellowdouble, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"Wz" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock2) +"WA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"WB" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"WC" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/random/donkpocketbox{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"WE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"WG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool, +/area/awaymission/lucky7/privateroom/vip) +"WI" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint1) +"WJ" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/awaymission/lucky7/dock1) +"WK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom) +"WM" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"WP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"WQ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"WR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"WU" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"WV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/lucky7/maint2) +"WX" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"WZ" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom) +"Xa" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/five) +"Xf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Xg" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"Xn" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Xo" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/awaymission/lucky7/gateway) +"Xr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Xs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) +"Xw" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/marble, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/kitchen) +"Xz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"XA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"XH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"XK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"XO" = ( +/obj/machinery/door/window/eastleft{ + req_access = null + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"XP" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"XS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"XT" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"XU" = ( +/obj/structure/table/woodentable, +/obj/item/pizzabox/margherita, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"XZ" = ( +/obj/effect/decal/cleanable/filth, +/turf/simulated/floor/lino, +/area/awaymission/lucky7/bar) +"Yb" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Yc" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"Ye" = ( +/obj/effect/overmap/visitable/sector/common_gateway/lucky7, +/turf/space, +/area/space) +"Yj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Yk" = ( +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"Yn" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/workshop) +"Yp" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"Yw" = ( +/obj/machinery/alarm{ + pixel_y = 27 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/hotelhall) +"Yy" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/entry) +"YA" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"YC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"YD" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"YE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/machinery/alarm{ + pixel_y = 27 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"YG" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/bar) +"YO" = ( +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom) +"YQ" = ( +/obj/structure/casino_table/blackjack_m, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/floortube{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/awaymission/lucky7/casinofloor) +"YT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"YX" = ( +/turf/simulated/wall, +/area/awaymission/lucky7/hall1) +"YY" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"YZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock2) +"Za" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/four) +"Ze" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/ammo_casing/spent, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Zf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"Zh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access = null + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"Zi" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/security) +"Zj" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"Zu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"Zx" = ( +/obj/structure/bed/chair/sofa/right/purp, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/vip) +"ZB" = ( +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"ZC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + pixel_x = 27; + start_charge = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/medical) +"ZD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/lucky7/privateroom/five) +"ZE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"ZF" = ( +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/soap/nanotrasen, +/obj/structure/closet, +/obj/effect/floor_decal/rust, +/obj/item/weapon/storage/bag/trash, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/maint1) +"ZJ" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"ZK" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/carpet, +/area/awaymission/lucky7/hall1) +"ZL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/hall1) +"ZO" = ( +/obj/structure/table/steel, +/obj/item/weapon/spacecasinocash/c1000{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/awaymission/lucky7/security) +"ZP" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 8; + pixel_x = -27; + start_charge = 0 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/carpet/blue2, +/area/awaymission/lucky7/privategameroom/three) +"ZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/entry) +"ZT" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/privateroom/two) +"ZV" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/awaymission/lucky7/privateroom/four) +"ZW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/lucky7/dock1) (1,1,1) = {" -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmcpcpcpcpcprmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmcpcpagavagcpcprmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmcpagayagayagcprmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVpVaAaBaBaBaGpVpVrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVaJaQbobubububupVrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVbKbKbNcqbubKbKpVrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVcDcDbNpVbucDcDpVrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVcFcFbNcJbucFcLpVrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVbububNbububucMyYyYpbpbpbyYpbpbpbyYyYrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVpVcTbNbubucYpVyYdodzdEdzabdEdzdEdPyYrmrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmpVpVpVdSececpVpVyYameFeFeFeHeFeFeFeHpbrmrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgGKjypflfvfvfvfyyYadeHeHeHeHeHeHeHeHpbrmrmrmrmvOidididvOididididrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmidrmrmrmrmrmrmidrmrmrmrmrmrmrmvOidididvOvOididididvOidvOrmrmrmrmrmrmrmgGfSypgBgNgNgNgNgVgZeHeHeHeHhmhoaeeHpbrmrmrmrmrmvOrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOidididvOvOididididvOvOididididvOidvOvOididvOrmrmrmrmrmrmrmrmidrmrmvOrmrmrmvOrmrmrmrmrmrmrmrmrmrmgGKjyphuypypypypyYeHhwafhweHhmiraeeHyYrmrmrmrmrmvOrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmvOrmrmrmrmrmrmvOrmrmrmrmrmrmidrmrmrmrmrmrmrmrmrmvOrmrmvOrmrmrmvOrmrmrmrmrmrmrmrmrmrmgGgGgGTuypypgGgGgGgGgGgGgGgGgGgGgGgGgGgGgegegegGgGgGrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmMwMwMwMwMwMwMwMwMwMwYXYXYXYXYXrmvOrmrmrmrmrmrmrmrmrmidrmUWUWUWUWUWUWUWUWrmrmrmrmrmrmrmrmgGdwitiBypypypypypypypTkypypypypypTkypypypypypypjbgGvOvOvOidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmMwmDoqaatVucueASKaMwZuZLuLlBYXrmvOrmrmrmrmrmrmrmrmrmvOrmUWjejljKjVVSkeUWrmrmrmrmrmrmrmrmgekxkxmOgNgNgNgNgNgNgNopgNgNgNgNgNopgNgNgNgNgNqHkFgGrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmMwcKcbbfTQiETMuEUvEIzpYkYkobYXrmidrmrmrmrmrmrmrmrmrmidrmUWkJkNlhlilpVSUWrmrmrmrmrmrmrmrmgelwlwTuypypypypypypypMZypypypypypMZypypypypypMZjbgGrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOvOidididvOidMweSVpMyrbGATMuEbchMYTFFYkCDYXvOidvOidididvOididvOididrmUWrxmNkeHzmTFWUWrmrmrmrmrmrmrmrmgemXmXTuypypnhnhbpbpbpnEbpbpGJGJGJnMGJGJfHfHfHohfHfHfHrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmMwDpOgmHXoiETMuEvfEIHWWEYkobYXrmrmrmrmrmvOrmrmrmrmvOvOvOUWVSmNkJLgskiGUWrmrmrmrmrmrmrmrmgGypypTuypypLEVwbppsRMpyRMRMGJMefNpBfNfNfHPyFrqdFrFrfHvOididrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmMwrfEMiZEMsUpAHgrKMwWRWEYkobYXrmrmrmrmrmvOrmrmrmrmvOrmrmUWVSmNqkUWoFmIUWrmrmrmrmrmrmrmrmgGypypTuypypvyvybpRMrepNreRMGJfNDnlZDnfNfHFrItLAItFrfHrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmDiDiDiDiDiDiDiDiDiDinAWEYkJLsTsTsTsTsTsTsTsTsTsTsTsTsTsTsTUWrAUWUWUWUWUWqFNlNlNlqFqFqFqFqFkxkxTuypypnhnhbpMdCGAGscsqGJTZnvWmxtwTfHZPQttYlLYYfHrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmDisHsSsZsZtdtvtHtMDiWRWEYkupsTeruyuzuIrprMsThhhhjPFNuOuvhhhhvavksTvNvTsTvUwbwewkwtqFImbXqFwGlwTuypypLEVwbpwLscQascxdGJNVxtqMxtrBfHLhlLtZlLwlfHrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOvOvOvODixqyoyHCCCCCCzazgSXzpWEYkobsTGSzqzEaWzRzYAxQKQKQKQKQKAFAFQKAXAFAxQKBeBmBEBHBTBVCiCnruCoqFmXmXTuypypvyvybprUscscscsqGJqYxtxtxtwTfHpPlLlLlLYYfHrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmididvOididrmvOrmDiCMCUCWCZCCCCDHYnEtXSEBYkCDsTcmECESEWFKFTsTFUFYhhFZhhFNjPGiGiGisThhWVsTSrGzKLSraYqFGRHaqFypypTuypypypypbpRMHbHfHbRMGJfNNIoHNIfNfHFrHAHBHAFrfHvOidHFrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmvOrmDixqCCCCCCCCHJCCHMSXHWJzXSJPJUKiKnbDKwKxKIkDkDkDKNKNKNKNKNKShhKYsThhGrsTqFLjqFqFqFqFqFqFqFmKmKOwmVmVmKmKbpbpbpbpbpbpGJGJGJGJGJGJfHfHfHfHfHfHfHrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmvOrmrmrmrmvOrmDiaXLrLxLBLFMaMmMsDiMEMGYkMJsTMVMXMYNdNyNFkDQCNRNTOtOBOOKNPcOWPnsTjPLiKfPqPsPTPVQmQoGsQGKfmVQMOwmVmVkVmVQRmVQVRcRfmVRkmVkVRTRVmVmVmVmVkVmVmVmKrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmKlKlNYNYNYKlKlKlKlKlKlKlKlKlKlKlYXYXsoSEWBsoYXYXYXYXSRTaTfkDyOyOThDhDhDhKNKNKNKNKNhhLiKfTyUbUdUfUgUgUgUgVamVVkahmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVVVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmKlWhWpWpWpWrKlWQXfXHXOWpYbYAYCKlYEalXzMGYkZfZBZJZKYXsTaRsTkDyOZiKNKNKNKNKNZOKuHZKNFaLiKfeYUgKmnCUgUgUgTxKfmwkQsiHmHmfcmVmVmVmVmVmVmVmVmVmVaVJNmVmVuFanmVmVfUrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmKlHxJpeaInDYWpIkWUWUUtWUWUWUXKfMzpYkYkMGYkobGXXgSnYXKRyXzVkDyOpHNTNbOBOOKNEzVsHZKNuAGrKfKfCpKfKfUgbyPkUgXwmVkQsijxbCfcPJmKWXmVrThDPJmKWXmVmVmVmVmVmVmVmVmVaqrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidvOvOKlzvWUWUWUWUWUWUWUNGenWUWUWUYcQgXSzQXSSPYkRHGXGXRoYXKRsMRQkDyOyOuJDhDhDhKNJcVsHZKNhhGrKfczlSlSKfUgSMWCUgXwmVkQVWmVmVmVmVmVmVngbPhDmVmVmVmVmVmVmVmVmVmVmVmVmVmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmKlLlRbsgpkPGgUNJWUWUVuWUWUWUmqfMHWJCYkWEYkobGXRXSnYXxLyXxbkDyOZiKNKNKNKNKNKNQrKNKNuvGrKfmulSnNKfkOIMapUgyRmVkQsiHmqAfcmVmVmVmVqShDmVmVmVmVaVJNmVmVxHuYmVmVPJmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmKlnDAWLCgUasKlkvQUxrGPgUygXrZCKldnarqUWEYkMJdCTjwYYXBiIwFNkDyOyOUxPFOfyOLsSZQvtQkDNiGrKftelSejKfTxUgUgUgKfWXkQsiHmNSfcmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVmVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmKlKlFtKlKlKlKlKlKlKlKlKlKlKlKlYyYyYykmFwuakmkmkmYyYysTemsTYyiVyOyOyOChyOPIyOyOOkkDsTEOKfKfKfKfKfVaKfXwKfKfNzkQVWmVmVmVPJmKWXmVmVmVPJmKWXmVmVmVmVmVmVmVmVmVmVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmKlGQfZDPDPDPKlkswowomowowoBKwokmxmOjybykazPEOjOjcNddOjBMQsYykDChkDkDkDCkPIQCyOVikDTXLiJBtmAQnnJBCQVvrZDbkLvukQsiNSHmfcmVmVmVmVmVmVmVmVmVmVaVJNmVmVxHaumVmVmVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOidvOidvOvOKlfZjvfZfZfZKloPwoTeTeTewooDlIvoISISISTKTtTtTtTtTtTtTtWuIsYyiMyOawLLkDQzpMoTaxLqkDLeaoQiPPibogKGOMOAhSOALNtokQsiHmLofcmVmVmVMgaUaCdWdWdWdWdWdWdWdWdWdWdWdWnjmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmKlKlKlKlKlKlKlwowoDGMbxvwowowokmhFZEZEZjZEZEZEZEZjZEUDxzeGYynqyOyOJwkDTYmppXyOeLkDjPhhJBRWogBAJBwwOAdaOAtEJEkQVWmVmVmVmVmVmVFvaEhDmVmVmVmVmVmVmVmVmVmVmVmVPJmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmBfVTVTiywowoBfQdwovZvZvZwowoHSluluFJlulululululululuCECIVzYyLIaFyOZekDFLmpxUIqWjkDFZhhJBkPrNEFJBhNXZOAOAhSJEkQsiHmLUfcPJmKWXVWqShDPJmKWXmVmVngvRmVmVmVrThDmVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmBfbabaVTwowoNowowowowowowowoPXlufbxZBWfbAJpOluqwArluETxzPjYykDgiTnkDkDkDpekDkDkDkDsTmdJBJBJBJBJBNawdHnLNhSJEkQsizMHmfcmVQRmVVWmVmVmVRkmVmVmVngnahDmVngaEhDmVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmBfqLbaVTwowoNowowoTeTeTewowoDxluAJepmWepepxZFJxZxKluETxzaznlTBVCVCJgOjybxzPEOjYjrwzxzxDQMAsXTsYGDmRxRxRxRxhnkQVWmVmVmVmVmVmVVWmVmVmVmVmVmVmVngaImVmVmVqShDmVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOidvOvOBfbabaVTwowoNowowossMbDGwowoMcluWIeplumtcRIvluepepluONaKTtXnTtTtTtTtTtTtHlTtTtTtDvuZuZNguZuZuZuZuZuZuZuZuZBshidGTRTRTRTRWcWcSjmVmVbjbjbjbjbjmVmVmVYDmVmVmVatmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmBfVTVTnRwowoBfQdwovZvZvZwowoHSlulupLlululululutsjcjpduaLaznlbLZEZjZEZEZEZEZjZEUDrwzxzxzxzxzxzxzxzxzxzxzxzxPamVOTOTOTOTOTmVKEYQaMmVOTOTOTOTOTmVmVKEvxaMmVmVjJmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmBfBfBfBfBfBfBfwowowowowowowowolusmoVlubxhcHHlubERmluipSYaNYyYyYyYyYyYyYyYyYyYyYyFuzxGfGfGfzxGfGfGfzxGfGfGfPamVxMxMxMxMxMmVlnOllnmVxMxMxMxMxMmVmVlnlnlnmVmVVVrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmvOvOvOvOBfWiOxwoPQMteowowokpMQludFoEZhFVRNBalumhgSlugxSYeGYyvOvOvOrmrmrmrmrmvOvOFutDXUuHfizxfiSKXTzxfiuHqGPamVbjbjbjbjbjmVmVJqmVmVbjbjbjbjbjmVmVbjbjbjmVmVrnrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOidididvOidvOYyYyYyBfMqOxwoDGMbyABQwonpwoludrUEluZFaPmJlukaCRluETSYeGYyvOrmvOrmrmrmrmvOvOrmFuilYpYpYpzxYpYpYpzxYpYpYpPamVOTOTOTOTOTmVmVJqmVmVOTOTOTOTOTmVmVOTOTOTmVmVaqrjrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmYyYydgfXBfBfBfBfqNqNqNBfyzNCBfluluyZlulululululululuCExJVzYyididvOidididvOidvOidFulmzxzxzxApzxzxzxApzxzxzxWsxCxMxMxMxMxMxCmVJqmVxCxMxMxMxMxMxCmVxMxMxMxCmVmVmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmYygrivivGniAOjOmmRmRmRAPazsVufaSiAcIOmLOgamROmOjGnOjYjSYeGYyrmrmvOrmrmrmvOrmrmrmFuFuClClClFuClClClFuClClClFuOPOPOPOPOPOPGjeUTDeUGjmKmKmKmKmKmKmKmKmKmKmKmKmKmKrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOidididvOYyONiJjdNrjrNcNcNcNcNrNrNrKHNrGVsvNqZRZRZRZRZRZRZRZRZRDDIsYyrmrmidrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOPRZqWBqAUywGjeUTDeUGjrmrmvOrmrmrmrmrmrmrmrmvOrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmYyjBkbkcZEfuZEZEZEZjZEZEZEZEZEZEfuZEZEkzZEZEZEZEZEZEZEGTTFYyvOidvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmSkSINNosmvFmGjeUTDeUSwrmrmvOrmrmrmrmrmrmrmrmidrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmgLlqmLmSgLgLVOVOVOgLYykmkmkmYyYykmkmkmYyYykmkmkmYyxnWMTHWMxnrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmSkSIsBosCbMhGjeUTDeUSwrmididididididvOvOidididvOidvOvOidvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgLnsWAnSgLrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmxnajDOjHxnrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmSkSINNosolINGjeUTDeUSwrmrmrmrmrmrmvOrmvOrmrmidrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmOPcOaOosSFrgGjeUTDeUGjrmrmrmrmrmrmvOGjGjGjGjvOrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmGjGjGjGjGjGjMnFGSOGjGjeUTDeUGjGjGjGjGjGjGjGjGjQpqgGjGjGjGjrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmcHvOvOGjAYeUeUeUeUNmCNTUeUvbeUTDeUvbeUeUeUvdYweUakaTNmNmvbeUfOGjrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgLspWAttgLrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmxneVGhfAxnrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmGjoYGOIgIgIgCORuDSIgCOIgJRIgTWIgIgIgTWIgIgSdFleUeUeUeUdfGjvOvOidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmGjAYTDeUVteUTDeUeUeUTDeUVteUTDeUeUeUTDeUVteUTDeUeUeUeUfOGjrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOididcHvOvOhOhOfDhOuuuuTIuuKKKKeWKKuRuRKMuRDLDLSlDLLwLwEiLwLwLwLwLwLwrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmhOjMHQKtuuDwVdyvKKoSPCIJuRaiwqwKDLzHNDIuLwoAGmqsuBoAIjoALwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgLuxwjwvgLrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmxnYZOqqzxnrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmhOjChUfTuuCmoOJyKKENnzghuRccxFbnDLJWXaKCLwffOJZxorkdkdLyLwrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmhODgGgiauuOonYMoKKdytzjQuRKAZVPuDLmCIFRFLwOaOJpnlxkdkdqvLwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmhOtpcrWyuusQcnLJKKTdvgUGuRAbNQVDDLtGUMeyLwjAcGKZyykdkdGkLwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidvOvOhOcrcrWKuucncnTTKKvgvgzWuRNQNQXPDLUMUMkyLwoAoAoAoAoAJjvqLwvOvOidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgLspWAwJgLrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmxneVGhyDxnrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmhOuGhOhOuuGeuuuuKKpEKKKKuRFduRuRDLICDLDLLwRYLwLwLwLwLwLwLwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmzkububDFDRWAQqDTubgfAmrmrmrmrmrmrmrmrmrmrmrmrmrmrmkhiuiujoWPGheteiiubhbHrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmhOWZwuwCuuPNevAOKKtrjWeduRyiyfDkDLdZSsJdLwOuTlGpAKWGUuDILwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmDZrmHtJKKTVmOrtJvrEsbeEeMkrmSmrmrmrmrmrmrmrmrmrmrmrmrmprbtlFnKAyKUCuEwGESSVxrmcVrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmhOQDWZWZuuSGPNPNKKVUtrtruRZayiyiDLZDdZdZLwTvOuOuAKeCRwqBLwrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmPwRLRLDFTPWAOIDTRLaHTVrmrmrmrmrmrmrmrmrmrmrmrmrmrmjNMfMfjoOEGhXAeiMfNLgDrmrmrmrmrmrmrmrmrmrmrmrmrmididvOvOhOWZYOfQuuPNIRZTKKtrbBANuRyivtaDDLdZCfhyLwIrOuOuAKeCjSbwLwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgLUYWAWdgLrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmxnOSGhLVxnrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmhOhOhOhOuuuuuuuuKKKKKKKKuRuRuRuRDLDLDLDLLwTvOuOuAKeCjSqBLwvOvOvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmvOrmrmrmvOrmrmrmvOrmrmrmvOrmvOrmLwOuOuxNAKFpjqSvLwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOnXWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCzKGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmvOrmrmrmvOrmrmrmvOrmidvOLwLwLwLwLwLwLwLwLwrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmVOZWWAoGVOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmOCfxGhLYOCrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOididlEidididcHidvOvOcHidvOidcHididrmrmvOrmrmrmrmrmvOrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgLjIWAXsgLrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmxnAvGhdXxnrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmidrmrmrmrmrmrmrmrmrmvOididcHvOididvOidcHididvOvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmgLwcWJDFgLrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmxnWzmbjoxnrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmKknwacezrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmtcKsxhgHrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmidrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmKkPmzrezrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmtcUShIgHrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmvOrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmhqmELkmQrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmFjjtUmzDrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmqtrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmYeFQrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm -rmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrmrm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(2,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +Ye +rm +"} +(3,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +FQ +rm +"} +(4,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(5,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(6,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(7,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(8,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(9,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(10,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(11,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(12,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(13,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(14,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(15,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(16,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(17,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(18,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(19,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(20,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(21,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(22,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(23,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(24,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(25,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(26,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +DZ +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(27,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +id +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(28,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +id +id +id +id +id +id +vO +id +id +id +id +id +vO +id +id +vO +vO +id +id +id +id +id +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +zk +Ht +Pw +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(29,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +vO +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +ub +JK +RL +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(30,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +id +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +ub +KT +RL +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(31,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Bf +Bf +Bf +Bf +Bf +Bf +vO +vO +Yy +Yy +Yy +Yy +gL +gL +VO +VO +VO +gL +VO +VO +VO +gL +VO +VO +VO +gL +DF +Vm +DF +gL +VO +VO +VO +gL +gL +Kk +Kk +hq +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(32,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +id +vO +vO +Kl +Wh +Hx +zv +Ll +nD +Kl +GQ +fZ +Kl +VT +ba +qL +ba +VT +Bf +vO +Yy +Yy +gr +ON +jB +lq +ns +nX +nX +nX +sp +nX +nX +nX +ux +nX +nX +nX +sp +DR +Or +TP +UY +nX +nX +ZW +jI +wc +nw +Pm +mE +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(33,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +vO +rm +rm +NY +Wp +Jp +WU +Rb +AW +Ft +fZ +jv +Kl +VT +ba +ba +ba +VT +Bf +vO +Yy +dg +iv +iJ +kb +mL +WA +WA +WA +WA +WA +WA +WA +WA +wj +WA +WA +WA +WA +WA +tJ +WA +WA +WA +WA +WA +WA +WJ +ac +zr +Lk +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(34,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +id +rm +rm +NY +Wp +ea +WU +sg +LC +Kl +DP +fZ +Kl +iy +VT +VT +VT +nR +Bf +vO +Yy +fX +iv +jd +kc +mS +nS +oG +oG +oG +tt +oG +oG +oG +wv +oG +oG +oG +wJ +Qq +vr +OI +Wd +oG +oG +oG +Xs +DF +ez +ez +mQ +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(35,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +vO +id +vO +id +id +vO +id +id +id +vO +id +rm +rm +NY +Wp +In +WU +pk +gU +Kl +DP +fZ +Kl +wo +wo +wo +wo +wo +Bf +Bf +Bf +Bf +Gn +Nr +ZE +gL +gL +VO +VO +VO +gL +VO +VO +VO +gL +VO +VO +VO +gL +DT +Es +DT +gL +VO +VO +VO +gL +gL +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(36,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +id +rm +rm +rm +rm +vO +rm +rm +rm +Kl +Wr +DY +WU +PG +as +Kl +DP +fZ +Kl +wo +wo +wo +wo +wo +Bf +Wi +Mq +Bf +iA +jr +fu +gL +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +ub +be +RL +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(37,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +vO +vO +vO +Kl +Kl +Wp +WU +gU +Kl +Kl +Kl +Kl +Kl +Bf +No +No +No +Bf +Bf +Ox +Ox +Bf +Oj +Nc +ZE +VO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +gf +Ee +aH +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(38,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +id +rm +rm +rm +rm +vO +rm +rm +rm +Kl +WQ +Ik +WU +NJ +kv +Kl +ks +oP +wo +Qd +wo +wo +wo +Qd +wo +wo +wo +Bf +Om +Nc +ZE +VO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +Am +Mk +TV +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(39,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +Mw +Mw +Mw +Mw +Mw +Mw +Di +Di +Di +Di +Di +Di +Kl +Xf +WU +WU +WU +QU +Kl +wo +wo +wo +wo +wo +wo +wo +wo +wo +PQ +DG +qN +mR +Nc +ZE +VO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(40,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +Mw +mD +cK +eS +Dp +rf +Di +sH +xq +CM +xq +aX +Kl +XH +WU +NG +WU +xr +Kl +wo +Te +DG +vZ +wo +Te +ss +vZ +wo +Mt +Mb +qN +mR +Nc +Zj +gL +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +Sm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(41,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +id +vO +Mw +oq +cb +Vp +Og +EM +Di +sS +yo +CU +CC +Lr +Kl +XO +Ut +en +Vu +GP +Kl +mo +Te +Mb +vZ +wo +Te +Mb +vZ +wo +eo +yA +qN +mR +Nr +ZE +Yy +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(42,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +Mw +aa +bf +My +mH +iZ +Di +sZ +yH +CW +CC +Lx +Kl +Wp +WU +WU +WU +gU +Kl +wo +Te +xv +vZ +wo +Te +DG +vZ +wo +wo +BQ +Bf +AP +Nr +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(43,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +Mw +tV +TQ +rb +Xo +EM +Di +sZ +CC +CZ +CC +LB +Kl +Yb +WU +WU +WU +yg +Kl +wo +wo +wo +wo +wo +wo +wo +wo +wo +wo +wo +yz +az +Nr +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(44,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +Mw +uc +iE +GA +iE +sU +Di +td +CC +CC +CC +LF +Kl +YA +WU +WU +WU +Xr +Kl +BK +oD +wo +wo +wo +wo +wo +wo +wo +kp +np +NC +sV +KH +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(45,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +Mw +ue +TM +TM +TM +pA +Di +tv +CC +CC +HJ +Ma +Kl +YC +XK +Yc +mq +ZC +Kl +wo +lI +wo +HS +PX +Dx +Mc +HS +wo +MQ +wo +Bf +uf +Nr +ZE +Yy +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(46,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +Mw +AS +uE +uE +uE +Hg +Di +tH +za +DH +CC +Mm +Kl +Kl +fM +Qg +fM +Kl +Yy +km +vo +km +lu +lu +lu +lu +lu +lu +lu +lu +lu +aS +GV +ZE +Yy +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(47,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +Mw +Ka +Uv +bc +vf +rK +Di +tM +zg +Yn +HM +Ms +YX +YE +zp +XS +HW +dn +Yy +xm +IS +hF +lu +fb +AJ +WI +lu +sm +dF +dr +lu +iA +sv +fu +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(48,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +id +id +id +vO +Mw +Mw +EI +hM +EI +Mw +Di +Di +SX +Et +SX +Di +YX +al +Yk +zQ +JC +ar +Yy +Oj +IS +ZE +FJ +xZ +ep +ep +pL +oV +oE +UE +yZ +cI +Nq +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(49,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +YX +Zu +zp +YT +HW +WR +nA +WR +zp +XS +HW +ME +so +Xz +Yk +XS +Yk +qU +km +yb +IS +ZE +lu +BW +mW +lu +lu +lu +Zh +lu +lu +Om +ZR +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(50,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +YX +ZL +Yk +FF +WE +WE +WE +WE +WE +EB +Jz +MG +SE +MG +MG +SP +WE +WE +Fw +yk +TK +Zj +lu +fb +ep +mt +lu +bx +FV +ZF +lu +LO +ZR +kz +Yy +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(51,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +YX +uL +Yk +Yk +Yk +Yk +Yk +Yk +Yk +Yk +XS +Yk +WB +Yk +Yk +Yk +Yk +Yk +ua +az +Tt +ZE +lu +AJ +ep +cR +lu +hc +RN +aP +lu +ga +ZR +ZE +Yy +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(52,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +YX +lB +ob +CD +ob +ob +JL +up +ob +CD +JP +MJ +so +Zf +ob +RH +ob +MJ +km +PE +Tt +ZE +lu +pO +xZ +Iv +lu +HH +Ba +mJ +lu +mR +ZR +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(53,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +YX +YX +YX +YX +YX +YX +sT +sT +sT +sT +JU +sT +YX +ZB +GX +GX +GX +dC +km +Oj +Tt +ZE +lu +lu +FJ +lu +lu +lu +lu +lu +lu +Om +ZR +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +kh +pr +jN +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +qt +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(54,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +vO +rm +rm +sT +er +GS +cm +Ki +MV +YX +ZJ +Xg +GX +RX +Tj +km +Oj +Tt +ZE +lu +qw +xZ +ep +ts +bE +mh +ka +lu +Oj +ZR +ZE +km +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +iu +bt +Mf +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(55,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +id +id +id +vO +vO +id +id +rm +rm +sT +uy +zq +EC +Kn +MX +YX +ZK +Sn +Ro +Sn +wY +Yy +cN +Tt +Zj +lu +Ar +xK +ep +jc +Rm +gS +CR +lu +Gn +ZR +ZE +Yy +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +iu +lF +Mf +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(56,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +sT +uz +zE +ES +bD +MY +YX +YX +YX +YX +YX +YX +Yy +dd +Tt +ZE +lu +lu +lu +lu +jp +lu +lu +lu +lu +Oj +ZR +ZE +xn +xn +OC +OC +OC +xn +OC +OC +OC +xn +OC +OC +OC +xn +jo +nK +jo +xn +OC +OC +OC +xn +xn +tc +tc +Fj +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(57,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +sT +uI +aW +EW +Kw +Nd +SR +sT +KR +KR +xL +Bi +sT +Oj +Tt +UD +CE +ET +ET +ON +du +ip +gx +ET +CE +Yj +ZR +ZE +WM +aj +zK +zK +zK +eV +zK +zK +zK +YZ +zK +zK +zK +eV +WP +Ay +OE +OS +zK +zK +fx +Av +Wz +Ks +US +jt +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(58,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +sT +rp +zR +FK +Kx +Ny +Ta +aR +yX +sM +yX +Iw +em +BM +Wu +xz +CI +xz +xz +aK +aL +SY +SY +SY +xJ +SY +DD +GT +TH +DO +Gh +Gh +Gh +Gh +Gh +Gh +Gh +Oq +Gh +Gh +Gh +Gh +Gh +KU +Gh +Gh +Gh +Gh +Gh +Gh +mb +xh +hI +Um +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(59,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +vO +vO +sT +rM +zY +FT +KI +NF +Tf +sT +zV +RQ +xb +FN +sT +Qs +Is +eG +Vz +Pj +az +Tt +az +aN +eG +eG +Vz +eG +Is +TF +WM +jH +LY +LY +LY +fA +LY +LY +LY +qz +LY +LY +LY +yD +et +Cu +XA +LV +LY +LY +LY +dX +jo +gH +gH +zD +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(60,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +sT +sT +Ax +sT +kD +kD +kD +kD +kD +kD +kD +kD +Yy +Yy +Yy +Yy +Yy +Yy +nl +Xn +nl +Yy +Yy +Yy +Yy +Yy +Yy +Yy +xn +xn +OC +OC +OC +xn +OC +OC +OC +xn +OC +OC +OC +xn +ei +Ew +ei +xn +OC +OC +OC +xn +xn +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(61,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +sT +hh +QK +FU +kD +QC +yO +yO +yO +yO +yO +yO +iV +kD +iM +nq +LI +kD +TB +Tt +bL +Yy +vO +vO +id +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +iu +GE +Mf +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(62,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +sT +hh +QK +FY +kD +NR +yO +Zi +pH +yO +Zi +yO +yO +Ch +yO +yO +aF +gi +VC +Tt +ZE +Yy +vO +rm +id +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +bh +SS +NL +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(63,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +vO +rm +rm +sT +jP +QK +hh +KN +NT +Th +KN +NT +uJ +KN +Ux +yO +kD +aw +yO +yO +Tn +VC +Tt +Zj +Yy +vO +vO +vO +vO +id +vO +id +id +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +bH +Vx +gD +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(64,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +id +vO +vO +sT +FN +QK +FZ +KN +Ot +Dh +KN +Nb +Dh +KN +PF +yO +kD +LL +Jw +Ze +kD +Jg +Tt +ZE +Yy +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(65,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +id +id +id +vO +id +vO +id +id +vO +rm +sT +uO +QK +hh +KN +OB +Dh +KN +OB +Dh +KN +Of +Ch +kD +kD +kD +kD +kD +Oj +Tt +ZE +Yy +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cV +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(66,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +vO +rm +sT +uv +AF +FN +KN +OO +Dh +KN +OO +Dh +KN +yO +yO +Ck +Qz +TY +FL +kD +yb +Tt +ZE +Yy +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(67,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +UW +UW +UW +UW +UW +UW +sT +hh +AF +jP +KN +KN +KN +KN +KN +KN +KN +Ls +PI +PI +pM +mp +mp +pe +xz +Hl +ZE +Yy +rm +rm +vO +vO +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(68,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +vO +vO +UW +je +kJ +rx +VS +VS +UW +hh +QK +Gi +KS +Pc +KN +ZO +Ez +Jc +KN +SZ +yO +QC +oT +pX +xU +kD +PE +Tt +Zj +Yy +rm +vO +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(69,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +UW +jl +kN +mN +mN +mN +rA +va +AX +Gi +hh +OW +KN +Ku +Vs +Vs +Qr +Qv +yO +yO +ax +yO +Iq +kD +Oj +Tt +ZE +Yy +vO +vO +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(70,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +UW +jK +lh +ke +kJ +qk +UW +vk +AF +Gi +KY +Pn +KN +HZ +HZ +HZ +KN +tQ +Ok +Vi +Lq +eL +Wj +kD +Yj +Tt +UD +Yy +vO +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(71,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +UW +jV +li +Hz +Lg +UW +UW +sT +Ax +sT +sT +sT +KN +KN +KN +KN +KN +kD +kD +kD +kD +kD +kD +kD +rw +Dv +rw +Fu +Fu +Fu +Fu +Fu +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(72,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +vO +vO +UW +VS +lp +mT +sk +oF +UW +vN +QK +hh +hh +jP +hh +Fa +uA +hh +uv +Ni +sT +TX +Le +jP +FZ +sT +zx +uZ +zx +zx +tD +il +lm +Fu +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(73,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +UW +ke +VS +FW +iG +mI +UW +vT +Be +WV +Gr +Li +Li +Li +Gr +Gr +Gr +Gr +EO +Li +ao +hh +hh +md +zx +uZ +zx +Gf +XU +Yp +zx +Cl +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(74,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +UW +UW +UW +UW +UW +UW +UW +sT +Bm +sT +sT +Kf +Kf +Kf +Kf +Kf +Kf +Kf +Kf +JB +Qi +JB +JB +JB +DQ +Ng +zx +Gf +uH +Yp +zx +Cl +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(75,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +qF +vU +BE +Sr +qF +Pq +Ty +eY +Kf +cz +mu +te +Kf +tm +PP +RW +kP +JB +MA +uZ +zx +Gf +fi +Yp +zx +Cl +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(76,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +Nl +wb +BH +Gz +Lj +Ps +Ub +Ug +Cp +lS +lS +lS +Kf +AQ +ib +og +rN +JB +sX +uZ +zx +zx +zx +zx +Ap +Fu +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(77,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +Nl +we +BT +KL +qF +PT +Ud +Km +Kf +lS +nN +ej +Kf +nn +og +BA +EF +JB +Ts +uZ +zx +Gf +fi +Yp +zx +Cl +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(78,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +Nl +wk +BV +Sr +qF +PV +Uf +nC +Kf +Kf +Kf +Kf +Kf +JB +KG +JB +JB +JB +YG +uZ +zx +Gf +SK +Yp +zx +Cl +rm +rm +rm +vO +vO +id +cH +vO +vO +cH +id +vO +vO +id +id +id +vO +vO +id +id +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(79,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +qF +wt +Ci +aY +qF +Qm +Ug +Ug +Ug +Ug +kO +Tx +Va +CQ +OM +ww +hN +Na +Dm +uZ +zx +Gf +XT +Yp +zx +Cl +rm +rm +rm +rm +rm +rm +vO +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(80,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +qF +qF +Cn +qF +qF +Qo +Ug +Ug +by +SM +IM +Ug +Kf +Vv +OA +OA +XZ +wd +Rx +uZ +zx +zx +zx +zx +Ap +Fu +rm +rm +rm +rm +rm +rm +vO +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(81,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +qF +Im +ru +GR +qF +Gs +Ug +Ug +Pk +WC +ap +Ug +Xw +rZ +hS +da +OA +Hn +Rx +uZ +zx +Gf +fi +Yp +zx +Cl +rm +rm +rm +rm +rm +Gj +Gj +Gj +Gj +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(82,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +qF +bX +Co +Ha +qF +QG +Ug +Tx +Ug +Ug +Ug +Ug +Kf +Db +OA +OA +OA +LN +Rx +uZ +zx +Gf +uH +Yp +zx +Cl +rm +rm +rm +rm +rm +Gj +AY +oY +AY +hO +jM +jC +Dg +tp +cr +uG +WZ +QD +WZ +hO +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(83,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pV +pV +pV +pV +pV +pV +pV +pV +gG +gG +gG +gG +gG +ge +ge +ge +gG +gG +qF +qF +qF +qF +qF +Kf +Va +Kf +Xw +Xw +yR +Kf +Kf +kL +LN +tE +hS +hS +Rx +uZ +zx +Gf +qG +Yp +zx +Cl +rm +rm +rm +rm +rm +Gj +eU +GO +TD +fD +HQ +hU +Gg +cr +cr +hO +wu +WZ +YO +hO +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(84,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cp +cp +pV +aJ +bK +cD +cF +bu +pV +pV +Kj +fS +Kj +gG +dw +kx +lw +mX +yp +yp +kx +wG +mX +yp +mK +mV +mV +mw +mV +mV +mV +WX +Nz +vu +to +JE +JE +JE +hn +Bs +Pa +Pa +Pa +Pa +Ws +Fu +rm +rm +rm +rm +rm +Gj +eU +Ig +eU +hO +Kt +fT +ia +Wy +WK +hO +wC +WZ +fQ +hO +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(85,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cp +cp +ag +aA +aQ +bK +cD +cF +bu +cT +pV +yp +yp +yp +gG +it +kx +lw +mX +yp +yp +kx +lw +mX +yp +mK +QM +Vk +kQ +kQ +kQ +kQ +kQ +kQ +kQ +kQ +kQ +kQ +kQ +kQ +hi +mV +mV +mV +mV +xC +OP +OP +Sk +Sk +Sk +OP +Gj +eU +Ig +Vt +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +uu +vO +vO +lE +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(86,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cp +ag +ay +aB +bo +bN +bN +bN +bN +bN +dS +fl +gB +hu +Tu +iB +mO +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Ow +Ow +ah +si +si +VW +si +si +VW +si +si +VW +si +si +VW +dG +OT +xM +bj +OT +xM +OP +RZ +SI +SI +SI +cO +Gj +eU +Ig +eU +uu +Dw +Cm +Oo +sQ +cn +Ge +PN +SG +PN +uu +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(87,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cp +av +ag +aB +bu +cq +pV +cJ +bu +bu +ec +fv +gN +yp +yp +yp +gN +yp +yp +yp +yp +yp +yp +yp +yp +mV +mV +mV +Hm +jx +mV +Hm +Hm +mV +NS +Hm +mV +Hm +zM +mV +TR +OT +xM +bj +OT +xM +OP +qW +NN +sB +NN +aO +Mn +Nm +CO +TD +TI +Vd +oO +nY +cn +cn +uu +ev +PN +IR +uu +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(88,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cp +ag +ay +aB +bu +bu +bu +bu +bu +bu +ec +fv +gN +yp +yp +yp +gN +yp +yp +yp +yp +yp +yp +yp +yp +mV +mV +mV +Hm +bC +mV +qA +NS +mV +Hm +Lo +mV +LU +Hm +mV +TR +OT +xM +bj +OT +xM +OP +Bq +os +os +os +os +FG +CN +Ru +eU +uu +yv +Jy +Mo +LJ +TT +uu +AO +PN +ZT +uu +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(89,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cp +cp +ag +aG +bu +bK +cD +cF +bu +cY +pV +fv +gN +yp +gG +yp +gN +yp +nh +LE +vy +nh +LE +vy +yp +mK +kV +mV +fc +fc +mV +fc +fc +mV +fc +fc +mV +fc +fc +mV +TR +OT +xM +bj +OT +xM +OP +AU +mv +Cb +ol +SF +SO +TU +DS +eU +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +vO +vO +cH +id +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(90,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +cp +cp +pV +bu +bK +cD +cL +cM +pV +pV +fy +gN +yp +gG +yp +gN +yp +nh +Vw +vy +nh +Vw +vy +yp +mK +mV +mV +mV +PJ +mV +mV +mV +PJ +mV +mV +mV +PJ +mV +mV +TR +OT +xM +bj +OT +xM +OP +yw +Fm +Mh +IN +rg +Gj +eU +Ig +eU +KK +oS +EN +dy +Td +vg +pE +tr +VU +tr +KK +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(91,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pV +pV +pV +pV +pV +yY +yY +yY +yY +gV +yY +gG +yp +gN +yp +bp +bp +bp +bp +bp +bp +bp +bp +QR +mV +mV +mK +mV +mV +mV +mK +mV +mV +mV +mK +QR +mV +Wc +mV +mV +mV +mV +xC +Gj +Gj +Gj +Gj +Gj +Gj +Gj +vb +CO +TD +eW +PC +nz +tz +vg +vg +KK +jW +tr +bB +KK +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(92,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +yY +do +am +ad +gZ +eH +gG +yp +gN +yp +bp +ps +RM +Md +wL +rU +RM +bp +mV +mV +mV +WX +mV +mV +mV +WX +mV +mV +mV +WX +mV +mV +Wc +KE +ln +mV +mV +mV +eU +eU +eU +eU +eU +eU +eU +eU +Ig +eU +KK +IJ +gh +jQ +UG +zW +KK +ed +tr +AN +KK +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(93,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pb +dz +eF +eH +eH +hw +gG +yp +gN +yp +bp +RM +re +CG +sc +sc +Hb +bp +QV +mV +mV +mV +ng +mV +mV +mV +mV +Mg +Fv +VW +VW +VW +Sj +YQ +Ol +Jq +Jq +Jq +TD +TD +TD +TD +TD +TD +TD +TD +JR +Vt +uR +uR +uR +uR +uR +uR +uR +uR +uR +uR +uR +vO +vO +cH +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(94,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pb +dE +eF +eH +eH +af +gG +Tk +op +MZ +nE +py +pN +AG +Qa +sc +Hf +bp +Rc +mV +mV +rT +bP +qS +mV +mV +mV +aU +aE +qS +mV +mV +mV +aM +ln +mV +mV +mV +eU +eU +eU +eU +eU +eU +eU +eU +Ig +eU +uR +ai +cc +KA +Ab +NQ +Fd +yi +Za +yi +uR +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(95,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pb +dz +eF +eH +eH +hw +gG +yp +gN +yp +bp +RM +re +sc +sc +sc +Hb +bp +Rf +mV +mV +hD +hD +hD +mV +mV +mV +aC +hD +hD +mV +mV +mV +mV +mV +mV +mV +xC +Gj +Gj +Sw +Sw +Sw +Gj +Gj +vb +TW +TD +KM +wq +xF +ZV +NQ +NQ +uR +yf +yi +vt +uR +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(96,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +yY +ab +eH +eH +eH +eH +gG +yp +gN +yp +bp +RM +RM +sq +xd +sq +RM +bp +mV +mV +mV +PJ +mV +mV +mV +PJ +mV +dW +mV +PJ +mV +mV +bj +OT +xM +bj +OT +xM +mK +rm +rm +rm +rm +rm +Gj +eU +Ig +eU +uR +wK +bn +Pu +VD +XP +uR +Dk +yi +aD +uR +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(97,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pb +dE +eF +eH +hm +hm +gG +yp +gN +yp +GJ +GJ +GJ +GJ +GJ +GJ +GJ +GJ +Rk +mV +mV +mK +mV +mV +mV +mK +mV +dW +mV +mK +Rk +mV +bj +OT +xM +bj +OT +xM +mK +rm +rm +id +rm +rm +Gj +eU +Ig +eU +DL +DL +DL +DL +DL +DL +DL +DL +DL +DL +DL +vO +vO +cH +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(98,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pb +dz +eF +eH +ho +ir +gG +yp +gN +yp +GJ +Me +fN +TZ +NV +qY +fN +GJ +mV +mV +mV +WX +mV +mV +mV +WX +mV +dW +mV +WX +mV +mV +bj +OT +xM +bj +OT +xM +mK +vO +vO +id +rm +rm +Gj +eU +Ig +eU +DL +zH +JW +mC +tG +UM +IC +dZ +ZD +dZ +DL +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(99,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +pb +dE +eF +eH +ae +ae +gG +yp +gN +yp +GJ +fN +Dn +nv +xt +xt +NI +GJ +kV +mV +mV +mV +mV +mV +mV +mV +mV +dW +mV +mV +mV +mV +bj +OT +xM +bj +OT +xM +mK +rm +rm +id +rm +rm +Gj +vd +TW +TD +Sl +ND +Xa +IF +UM +UM +DL +Ss +dZ +Cf +DL +vO +id +id +vO +id +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(100,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +yY +dP +eH +eH +eH +eH +gG +Tk +op +MZ +nM +pB +lZ +Wm +qM +xt +oH +GJ +RT +mV +aV +mV +mV +aV +mV +mV +aV +dW +mV +mV +mV +mV +bj +OT +xM +bj +OT +xM +mK +rm +rm +id +rm +rm +Gj +Yw +Ig +eU +DL +Iu +KC +RF +ey +ky +DL +Jd +dZ +hy +DL +rm +vO +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(101,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +yY +yY +pb +pb +pb +yY +gG +yp +gN +yp +GJ +fN +Dn +xt +xt +xt +NI +GJ +RV +mV +JN +mV +mV +JN +mV +mV +JN +dW +mV +ng +ng +ng +mV +mV +mV +mV +mV +xC +mK +rm +rm +id +rm +rm +Gj +eU +Ig +Vt +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(102,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +gG +yp +gN +yp +GJ +fN +fN +wT +rB +wT +fN +GJ +mV +mV +mV +mV +mV +mV +mV +mV +mV +dW +mV +vR +na +aI +mV +mV +mV +mV +mV +mV +mK +rm +rm +id +vO +vO +Gj +ak +Sd +eU +Lw +oA +ff +Oa +jA +oA +RY +Ou +Tv +Ir +Tv +Ou +Lw +vO +cH +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(103,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +ge +yp +gN +yp +fH +fH +fH +fH +fH +fH +fH +fH +mV +mV +mV +mV +mV +mV +mV +mV +mV +dW +mV +mV +hD +mV +mV +KE +ln +bj +OT +xM +mK +rm +rm +vO +rm +Gj +Gj +aT +Fl +TD +Ei +Gm +OJ +OJ +cG +oA +Lw +Tl +Ou +Ou +Ou +Ou +Lw +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(104,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +ge +yp +gN +yp +fH +Py +Fr +ZP +Lh +pP +Fr +fH +mV +mV +uF +mV +mV +xH +mV +mV +xH +dW +mV +mV +mV +mV +YD +vx +ln +bj +OT +xM +mK +rm +rm +vO +vO +Gj +Qp +Nm +eU +eU +Lw +qs +Zx +pn +KZ +oA +Lw +Gp +Ou +Ou +Ou +xN +Lw +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(105,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +ge +yp +gN +yp +fH +Fr +It +Qt +lL +lL +HA +fH +mV +mV +an +mV +mV +uY +mV +mV +au +dW +mV +mV +ng +mV +mV +aM +ln +bj +OT +xM +mK +rm +rm +id +rm +Gj +qg +Nm +eU +eU +Lw +uB +or +lx +yy +oA +Lw +AK +AK +AK +AK +AK +Lw +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(106,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +gG +yp +qH +MZ +oh +qd +LA +tY +tZ +lL +HB +fH +kV +mV +mV +mV +mV +mV +mV +mV +mV +dW +mV +rT +aE +qS +mV +mV +mV +mV +mV +xC +mK +rm +rm +id +rm +Gj +Gj +vb +eU +eU +Lw +oA +kd +kd +kd +oA +Lw +WG +eC +eC +eC +Fp +Lw +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(107,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +vO +vO +gG +jb +kF +jb +fH +Fr +It +lL +lL +lL +HA +fH +mV +mV +mV +mV +mV +mV +mV +mV +mV +dW +mV +hD +hD +hD +mV +mV +mV +mV +mV +mV +mK +vO +id +id +id +vO +Gj +eU +eU +eU +Lw +Ij +kd +kd +kd +Jj +Lw +Uu +Rw +jS +jS +jq +Lw +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(108,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +gG +gG +gG +gG +fH +Fr +Fr +YY +wl +YY +Fr +fH +mV +VV +fU +aq +mV +PJ +mV +mV +mV +nj +PJ +mV +mV +mV +at +jJ +VV +rn +aq +mV +mK +rm +rm +vO +rm +rm +Gj +fO +df +fO +Lw +oA +Ly +qv +Gk +vq +Lw +DI +qB +bw +qB +Sv +Lw +vO +cH +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(109,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +vO +rm +rm +fH +fH +fH +fH +fH +fH +fH +fH +mK +rj +rj +rj +mK +mK +rj +rj +rj +mK +mK +rj +rj +rj +mK +mK +rj +rj +rj +mK +mK +rm +rm +id +rm +rm +Gj +Gj +Gj +Gj +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +Lw +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(110,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +vO +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(111,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +vO +rm +rm +rm +id +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +vO +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(112,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +id +id +id +vO +id +id +id +id +id +vO +id +id +id +vO +id +HF +id +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +id +id +id +vO +vO +id +id +vO +vO +id +vO +id +id +id +id +id +vO +id +vO +id +id +id +vO +vO +id +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(113,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +vO +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(114,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +id +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(115,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(116,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(117,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(118,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(119,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(120,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(121,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(122,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(123,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(124,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(125,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(126,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(127,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(128,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(129,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(130,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(131,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(132,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(133,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(134,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(135,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(136,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(137,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(138,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(139,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +"} +(140,1,1) = {" +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm +rm "} diff --git a/maps/gateway_vr/snow_outpost.dmm b/maps/gateway_vr/snow_outpost.dmm index 6878639a32..13435aff71 100644 --- a/maps/gateway_vr/snow_outpost.dmm +++ b/maps/gateway_vr/snow_outpost.dmm @@ -721,14 +721,12 @@ "cz" = ( /obj/machinery/power/port_gen/pacman/super, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/external, /area/awaymission/snow_outpost/dark) "cA" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/external, @@ -1970,7 +1968,6 @@ "gD" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /obj/machinery/porta_turret/alien/destroyed, /turf/simulated/shuttle/floor/alienplating, @@ -1989,8 +1986,6 @@ /area/awaymission/snow_outpost/dark) "gF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2011,16 +2006,12 @@ /area/awaymission/snow_outpost/dark) "gH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/shuttle/floor/alienplating, /area/awaymission/snow_outpost/dark) "gI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2028,7 +2019,6 @@ /area/awaymission/snow_outpost/dark) "gJ" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/prop/alien/power, diff --git a/maps/gateway_vr/snowfield.dmm b/maps/gateway_vr/snowfield.dmm index f99eb69984..397de9c2ab 100644 --- a/maps/gateway_vr/snowfield.dmm +++ b/maps/gateway_vr/snowfield.dmm @@ -67,7 +67,6 @@ /area/awaymission/snowfield/base) "al" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning/full, @@ -85,8 +84,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -96,7 +93,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -110,7 +106,6 @@ output_level = 250000 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -123,8 +118,6 @@ /area/awaymission/snowfield/base) "aq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -138,23 +131,18 @@ pixel_x = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, /area/awaymission/snowfield/base) "as" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/awaymission/snowfield/base) "at" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, diff --git a/maps/gateway_vr/variable/arynthilake_a.dmm b/maps/gateway_vr/variable/arynthilake_a.dmm index dcb5edb248..8f4cee6f6c 100644 --- a/maps/gateway_vr/variable/arynthilake_a.dmm +++ b/maps/gateway_vr/variable/arynthilake_a.dmm @@ -409,7 +409,6 @@ /area/gateway/arynthilake/dome) "cl" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/alarms_hidden{ @@ -486,18 +485,12 @@ /area/gateway/arynthilake/dome) "ea" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris, @@ -1049,8 +1042,6 @@ /area/gateway/arynthilake/dome) "pW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -1397,8 +1388,6 @@ /area/gateway/arynthilake/dome) "yb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris, @@ -1584,33 +1573,21 @@ /area/gateway/arynthilake/dome) "Ej" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris, @@ -1796,8 +1773,6 @@ /area/gateway/arynthilake/gateway) "Iz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -1875,8 +1850,6 @@ "Lo" = ( /obj/structure/lattice, /obj/structure/cable/green{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /turf/simulated/open, @@ -1984,7 +1957,6 @@ /area/gateway/arynthilake/engine) "MX" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/alarms_hidden{ @@ -2012,7 +1984,6 @@ /area/gateway/arynthilake/dome) "No" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/alarms_hidden{ @@ -2130,8 +2101,6 @@ /area/gateway/arynthilake/dome) "PC" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris, @@ -2180,8 +2149,6 @@ /area/gateway/arynthilake) "QI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris, @@ -2420,8 +2387,6 @@ /area/gateway/arynthilake/dome) "WV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris, diff --git a/maps/gateway_vr/variable/arynthilake_b.dmm b/maps/gateway_vr/variable/arynthilake_b.dmm index eb2b696667..9a57b076d5 100644 --- a/maps/gateway_vr/variable/arynthilake_b.dmm +++ b/maps/gateway_vr/variable/arynthilake_b.dmm @@ -243,8 +243,6 @@ "eq" = ( /obj/structure/lattice, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /turf/simulated/open, @@ -475,8 +473,6 @@ /area/gateway/arynthilake) "jh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -625,33 +621,21 @@ /area/gateway/arynthilake/dome) "mp" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris, @@ -702,18 +686,12 @@ /area/gateway/arynthilake/engine) "nq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/random/mob/semirandom_mob_spawner/humanoid/retaliate, @@ -721,8 +699,6 @@ /area/gateway/arynthilake/engine) "nB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris, @@ -802,8 +778,6 @@ /area/gateway/arynthilake/caveruins) "oX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -1483,7 +1457,6 @@ start_charge = 0 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris, @@ -1677,7 +1650,6 @@ start_charge = 0 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris, @@ -2167,8 +2139,6 @@ /area/gateway/arynthilake/dome) "Ui" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris, @@ -2332,8 +2302,6 @@ /area/gateway/arynthilake/dome) "WA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris, @@ -2358,7 +2326,6 @@ /area/gateway/arynthilake/dome) "Xx" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/alarms_hidden{ @@ -2455,8 +2422,6 @@ /area/gateway/arynthilake/dome) "ZE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris, diff --git a/maps/gateway_vr/variable/arynthilakeunderground_a.dmm b/maps/gateway_vr/variable/arynthilakeunderground_a.dmm index 5fbf117bbd..4bc8b66405 100644 --- a/maps/gateway_vr/variable/arynthilakeunderground_a.dmm +++ b/maps/gateway_vr/variable/arynthilakeunderground_a.dmm @@ -5,12 +5,9 @@ /area/gateway/arynthilake/engine) "aO" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /turf/simulated/floor/tiled/eris/steel/danger, @@ -151,7 +148,6 @@ "qJ" = ( /obj/machinery/power/rtg/abductor, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/eris/steel/danger, @@ -275,8 +271,6 @@ /area/gateway/arynthilake/engine) "Hb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/danger, diff --git a/maps/gateway_vr/variable/arynthilakeunderground_b.dmm b/maps/gateway_vr/variable/arynthilakeunderground_b.dmm index 8934cbb35e..e440cdf66b 100644 --- a/maps/gateway_vr/variable/arynthilakeunderground_b.dmm +++ b/maps/gateway_vr/variable/arynthilakeunderground_b.dmm @@ -128,7 +128,6 @@ "mw" = ( /obj/machinery/power/rtg/abductor, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/steel/danger, @@ -265,8 +264,6 @@ /area/gateway/arynthilake/engine) "FH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/danger, @@ -407,12 +404,9 @@ /area/gateway/arynthilake/engine) "Zl" = ( /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/eris/steel/danger, diff --git a/maps/gateway_vr/variable/honlethhighlands_a.dmm b/maps/gateway_vr/variable/honlethhighlands_a.dmm index cd69d8a99f..fad656a5d9 100644 --- a/maps/gateway_vr/variable/honlethhighlands_a.dmm +++ b/maps/gateway_vr/variable/honlethhighlands_a.dmm @@ -201,7 +201,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -392,8 +391,6 @@ /area/gateway/honlethhighlands/town/engineering) "cA" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -401,8 +398,6 @@ "cD" = ( /obj/machinery/door/airlock/hatch, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -466,8 +461,6 @@ /area/gateway/honlethhighlands/town/bar) "dQ" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -562,8 +555,6 @@ /area/gateway/honlethhighlands/gate) "fT" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -572,8 +563,6 @@ /area/gateway/honlethhighlands/town) "gm" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -651,16 +640,12 @@ "hE" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/gateway/honlethhighlands/town/kitchen) "hN" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -700,13 +685,9 @@ /area/gateway/honlethhighlands/gate) "jK" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -773,7 +754,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/lino, @@ -799,7 +779,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table/rack/shelf/steel, @@ -855,18 +834,12 @@ /area/gateway/honlethhighlands/town/kitchen) "mY" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/random/mob/semirandom_mob_spawner/humanoid/retaliate, @@ -978,8 +951,6 @@ /area/gateway/honlethhighlands/gate) "ow" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -1080,8 +1051,6 @@ /area/gateway/honlethhighlands/gate) "qm" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -1164,15 +1133,12 @@ /obj/machinery/reagentgrinder, /obj/item/weapon/reagent_containers/dropper, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/lino, /area/gateway/honlethhighlands/town/kitchen) "rB" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/port_gen/pacman{ @@ -1237,8 +1203,6 @@ "rX" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1276,8 +1240,6 @@ "th" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1293,8 +1255,6 @@ /area/gateway/honlethhighlands/town/command) "tk" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1306,7 +1266,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -1333,8 +1292,6 @@ "tT" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1346,8 +1303,6 @@ /area/gateway/honlethhighlands/beach) "tX" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1361,8 +1316,6 @@ /area/gateway/honlethhighlands/town/bar) "uI" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/mob/semirandom_mob_spawner/humanoid/retaliate, @@ -1370,16 +1323,12 @@ /area/gateway/honlethhighlands/town/command) "uN" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/lino, /area/gateway/honlethhighlands/town/kitchen) "uQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm/alarms_hidden{ @@ -1425,18 +1374,12 @@ /area/gateway/honlethhighlands/town/bar) "vU" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -1458,8 +1401,6 @@ /area/gateway/honlethhighlands/town/garden) "wr" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/random/mob/semirandom_mob_spawner/humanoid/retaliate, @@ -1468,8 +1409,6 @@ "wx" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1507,8 +1446,6 @@ "wL" = ( /obj/machinery/appliance/cooker/grill, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -1527,8 +1464,6 @@ "wR" = ( /obj/structure/table/marble, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -1555,8 +1490,6 @@ /area/gateway/honlethhighlands/gate) "xz" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -1629,8 +1562,6 @@ /area/gateway/honlethhighlands/town/garden) "zh" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -1656,8 +1587,6 @@ /area/gateway/honlethhighlands/gate) "zv" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1707,8 +1636,6 @@ /area/gateway/honlethhighlands/town/bar) "Ai" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/wall/r_wall{ @@ -1838,8 +1765,6 @@ /area/gateway/honlethhighlands/gate) "Cy" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall{ @@ -1856,18 +1781,12 @@ /area/gateway/honlethhighlands/gate) "CM" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1889,8 +1808,6 @@ /area/gateway/honlethhighlands/town/supply) "De" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/light, @@ -1907,8 +1824,6 @@ /area/gateway/honlethhighlands/town/supply) "Di" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/table/steel_reinforced, @@ -1922,8 +1837,6 @@ /area/gateway/honlethhighlands/town/xenobio) "Dm" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -1999,7 +1912,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /obj/item/weapon/stool/padded{ @@ -2068,8 +1980,6 @@ /area/gateway/honlethhighlands) "Gn" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -2104,18 +2014,12 @@ /area/gateway/honlethhighlands/caves) "GY" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2124,8 +2028,6 @@ /area/gateway/honlethhighlands/town) "Hd" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -2248,7 +2150,6 @@ /area/gateway/honlethhighlands/town/supply) "Kk" = ( /obj/structure/cable/ender{ - d2 = 2; icon_state = "0-2"; id = "togateway" }, @@ -2261,7 +2162,6 @@ "Kt" = ( /obj/structure/cable/heavyduty, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating{ @@ -2323,8 +2223,6 @@ /area/gateway/honlethhighlands/town) "LJ" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2333,8 +2231,6 @@ /area/gateway/honlethhighlands/town) "LY" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2361,7 +2257,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -2380,7 +2275,6 @@ /area/gateway/honlethhighlands/beach) "MR" = ( /obj/structure/cable/ender{ - d2 = 8; icon_state = "0-8"; id = "togateway" }, @@ -2411,8 +2305,6 @@ "NS" = ( /obj/machinery/door/airlock/hatch, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -2434,7 +2326,6 @@ icon_state = "0-4" }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating{ @@ -2470,8 +2361,6 @@ "Pb" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -2531,8 +2420,6 @@ /area/gateway/honlethhighlands/gate) "Qz" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -2542,7 +2429,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -2569,8 +2455,6 @@ /area/gateway/honlethhighlands/town/bar) "Rg" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/steel_reinforced, @@ -2630,7 +2514,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table/rack/steel, @@ -2643,8 +2526,6 @@ /area/gateway/honlethhighlands/town/supply) "SP" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -2688,13 +2569,9 @@ /area/gateway/honlethhighlands/town/bar) "US" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2723,8 +2600,6 @@ /area/gateway/honlethhighlands/gate) "Vi" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/mob/semirandom_mob_spawner/humanoid/retaliate, @@ -2826,7 +2701,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -2852,8 +2726,6 @@ /area/gateway/honlethhighlands/gate) "WC" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -2897,8 +2769,6 @@ /area/gateway/honlethhighlands/town) "XS" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ diff --git a/maps/gateway_vr/variable/honlethhighlands_b.dmm b/maps/gateway_vr/variable/honlethhighlands_b.dmm index 1139a7e356..865715aab2 100644 --- a/maps/gateway_vr/variable/honlethhighlands_b.dmm +++ b/maps/gateway_vr/variable/honlethhighlands_b.dmm @@ -201,7 +201,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -373,8 +372,6 @@ /area/gateway/honlethhighlands/town/engineering) "cA" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -382,8 +379,6 @@ "cD" = ( /obj/machinery/door/airlock/hatch, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -448,8 +443,6 @@ /area/gateway/honlethhighlands/town/bar) "dQ" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -542,8 +535,6 @@ /area/gateway/honlethhighlands/gate) "fT" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -552,8 +543,6 @@ /area/gateway/honlethhighlands/town) "gm" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -638,8 +627,6 @@ "hE" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -650,8 +637,6 @@ /area/gateway/honlethhighlands/town/garden) "hN" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -704,13 +689,9 @@ /area/gateway/honlethhighlands/gate) "jK" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/random/mob/semirandom_mob_spawner/humanoid, @@ -780,7 +761,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/lino, @@ -812,7 +792,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table/rack/shelf/steel, @@ -981,8 +960,6 @@ /area/gateway/honlethhighlands/gate) "ow" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -1106,8 +1083,6 @@ /area/gateway/honlethhighlands/caves) "qm" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -1203,15 +1178,12 @@ /obj/machinery/reagentgrinder, /obj/item/weapon/reagent_containers/dropper, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/lino, /area/gateway/honlethhighlands/town/kitchen) "rB" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/port_gen/pacman{ @@ -1271,8 +1243,6 @@ "rX" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1298,8 +1268,6 @@ "th" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1316,8 +1284,6 @@ /area/gateway/honlethhighlands/town/command) "tk" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1329,7 +1295,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -1352,8 +1317,6 @@ "tT" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1365,8 +1328,6 @@ /area/gateway/honlethhighlands/beach) "tX" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1386,16 +1347,12 @@ /area/gateway/honlethhighlands/town/bar) "uI" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, /area/gateway/honlethhighlands/town/command) "uN" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/lino, @@ -1409,8 +1366,6 @@ /area/gateway/honlethhighlands/town/bar) "uQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm/alarms_hidden{ @@ -1454,18 +1409,12 @@ /area/gateway/honlethhighlands/town/bar) "vU" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -1493,8 +1442,6 @@ /area/gateway/honlethhighlands) "wr" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -1502,8 +1449,6 @@ "wx" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1541,8 +1486,6 @@ "wL" = ( /obj/machinery/appliance/cooker/grill, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -1555,8 +1498,6 @@ "wR" = ( /obj/structure/table/marble, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -1584,8 +1525,6 @@ /area/gateway/honlethhighlands/gate) "xz" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -1663,8 +1602,6 @@ /area/gateway/honlethhighlands/town/garden) "zh" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -1690,8 +1627,6 @@ /area/gateway/honlethhighlands/gate) "zv" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1735,8 +1670,6 @@ /area/gateway/honlethhighlands/town/bar) "Ai" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/wall/r_wall{ @@ -1749,8 +1682,6 @@ /area/gateway/honlethhighlands/town/bar) "Ao" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/random/mob/semirandom_mob_spawner/humanoid, @@ -1865,8 +1796,6 @@ /area/gateway/honlethhighlands/gate) "Cy" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall{ @@ -1883,18 +1812,12 @@ /area/gateway/honlethhighlands/gate) "CM" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1916,8 +1839,6 @@ /area/gateway/honlethhighlands/town/supply) "De" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/light, @@ -1934,8 +1855,6 @@ /area/gateway/honlethhighlands/town/supply) "Di" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/table/steel_reinforced, @@ -1949,8 +1868,6 @@ /area/gateway/honlethhighlands/town/xenobio) "Dm" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2001,7 +1918,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /obj/item/weapon/stool/padded{ @@ -2079,8 +1995,6 @@ /area/gateway/honlethhighlands/beach) "Gn" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -2108,18 +2022,12 @@ /area/gateway/honlethhighlands/caves) "GY" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2128,8 +2036,6 @@ /area/gateway/honlethhighlands/town) "Hd" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -2248,7 +2154,6 @@ /area/gateway/honlethhighlands/town/supply) "Kk" = ( /obj/structure/cable/ender{ - d2 = 2; icon_state = "0-2"; id = "togateway" }, @@ -2261,7 +2166,6 @@ "Kt" = ( /obj/structure/cable/heavyduty, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating{ @@ -2317,8 +2221,6 @@ /area/gateway/honlethhighlands/town) "LJ" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2327,8 +2229,6 @@ /area/gateway/honlethhighlands/town) "LY" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2354,7 +2254,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -2367,7 +2266,6 @@ /area/gateway/honlethhighlands/gate) "MR" = ( /obj/structure/cable/ender{ - d2 = 8; icon_state = "0-8"; id = "togateway" }, @@ -2405,8 +2303,6 @@ "NS" = ( /obj/machinery/door/airlock/hatch, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -2428,7 +2324,6 @@ icon_state = "0-4" }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating{ @@ -2464,8 +2359,6 @@ "Pb" = ( /obj/machinery/door/airlock/silver, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -2544,8 +2437,6 @@ /area/gateway/honlethhighlands/gate) "Qz" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/random/mob/semirandom_mob_spawner/humanoid, @@ -2556,7 +2447,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -2583,8 +2473,6 @@ /area/gateway/honlethhighlands/town/bar) "Rg" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/steel_reinforced, @@ -2644,7 +2532,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table/rack/steel, @@ -2657,8 +2544,6 @@ /area/gateway/honlethhighlands/town/supply) "SP" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -2736,13 +2621,9 @@ /area/gateway/honlethhighlands/town/bar) "US" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ @@ -2771,8 +2652,6 @@ /area/gateway/honlethhighlands/gate) "Vi" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -2873,7 +2752,6 @@ start_charge = 0 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /obj/random/mob/semirandom_mob_spawner/humanoid, @@ -2908,8 +2786,6 @@ /area/gateway/honlethhighlands/town/command) "WC" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -2946,8 +2822,6 @@ /area/gateway/honlethhighlands) "XS" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/asteroid_steel/outdoors{ diff --git a/maps/gateway_vr/zoo.dmm b/maps/gateway_vr/zoo.dmm index 5fab4a9e90..c08fdeaed2 100644 --- a/maps/gateway_vr/zoo.dmm +++ b/maps/gateway_vr/zoo.dmm @@ -6216,8 +6216,6 @@ /area/awaymission/zoo) "re" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -8702,15 +8700,12 @@ /area/awaymission/zoo) "xk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xl" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/solar/fake, @@ -8720,116 +8715,78 @@ /area/awaymission/zoo/solars) "xm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -8843,39 +8800,27 @@ /area/awaymission/zoo/solars) "xu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/awaymission/zoo/solars) "xw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, diff --git a/maps/gateway_vr/zoo_b.dmm b/maps/gateway_vr/zoo_b.dmm index 3f2f8e6fe8..23ea96b135 100644 --- a/maps/gateway_vr/zoo_b.dmm +++ b/maps/gateway_vr/zoo_b.dmm @@ -1085,8 +1085,6 @@ /area/awaymission/zoo/syndieship) "io" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ diff --git a/maps/groundbase/gb-centcomm.dmm b/maps/groundbase/gb-centcomm.dmm index 11db26dd11..699b29e099 100644 --- a/maps/groundbase/gb-centcomm.dmm +++ b/maps/groundbase/gb-centcomm.dmm @@ -15284,8 +15284,8 @@ /area/centcom/specops) "Yp" = ( /obj/structure/table/rack, -/obj/item/weapon/storage/pill_bottle/iron, -/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/blood_regen, +/obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, /turf/simulated/floor/tiled/dark, /area/centcom/specops) diff --git a/maps/groundbase/gb-mining.dmm b/maps/groundbase/gb-mining.dmm index 10234a39d3..f06ca4762a 100644 --- a/maps/groundbase/gb-mining.dmm +++ b/maps/groundbase/gb-mining.dmm @@ -11,13 +11,13 @@ /area/groundbase/mining/unexplored) "x" = ( /obj/effect/step_trigger/teleporter/from_mining, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/mineral/floor/ignore_mapgen/cave, /area/groundbase/mining/unexplored) "I" = ( /turf/simulated/mineral/cave, /area/groundbase/mining/unexplored) "Z" = ( -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/mineral/floor/ignore_mapgen/cave, /area/groundbase/mining/unexplored) (1,1,1) = {" diff --git a/maps/groundbase/gb-z1.dmm b/maps/groundbase/gb-z1.dmm index 268688936a..c85879e0a1 100644 --- a/maps/groundbase/gb-z1.dmm +++ b/maps/groundbase/gb-z1.dmm @@ -3392,9 +3392,7 @@ /turf/simulated/floor/tiled/dark, /area/groundbase/security/lobby) "hv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, +/obj/effect/landmark/start/entrepreneur, /turf/simulated/floor/tiled, /area/groundbase/civilian/apparel) "hw" = ( @@ -6529,6 +6527,13 @@ /obj/effect/landmark/start/bartender, /turf/simulated/floor/lino, /area/groundbase/civilian/bar) +"of" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/apparel) "og" = ( /obj/effect/landmark/start/miner, /obj/structure/cable/yellow{ @@ -13314,8 +13319,6 @@ department = "Chief Engineer's Office" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/orange{ @@ -16925,7 +16928,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/flora/pottedplant/unusual, @@ -33003,7 +33005,7 @@ vi Yx hr pi -Pb +hv vP ye CD @@ -33287,7 +33289,7 @@ Ba mL hr zT -hv +of sg BS Pb @@ -33429,7 +33431,7 @@ hr hr hr bL -Pb +hv rG BS zj @@ -33713,7 +33715,7 @@ qE qE dk Vb -Pb +hv ll ye CD diff --git a/maps/groundbase/groundbase_defines.dm b/maps/groundbase/groundbase_defines.dm index 9a41c4a27c..2faa9b21d2 100644 --- a/maps/groundbase/groundbase_defines.dm +++ b/maps/groundbase/groundbase_defines.dm @@ -218,7 +218,10 @@ list("Redgate - Eggnog Town Underground","Redgate - Eggnog Town"), list("Redgate - Star Dog"), list("Redgate - Hotsprings"), - list("Redgate - Rain City") + list("Redgate - Rain City"), + list("Redgate - Islands Underwater","Redgate - Islands"), + list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"), + list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town") ) lateload_gb_north = list( diff --git a/maps/groundbase/westwilds/westwilds template.dmm b/maps/groundbase/westwilds/westwilds template.dmm index 46c7302868..4b8292828a 100644 --- a/maps/groundbase/westwilds/westwilds template.dmm +++ b/maps/groundbase/westwilds/westwilds template.dmm @@ -127,8 +127,6 @@ "aW" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -316,8 +314,6 @@ /area/shuttle/axolotl) "cV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -514,8 +510,6 @@ "eA" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -529,13 +523,9 @@ /area/shuttle/axolotl_head) "eB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -590,8 +580,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ @@ -1192,8 +1180,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -1225,8 +1211,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1378,8 +1362,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -1423,8 +1405,6 @@ /area/shuttle/axolotl_engineering) "mK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1570,8 +1550,6 @@ /area/groundbase/science/outpost/anomaly_storage) "nT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1687,7 +1665,6 @@ req_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1757,8 +1734,6 @@ /area/groundbase/science/outpost/toxing_gasworks) "pC" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1846,8 +1821,6 @@ /area/groundbase/science/outpost/toxins_mixing) "qa" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/railing/grey{ @@ -1930,8 +1903,6 @@ "qv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2032,13 +2003,9 @@ /area/shuttle/axolotl_engineering) "rh" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2203,8 +2170,6 @@ /area/groundbase/science/outpost/toxins_lab) "tf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2408,7 +2373,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -2529,8 +2493,6 @@ /area/shuttle/axolotl) "vH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2624,8 +2586,6 @@ "wo" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2677,8 +2637,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/danger{ @@ -2708,8 +2666,6 @@ /area/groundbase/science/outpost/toxins_lab) "xc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing/grey{ @@ -2897,8 +2853,6 @@ /area/groundbase/science/outpost/atmos) "yO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3551,8 +3505,6 @@ /area/shuttle/axolotl) "Em" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3690,7 +3642,6 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/alarm/alarms_hidden{ @@ -3889,8 +3840,6 @@ /area/shuttle/axolotl) "Hf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3925,8 +3874,6 @@ /area/groundbase/science/outpost/anomaly_testing) "Hw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4188,8 +4135,6 @@ /area/groundbase/science/outpost/anomaly_testing) "IZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4211,8 +4156,6 @@ /area/groundbase/science/outpost/toxing_gasworks) "Jc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/handrail{ @@ -4327,8 +4270,6 @@ /area/groundbase/science/outpost/toxing_gasworks) "Ka" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/multi_tile/metal{ @@ -4346,8 +4287,6 @@ /area/shuttle/axolotl_engineering) "Kb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4783,8 +4722,6 @@ /area/groundbase/science/outpost/toxins_mixing) "Ou" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4811,8 +4748,6 @@ /area/groundbase/science/outpost/toxins_lab) "OM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4822,8 +4757,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4917,7 +4850,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -4971,8 +4903,6 @@ /area/groundbase/science/outpost/atmos) "PL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -5030,8 +4960,6 @@ /area/groundbase/science/outpost/toxins_mixing) "Qh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -5126,8 +5054,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -5617,18 +5543,12 @@ /area/groundbase/science/outpost/toxins_lab) "VW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -5779,7 +5699,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -5824,8 +5743,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -5939,8 +5856,6 @@ /area/shuttle/axolotl_engineering) "Yw" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6076,8 +5991,6 @@ /area/shuttle/axolotl_engineering) "ZK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ diff --git a/maps/groundbase/westwilds/westwilds1.dmm b/maps/groundbase/westwilds/westwilds1.dmm index 89f3053d85..98db54c397 100644 --- a/maps/groundbase/westwilds/westwilds1.dmm +++ b/maps/groundbase/westwilds/westwilds1.dmm @@ -130,13 +130,9 @@ /area/groundbase/science/outpost/toxins_mixing) "bs" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -152,8 +148,6 @@ /area/groundbase/science/outpost/atmos) "bu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -219,8 +213,6 @@ "cg" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -371,8 +363,6 @@ /area/groundbase/science/outpost/toxins_storage) "cY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -605,8 +595,6 @@ /area/groundbase/science/outpost) "eH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -773,8 +761,6 @@ /area/groundbase/science/outpost/toxins_storage) "gb" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/railing/grey{ @@ -822,7 +808,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -918,8 +903,6 @@ /area/groundbase/engineering/solarfield) "hf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1057,8 +1040,6 @@ /area/shuttle/axolotl) "if" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1140,8 +1121,6 @@ /area/groundbase/science/outpost/toxins_mixing) "iI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1208,7 +1187,6 @@ /area/groundbase/science/outpost/toxing_gasworks) "ja" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -1486,8 +1464,6 @@ "mc" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1514,8 +1490,6 @@ /area/shuttle/axolotl_cockpit) "ms" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing/grey{ @@ -1571,7 +1545,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/handrail, @@ -1709,7 +1682,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -2001,13 +1973,9 @@ /area/submap/groundbase/wilderness/west) "qY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2402,8 +2370,6 @@ /area/shuttle/axolotl_head) "ur" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2809,8 +2775,6 @@ /area/shuttle/axolotl_cockpit) "xg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/handrail{ @@ -2839,8 +2803,6 @@ /area/shuttle/axolotl) "xs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -3185,8 +3147,6 @@ "AF" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3373,18 +3333,12 @@ /area/groundbase/science/outpost) "BP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -3479,7 +3433,6 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/alarm/alarms_hidden{ @@ -4135,8 +4088,6 @@ /area/groundbase/science/outpost/toxins_mixing) "HS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4297,8 +4248,6 @@ /area/groundbase/science/outpost/anomaly_storage) "IV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -4727,8 +4676,6 @@ /area/groundbase/science/outpost) "Ls" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4846,8 +4793,6 @@ /area/groundbase/science/outpost/toxing_gasworks) "MG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4993,8 +4938,6 @@ /area/groundbase/science/outpost/toxins_lab) "NZ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5163,8 +5106,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5269,8 +5210,6 @@ "QP" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5293,7 +5232,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -5423,8 +5361,6 @@ /area/groundbase/science/outpost/toxins_mixing) "RF" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5610,8 +5546,6 @@ /area/groundbase/science/outpost/anomaly_testing) "Ta" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5737,8 +5671,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/danger{ @@ -5765,8 +5697,6 @@ /area/groundbase/science/outpost/toxins_storage) "Uy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/multi_tile{ @@ -5793,8 +5723,6 @@ /area/shuttle/axolotl_cockpit) "UE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6061,8 +5989,6 @@ /area/submap/groundbase/wilderness/west) "WV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6093,8 +6019,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -6213,7 +6137,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -6407,8 +6330,6 @@ /area/groundbase/science/outpost/atmos) "ZB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ diff --git a/maps/groundbase/westwilds/westwilds2.dmm b/maps/groundbase/westwilds/westwilds2.dmm index 174f35ac76..6e70698117 100644 --- a/maps/groundbase/westwilds/westwilds2.dmm +++ b/maps/groundbase/westwilds/westwilds2.dmm @@ -162,8 +162,6 @@ /area/submap/groundbase/wilderness/west) "bd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -173,8 +171,6 @@ /area/shuttle/axolotl_cockpit) "be" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -255,7 +251,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -433,8 +428,6 @@ /area/shuttle/axolotl_engineering) "dw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/multi_tile/metal{ @@ -636,8 +629,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -753,8 +744,6 @@ "gl" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -810,8 +799,6 @@ /area/groundbase/science/outpost) "gO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -1019,8 +1006,6 @@ /area/groundbase/science/outpost/anomaly_testing) "it" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1285,8 +1270,6 @@ "jW" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1330,7 +1313,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/handrail, @@ -1827,13 +1809,9 @@ /area/groundbase/science/outpost/toxins_mixing) "oO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2186,8 +2164,6 @@ /area/shuttle/axolotl_head) "rj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2216,8 +2192,6 @@ /area/shuttle/axolotl_cockpit) "rp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2267,8 +2241,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2284,7 +2256,6 @@ /area/groundbase/science/outpost/toxing_gasworks) "rL" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -2508,7 +2479,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -2611,8 +2581,6 @@ /area/shuttle/axolotl_galley) "up" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2714,8 +2682,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2886,8 +2852,6 @@ /area/shuttle/axolotl) "vQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -2913,13 +2877,9 @@ /area/groundbase/engineering/solarshed) "wd" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2990,8 +2950,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/danger{ @@ -3108,8 +3066,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3171,8 +3127,6 @@ /area/groundbase/science/outpost/toxins_mixing) "xU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3307,8 +3261,6 @@ /area/groundbase/science/outpost/atmos) "yN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/railing/grey{ @@ -3471,18 +3423,12 @@ /area/groundbase/science/outpost/toxins_storage) "zY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -3734,8 +3680,6 @@ /area/groundbase/science/outpost/anomaly_storage) "BL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/handrail{ @@ -3749,8 +3693,6 @@ /area/shuttle/axolotl_engineering) "BN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3939,7 +3881,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -3992,8 +3933,6 @@ /area/groundbase/science/outpost/atmos) "DV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4035,8 +3974,6 @@ "DZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4372,8 +4309,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4801,8 +4736,6 @@ /area/shuttle/axolotl_cockpit) "Kl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5013,8 +4946,6 @@ /area/groundbase/science/outpost/toxins_mixing) "LQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing/grey{ @@ -5042,8 +4973,6 @@ /area/groundbase/science/outpost) "Mn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5165,7 +5094,6 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/alarm/alarms_hidden{ @@ -5301,8 +5229,6 @@ /area/groundbase/science/outpost/toxins_lab) "OS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5467,8 +5393,6 @@ "Qk" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5519,8 +5443,6 @@ /area/groundbase/science/outpost/toxins_storage) "QI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -5594,7 +5516,6 @@ req_one_access = list(11,67) }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -5711,8 +5632,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -6226,8 +6145,6 @@ /area/groundbase/science/outpost/anomaly_testing) "Ye" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6237,8 +6154,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -6277,8 +6192,6 @@ /area/groundbase/science/outpost/anomaly_testing) "Yw" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6439,8 +6352,6 @@ /area/groundbase/science/outpost/atmos) "ZQ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ diff --git a/maps/offmap_vr/common_offmaps.dm b/maps/offmap_vr/common_offmaps.dm index f58ac6679f..47aab4f7de 100644 --- a/maps/offmap_vr/common_offmaps.dm +++ b/maps/offmap_vr/common_offmaps.dm @@ -288,6 +288,44 @@ desc = "A strange city on lockdown." mappath = 'maps/redgate/cybercity.dmm' +/datum/map_template/common_lateload/redgate/islands + name = "Redgate - Islands" + desc = "A series of islands out in the ocean." + mappath = 'maps/redgate/islands.dmm' + +/datum/map_template/common_lateload/redgate/islands_underwater + name = "Redgate - Islands Underwater" + desc = "A series of islands out in the ocean." + mappath = 'maps/redgate/islands_underwater.dmm' + +/obj/effect/landmark/map_data/islands + height = 2 + +/datum/map_template/common_lateload/redgate/train + name = "Redgate - Moving Train" + desc = "A long train travelling to who-knows-where." + mappath = 'maps/redgate/train.dmm' + +/datum/map_template/common_lateload/redgate/train_upper + name = "Redgate - Moving Train Upper Level" + desc = "A long train travelling to who-knows-where." + mappath = 'maps/redgate/train_upper.dmm' + +/obj/effect/landmark/map_data/train + height = 2 + +/datum/map_template/common_lateload/redgate/fantasy + name = "Redgate - Fantasy Town" + desc = "A fantasy town full of low tech stuff." + mappath = 'maps/redgate/fantasy.dmm' + +/datum/map_template/common_lateload/redgate/fantasy_dungeon + name = "Redgate - Fantasy Dungeon" + desc = "A fantasy dungeon with lots of monsters and loot." + mappath = 'maps/redgate/fantasy_dungeon.dmm' + +/obj/effect/landmark/map_data/fantasy + height = 2 ////////////////////////////////////////////////////////////////////////////////////// // Admin-use z-levels for loading whenever an admin feels like diff --git a/maps/offmap_vr/om_ships/abductor.dmm b/maps/offmap_vr/om_ships/abductor.dmm index c96d1b8994..5083af6250 100644 --- a/maps/offmap_vr/om_ships/abductor.dmm +++ b/maps/offmap_vr/om_ships/abductor.dmm @@ -53,18 +53,12 @@ /area/abductor/interior) "eV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/shuttle/floor/alien, @@ -166,8 +160,6 @@ /area/abductor/interior) "kT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/porta_turret/alien/abductor, @@ -235,8 +227,6 @@ /area/abductor/interior) "pC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/shuttle/floor/alienplating, @@ -277,8 +267,6 @@ /area/abductor/interior) "rg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/shuttle/floor/alien, @@ -426,8 +414,6 @@ /area/abductor/interior) "yB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/shuttle/floor/alien, @@ -440,23 +426,15 @@ /area/abductor/interior) "zu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/shuttle/floor/alien, @@ -491,8 +469,6 @@ /area/abductor/interior) "EA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/shuttle/floor/alienplating, @@ -648,8 +624,6 @@ req_one_access = list(777) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/shuttle/floor/alienplating, @@ -723,8 +697,6 @@ req_one_access = list(777) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/shuttle/floor/alienplating, @@ -855,7 +827,6 @@ "VT" = ( /obj/machinery/power/shield_generator/charged, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/shuttle/floor/alien, @@ -867,7 +838,6 @@ /area/abductor/interior) "WB" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/rtg/abductor/built/abductor, @@ -912,7 +882,6 @@ /area/abductor/interior) "YA" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/rtg/abductor/built/abductor, diff --git a/maps/offmap_vr/om_ships/aro.dmm b/maps/offmap_vr/om_ships/aro.dmm index 28811ba200..5991b169e9 100644 --- a/maps/offmap_vr/om_ships/aro.dmm +++ b/maps/offmap_vr/om_ships/aro.dmm @@ -120,8 +120,6 @@ /area/ship/aro/bridge) "as" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -131,16 +129,12 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, /area/ship/aro/bridge) "au" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -175,8 +169,6 @@ "ay" = ( /obj/effect/floor_decal/techfloor/corner, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -211,8 +203,6 @@ "aD" = ( /obj/machinery/door/airlock/alien/blue, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -256,8 +246,6 @@ /area/ship/aro/recreation) "aH" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -268,13 +256,9 @@ /area/ship/aro/recreation) "aI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -284,8 +268,6 @@ /area/ship/aro/recreation) "aJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -295,8 +277,6 @@ /area/ship/aro/recreation) "aK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm/alarms_hidden{ @@ -313,8 +293,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -354,8 +332,6 @@ "aR" = ( /obj/structure/closet/crate/bin, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -377,8 +353,6 @@ /area/ship/aro/holodeck) "aU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -399,8 +373,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -426,8 +398,6 @@ pixel_x = 32 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -486,8 +456,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -497,8 +465,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -508,8 +474,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -563,8 +527,6 @@ /area/ship/aro/recreation) "bo" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -608,8 +570,6 @@ "bw" = ( /obj/machinery/door/airlock/alien/blue, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -643,8 +603,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -694,8 +652,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -900,8 +856,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1174,8 +1128,6 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1192,8 +1144,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -1206,13 +1156,9 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1229,8 +1175,6 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1252,8 +1196,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1322,8 +1264,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1404,8 +1344,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1468,8 +1406,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1527,8 +1463,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -1547,8 +1481,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1567,8 +1499,6 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1579,13 +1509,9 @@ }, /obj/effect/floor_decal/techfloor/corner, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1598,8 +1524,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1612,8 +1536,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1666,8 +1588,6 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1753,8 +1673,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1799,8 +1717,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1854,8 +1770,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1927,8 +1841,6 @@ "em" = ( /obj/machinery/door/airlock/alien/blue, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1979,8 +1891,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -2021,8 +1931,6 @@ "ex" = ( /obj/structure/catwalk, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2036,8 +1944,6 @@ "ey" = ( /obj/structure/catwalk, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2051,8 +1957,6 @@ "ez" = ( /obj/machinery/door/airlock/alien/blue, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2071,8 +1975,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -2085,13 +1987,9 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2156,8 +2054,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -2358,8 +2254,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2534,8 +2428,6 @@ /area/ship/aro/midshipshangars) "fC" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -2558,8 +2450,6 @@ "fG" = ( /obj/machinery/door/airlock/alien/blue, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -2603,8 +2493,6 @@ /area/ship/aro/engineering) "fM" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/corner{ @@ -2705,8 +2593,6 @@ /area/ship/aro/engineering) "fY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -2794,8 +2680,6 @@ /area/ship/aro/engineering) "gm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor, @@ -2877,13 +2761,9 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/shuttle/floor/alienplating/blue, @@ -2893,8 +2773,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/shuttle/floor/alienplating/blue, @@ -2940,21 +2818,15 @@ /area/ship/aro/engineering) "gE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/shuttle/floor/alienplating/blue, /area/ship/aro/engineering) "gF" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/shuttle/floor/alienplating/blue, @@ -3131,8 +3003,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3233,8 +3103,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, diff --git a/maps/offmap_vr/om_ships/aro2.dmm b/maps/offmap_vr/om_ships/aro2.dmm index 458416f4b8..f8fdcb7011 100644 --- a/maps/offmap_vr/om_ships/aro2.dmm +++ b/maps/offmap_vr/om_ships/aro2.dmm @@ -5,16 +5,12 @@ /area/space) "af" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rpshull, /area/aro2/frontroom) "ag" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/wall/rpshull, @@ -24,37 +20,27 @@ /area/aro2/frontroom) "ai" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rpshull, /area/aro2/frontroom) "ak" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rpshull, /area/aro2/boatdeck) "al" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rpshull, /area/aro2/room1) "am" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/wall/rpshull, @@ -64,8 +50,6 @@ /area/aro2/frontroom) "ap" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -81,8 +65,6 @@ /area/aro2/room1) "au" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -98,7 +80,6 @@ /area/aro2/room1) "aC" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -117,8 +98,6 @@ pixel_y = 23 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/blue, @@ -134,7 +113,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/eris/under, @@ -164,8 +142,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet/blue, @@ -239,7 +215,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/eris/under, @@ -254,13 +229,9 @@ /area/aro2/cockpit) "bm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -412,7 +383,6 @@ /area/aro2/room3) "cD" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -549,16 +519,12 @@ /area/aro2/boatdeck) "dv" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rpshull, /area/aro2/dining) "dw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, @@ -569,8 +535,6 @@ /area/aro2/boatdeck) "dG" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, @@ -583,13 +547,9 @@ /area/aro2/dining) "dK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -602,16 +562,12 @@ /area/aro2/dining) "dL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, /area/aro2/dining) "dU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -628,8 +584,6 @@ /area/aro2/dining) "ea" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -677,13 +631,9 @@ /area/aro2/starboardbay) "ej" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -711,8 +661,6 @@ /area/aro2/powerarea) "en" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -735,8 +683,6 @@ "eD" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -771,8 +717,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark/gray_perforated, @@ -783,8 +727,6 @@ /area/aro2/boatdeck) "fh" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -808,8 +750,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/closet/autolok_wall{ @@ -819,8 +759,6 @@ /area/aro2/starboardbay) "fn" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -835,8 +773,6 @@ /area/aro2/dining) "fo" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -846,8 +782,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -860,21 +794,15 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/bar_flat, /area/aro2/frontroom) "fv" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -904,16 +832,12 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) "fK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/bar_flat, @@ -923,8 +847,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/closet/autolok_wall{ @@ -1000,8 +922,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1012,8 +932,6 @@ /area/aro2/surfluid) "gB" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1030,16 +948,12 @@ /area/shuttle/aroboat2) "gP" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rpshull, /area/aro2/portbay) "gQ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, @@ -1047,8 +961,6 @@ "gT" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1064,16 +976,12 @@ /area/aro2/airarea) "hf" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, /area/aro2/starboardbay) "hg" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rpshull, @@ -1087,8 +995,6 @@ /area/aro2/boatdeck) "hm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1102,8 +1008,6 @@ /area/aro2/dining) "hE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1129,7 +1033,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/cyan, @@ -1163,16 +1066,12 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) "il" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1204,8 +1103,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -1221,7 +1118,6 @@ /area/aro2/boatdeck) "iU" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -1340,8 +1236,6 @@ /area/aro2/boatdeck) "kX" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/dark, @@ -1361,16 +1255,12 @@ /area/aro2/room3) "lk" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/wall/rpshull, /area/aro2/powerarea) "ll" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, @@ -1386,32 +1276,24 @@ /area/aro2/portbay) "lr" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, /area/aro2/airarea) "lt" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/wall/rpshull, /area/aro2/airarea) "lu" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rpshull, /area/aro2/powerarea) "ly" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rpshull, @@ -1430,8 +1312,6 @@ /area/aro2/portbay) "lI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1463,7 +1343,6 @@ /area/aro2/room2) "lQ" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -1483,8 +1362,6 @@ /area/aro2/room3) "lV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1497,8 +1374,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1526,21 +1401,15 @@ /area/aro2/surfluid) "mz" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/starboardbay) "mI" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1566,7 +1435,6 @@ target_radius = 39 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/eris/steel/bar_flat, @@ -1579,8 +1447,6 @@ /area/aro2/boatdeck) "nn" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating/eris/under, @@ -1593,8 +1459,6 @@ /area/aro2/boatdeck) "nv" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1607,8 +1471,6 @@ /area/aro2/frontroom) "nA" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1632,13 +1494,9 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/firealarm{ @@ -1673,8 +1531,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1687,8 +1543,6 @@ /area/aro2/boatdeck) "oy" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1709,8 +1563,6 @@ /area/aro2/cockpit) "oM" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/bar_flat, @@ -1730,7 +1582,6 @@ pixel_y = 21 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -1774,7 +1625,6 @@ /area/aro2/boatdeck) "pW" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/smes/buildable/hybrid{ @@ -1793,21 +1643,15 @@ /area/aro2/surfluid) "qb" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/wall/r_wall, /area/aro2/airarea) "qd" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1817,8 +1661,6 @@ /area/aro2/starboardbay) "qi" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1828,8 +1670,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/bar_flat, @@ -1839,13 +1679,9 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/firealarm{ @@ -1863,13 +1699,9 @@ /area/aro2/cockpit) "qq" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -1892,8 +1724,6 @@ /area/shuttle/aroboat2) "qA" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1928,15 +1758,12 @@ /area/aro2/dining) "qO" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/eris/under, @@ -1961,8 +1788,6 @@ /area/aro2/powerarea) "rl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1981,8 +1806,6 @@ /area/shuttle/aroboat2) "rt" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -1993,8 +1816,6 @@ /area/aro2/surfluid) "rx" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2011,8 +1832,6 @@ /area/aro2/observation) "rE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2030,8 +1849,6 @@ /area/shuttle/aroboat2) "rK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -2127,8 +1944,6 @@ /area/aro2/dining) "tj" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2148,8 +1963,6 @@ /area/aro2/surfluid) "tw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2168,8 +1981,6 @@ /area/aro2/powerarea) "tN" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2210,8 +2021,6 @@ /area/shuttle/aroboat2) "ue" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2221,21 +2030,15 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, /area/aro2/dining) "uf" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2252,8 +2055,6 @@ /area/aro2/surfluid) "uo" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/techmaint_cargo, @@ -2282,8 +2083,6 @@ "uy" = ( /obj/machinery/door/airlock, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/techmaint_panels, @@ -2293,8 +2092,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair/wood{ @@ -2304,8 +2101,6 @@ /area/aro2/frontroom) "uG" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, @@ -2318,8 +2113,6 @@ /area/aro2/boatdeck) "uL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2404,8 +2197,6 @@ /area/aro2/dining) "vI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -2418,8 +2209,6 @@ /area/aro2/dining) "vN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/crate/bin, @@ -2465,8 +2254,6 @@ /area/aro2/boatdeck) "wz" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2510,8 +2297,6 @@ pixel_x = -28 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/bar_flat, @@ -2529,8 +2314,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/bed/chair/wood{ @@ -2547,8 +2330,6 @@ "xx" = ( /obj/machinery/door/airlock, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2570,8 +2351,6 @@ /area/space) "xN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2614,7 +2393,6 @@ pixel_y = -28 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2636,8 +2414,6 @@ /area/aro2/boatdeck) "yG" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2647,8 +2423,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -2674,21 +2448,15 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) "za" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/wall/r_wall, @@ -2710,8 +2478,6 @@ /area/aro2/observation) "zt" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2738,8 +2504,6 @@ /area/aro2/dining) "zJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2758,8 +2522,6 @@ /area/aro2/boatdeck) "zL" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2785,8 +2547,6 @@ /area/aro2/boatdeck) "Al" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2875,8 +2635,6 @@ pixel_y = 23 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2895,8 +2653,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/techmaint_cargo, @@ -2913,8 +2669,6 @@ /area/aro2/airarea) "BB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2933,8 +2687,6 @@ /area/aro2/portbay) "Cz" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2961,8 +2713,6 @@ "CX" = ( /obj/machinery/door/airlock, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3029,8 +2779,6 @@ /area/aro2/boatdeck) "DX" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3044,7 +2792,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/eris/under, @@ -3060,8 +2807,6 @@ /area/aro2/starboardbay) "El" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/techmaint_cargo, @@ -3099,7 +2844,6 @@ "EU" = ( /obj/machinery/power/rtg/abductor/hybrid/built, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light, @@ -3130,8 +2874,6 @@ /area/aro2/portbay) "Fz" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3141,8 +2883,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3152,8 +2892,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -3173,7 +2911,6 @@ /area/aro2/cockpit) "FP" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -3201,8 +2938,6 @@ "FY" = ( /obj/machinery/door/airlock, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3221,8 +2956,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -3240,8 +2973,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3279,8 +3010,6 @@ /area/aro2/airarea) "GJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3293,7 +3022,6 @@ /area/aro2/powerarea) "GL" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -3308,8 +3036,6 @@ /area/aro2/boatdeck) "GN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, @@ -3322,7 +3048,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/wood, @@ -3348,8 +3073,6 @@ /area/shuttle/aroboat2) "Hm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3370,8 +3093,6 @@ /obj/machinery/door/airlock/multi_tile/glass, /obj/structure/fans/hardlight, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3396,7 +3117,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/eris/under, @@ -3456,8 +3176,6 @@ /area/aro2/cockpit) "Ii" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3473,19 +3191,15 @@ dir = 4 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating/eris/under, /area/aro2/powerarea) "Ir" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3519,8 +3233,6 @@ /area/aro2/dining) "IK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3550,7 +3262,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating/eris/under, @@ -3564,8 +3275,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3588,8 +3297,6 @@ /area/aro2/surfluid) "Jw" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3602,14 +3309,10 @@ /area/aro2/cockpit) "JD" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/techmaint_cargo, @@ -3637,8 +3340,6 @@ /area/shuttle/aroboat2) "Kg" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -3661,8 +3362,6 @@ /area/aro2/airarea) "Km" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3672,8 +3371,6 @@ /area/aro2/portbay) "Kr" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3686,13 +3383,9 @@ /area/aro2/surfluid) "Ku" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3701,8 +3394,6 @@ /area/aro2/boatdeck) "Kv" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3747,8 +3438,6 @@ /area/aro2/boatdeck) "KY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3767,8 +3456,6 @@ /area/aro2/dining) "Lh" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -3790,8 +3477,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3815,8 +3500,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3852,13 +3535,9 @@ /area/aro2/cockpit) "LN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3887,13 +3566,9 @@ /area/aro2/cockpit) "Mp" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3959,7 +3634,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/eris/under, @@ -3972,15 +3646,12 @@ output_level = 190000 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/eris/under, /area/aro2/powerarea) "Ni" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, @@ -3996,8 +3667,6 @@ /area/aro2/surfluid) "Nz" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4040,8 +3709,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -4105,8 +3772,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4119,8 +3784,6 @@ /area/aro2/boatdeck) "OZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4157,8 +3820,6 @@ /area/aro2/boatdeck) "Pr" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4171,8 +3832,6 @@ /area/aro2/boatdeck) "Py" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -4190,7 +3849,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating/eris/under, @@ -4237,8 +3895,6 @@ /area/aro2/powerarea) "Qh" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4248,8 +3904,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -4259,8 +3913,6 @@ /area/space) "QE" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4289,8 +3941,6 @@ /area/aro2/powerarea) "QT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, @@ -4301,8 +3951,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/dark, @@ -4312,8 +3960,6 @@ /area/aro2/dining) "QY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4352,13 +3998,9 @@ /area/aro2/room1) "RN" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4371,8 +4013,6 @@ /area/aro2/surfluid) "RR" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating/eris/under, @@ -4395,8 +4035,6 @@ icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/white/techfloor, @@ -4428,8 +4066,6 @@ pixel_y = 23 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4473,8 +4109,6 @@ /area/aro2/room2) "SE" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4488,8 +4122,6 @@ /area/aro2/surfluid) "SN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4497,8 +4129,6 @@ /area/aro2/powerarea) "Ta" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4514,13 +4144,9 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/dark/gray_perforated, @@ -4534,23 +4160,17 @@ icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/observation) "Tu" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/techmaint_cargo, @@ -4602,8 +4222,6 @@ /area/aro2/portbay) "TU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4640,8 +4258,6 @@ /area/aro2/boatdeck) "Uv" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -4674,16 +4290,12 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, /area/aro2/boatdeck) "Vo" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4718,18 +4330,12 @@ /area/aro2/powerarea) "VJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -4751,18 +4357,12 @@ /area/aro2/powerarea) "VT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -4781,8 +4381,6 @@ /area/aro2/airarea) "VZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -4799,7 +4397,6 @@ id_tag = "aroship" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating/eris/under, @@ -4856,8 +4453,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, @@ -4872,8 +4467,6 @@ /area/aro2/airarea) "Xt" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/dark, @@ -4909,8 +4502,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, @@ -4968,8 +4559,6 @@ /area/aro2/dining) "YQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4997,8 +4586,6 @@ "ZG" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5011,8 +4598,6 @@ /area/aro2/surfluid) "ZJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5026,8 +4611,6 @@ /area/aro2/surfluid) "ZT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating/eris/under, diff --git a/maps/offmap_vr/om_ships/aro3.dmm b/maps/offmap_vr/om_ships/aro3.dmm index 86e851eaab..1cef8ee3e5 100644 --- a/maps/offmap_vr/om_ships/aro3.dmm +++ b/maps/offmap_vr/om_ships/aro3.dmm @@ -1479,8 +1479,6 @@ icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/milspec/color/orange/half, @@ -4433,8 +4431,6 @@ /area/aro3/power) "Br" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/milspec/color/silver/half{ @@ -7361,8 +7357,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/milspec/stripe, diff --git a/maps/offmap_vr/om_ships/bearcat.dmm b/maps/offmap_vr/om_ships/bearcat.dmm index 977ee382f2..25c74eb6d4 100644 --- a/maps/offmap_vr/om_ships/bearcat.dmm +++ b/maps/offmap_vr/om_ships/bearcat.dmm @@ -31,8 +31,6 @@ /area/shuttle/bearcat/command) "af" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -112,7 +110,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light_switch{ @@ -133,7 +130,6 @@ icon_state = "tube1" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -149,8 +145,6 @@ "av" = ( /obj/machinery/door/window/westleft, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -160,8 +154,6 @@ /area/shuttle/bearcat/comms) "aw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -174,19 +166,13 @@ /area/shuttle/bearcat/comms) "ax" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -235,8 +221,6 @@ /area/shuttle/bearcat/command_captain) "aD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -274,8 +258,6 @@ icon_state = "tube1" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -286,8 +268,6 @@ /area/shuttle/bearcat/command) "aG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -300,8 +280,6 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -317,14 +295,10 @@ /area/shuttle/bearcat/command_captain) "aK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -352,8 +326,6 @@ }, /obj/structure/table/woodentable, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/ammo_magazine/ammo_box/b12g/beanbag, @@ -365,8 +337,6 @@ /area/shuttle/bearcat/command_captain) "aN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/device/radio/intercom{ @@ -377,7 +347,6 @@ "aO" = ( /obj/structure/table/woodentable, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/alarms_hidden{ @@ -399,8 +368,6 @@ /area/shuttle/bearcat/comms) "aQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -455,8 +422,6 @@ "aZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -472,8 +437,6 @@ /area/shuttle/bearcat/dock_central) "bb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -502,8 +465,6 @@ /area/shuttle/bearcat/dock_starboard) "bf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -511,19 +472,13 @@ /area/shuttle/bearcat/dock_central) "bg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -534,8 +489,6 @@ /area/shuttle/bearcat/comms) "bi" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -638,8 +591,6 @@ /area/shuttle/bearcat/dock_port) "by" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, @@ -832,7 +783,6 @@ icon_state = "apc0" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light_switch{ @@ -888,8 +838,6 @@ /area/shuttle/bearcat/crew_saloon) "ch" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -904,8 +852,6 @@ /area/shuttle/bearcat/comms) "cj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -986,7 +932,6 @@ /area/shuttle/bearcat/crew_saloon) "cq" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/alarms_hidden{ @@ -1000,14 +945,10 @@ /area/shuttle/bearcat/crew_saloon) "cr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -1064,8 +1005,6 @@ /area/shuttle/bearcat/crew_toilets) "cz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1080,8 +1019,6 @@ level = 2 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1094,8 +1031,6 @@ /area/shuttle/bearcat/dock_port) "cC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1104,8 +1039,6 @@ /area/shuttle/bearcat/crew_saloon) "cD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1117,8 +1050,6 @@ /area/shuttle/bearcat/dock_starboard) "cF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1129,8 +1060,6 @@ /area/shuttle/bearcat/crew_saloon) "cG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1142,8 +1071,6 @@ /area/shuttle/bearcat/crew_corridors) "cH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1159,8 +1086,6 @@ /area/shuttle/bearcat/cargo) "cJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -1273,8 +1198,6 @@ /area/shuttle/bearcat/crew_saloon) "cW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -1325,8 +1248,6 @@ pixel_x = -32 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/handrail{ @@ -1349,8 +1270,6 @@ /area/shuttle/bearcat/crew_corridors) "de" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -1461,8 +1380,6 @@ /area/shuttle/bearcat/cargo) "du" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -1487,7 +1404,6 @@ "dx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 1 }, @@ -1517,7 +1433,6 @@ /area/shuttle/bearcat/crew_kitchen) "dB" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 1 }, @@ -1555,8 +1470,6 @@ "dF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -1572,8 +1485,6 @@ "dH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1614,8 +1525,6 @@ "dM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -1626,16 +1535,12 @@ icon_state = "conpipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1645,8 +1550,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1655,8 +1558,6 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/voidcraft/vertical, @@ -1676,8 +1577,6 @@ /area/shuttle/bearcat/crew_corridors) "dQ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1686,8 +1585,6 @@ /area/shuttle/bearcat/cargo) "dR" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1701,8 +1598,6 @@ /area/shuttle/bearcat/maintenance_engine_pod_port) "dT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1713,8 +1608,6 @@ /area/shuttle/bearcat/cargo) "dU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1735,19 +1628,13 @@ /area/shuttle/bearcat/maintenance_engine) "dW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -1755,8 +1642,6 @@ "dX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1767,14 +1652,10 @@ /area/shuttle/bearcat/cargo) "dY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -1784,8 +1665,6 @@ /area/shuttle/bearcat/maintenance_engine_pod_port) "ea" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -1793,8 +1672,6 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1826,8 +1703,6 @@ /area/shuttle/bearcat/crew_kitchen) "ee" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1870,8 +1745,6 @@ /area/shuttle/bearcat/maintenance_engine) "ej" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1879,8 +1752,6 @@ "ek" = ( /obj/structure/disposalpipe/junction, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -1889,8 +1760,6 @@ icon_state = "map" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -1973,8 +1842,6 @@ /area/shuttle/bearcat/crew_medbay) "ey" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2053,8 +1920,6 @@ "eK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -2065,8 +1930,6 @@ /area/shuttle/bearcat/crew_corridors) "eL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -2132,7 +1995,6 @@ /area/shuttle/bearcat/unused1) "eT" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -2180,8 +2042,6 @@ /area/shuttle/bearcat/maintenance_storage) "eX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -2214,8 +2074,6 @@ /obj/structure/closet/walllocker/emerglocker/east, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -2277,8 +2135,6 @@ /area/shuttle/bearcat/maintenance_storage) "fj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -2318,22 +2174,16 @@ "fn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, /area/shuttle/bearcat/crew_corridors) "fo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2347,8 +2197,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -2359,8 +2207,6 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -2371,8 +2217,6 @@ /area/shuttle/bearcat/crew_corridors) "fr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2381,13 +2225,9 @@ /area/shuttle/bearcat/maintenance_storage) "fs" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2396,8 +2236,6 @@ "ft" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2408,8 +2246,6 @@ /area/shuttle/bearcat/maintenance_storage) "fu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -2417,8 +2253,6 @@ icon_state = "map" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2457,8 +2291,6 @@ icon_state = "map" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -2533,7 +2365,6 @@ icon_state = "apc0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 1 }, @@ -2552,8 +2383,6 @@ /area/shuttle/bearcat/crew_wash) "fJ" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2563,8 +2392,6 @@ /area/shuttle/bearcat/crew_wash) "fK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -2575,8 +2402,6 @@ /area/shuttle/bearcat/crew_wash) "fL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -2608,8 +2433,6 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/voidcraft/vertical, @@ -2621,16 +2444,12 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/bearcat/unused2) "fQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2655,14 +2474,10 @@ /area/shuttle/bearcat/crew_wash) "fU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -2682,8 +2497,6 @@ }, /obj/structure/handrail, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2694,8 +2507,6 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2716,8 +2527,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/walllocker/emerglocker/south, @@ -2732,8 +2541,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2747,8 +2554,6 @@ /area/shuttle/bearcat/maintenance_enginecontrol) "gd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -2757,7 +2562,6 @@ /area/shuttle/bearcat/maintenance_enginecontrol) "ge" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/disposalpipe/segment, @@ -2793,8 +2597,6 @@ /area/shuttle/bearcat/unused2) "gi" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2849,8 +2651,6 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -2859,14 +2659,10 @@ /area/shuttle/bearcat/maintenance_enginecontrol) "gq" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -2897,8 +2693,6 @@ "gu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2910,8 +2704,6 @@ /area/shuttle/bearcat/maintenance_enginecontrol) "gv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -2926,7 +2718,6 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 1 }, @@ -2977,8 +2768,6 @@ /area/shuttle/bearcat/maintenance_atmos) "gB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/valve/open{ @@ -2988,8 +2777,6 @@ /area/shuttle/bearcat/maintenance_atmos) "gC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3006,8 +2793,6 @@ "gD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3019,28 +2804,20 @@ /area/shuttle/bearcat/maintenance_enginecontrol) "gE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/bearcat/maintenance_enginecontrol) "gF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3052,8 +2829,6 @@ /area/shuttle/bearcat/maintenance_enginecontrol) "gH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3070,16 +2845,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/bearcat/maintenance_enginecontrol) "gJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3097,14 +2868,10 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3112,8 +2879,6 @@ /area/shuttle/bearcat/maintenance_power) "gL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -3128,8 +2893,6 @@ }, /obj/structure/closet/radiation, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3156,8 +2919,6 @@ "gP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -3167,8 +2928,6 @@ "gQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm/alarms_hidden{ @@ -3184,8 +2943,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3206,8 +2963,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/computer/ship/engines{ @@ -3245,7 +3000,6 @@ icon_state = "apc0" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/alarm/alarms_hidden{ @@ -3257,8 +3011,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -3275,7 +3027,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -3302,8 +3053,6 @@ "hd" = ( /obj/structure/table/standard, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -3311,13 +3060,9 @@ icon_state = "map" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -3360,8 +3105,6 @@ /area/shuttle/bearcat/maintenance_engine) "hj" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -3476,8 +3219,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3488,7 +3229,6 @@ icon_state = "apc0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -3529,8 +3269,6 @@ /area/shuttle/bearcat/command) "mQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light/small{ @@ -3568,8 +3306,6 @@ "rN" = ( /obj/machinery/atmospherics/valve/open, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -3647,8 +3383,6 @@ pixel_y = -26 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3663,7 +3397,6 @@ icon_state = "apc0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 1 }, @@ -3679,8 +3412,6 @@ /area/shuttle/bearcat/maintenance_engine_pod_starboard) "Gw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -3690,8 +3421,6 @@ name = "Hatch" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3727,8 +3456,6 @@ /area/shuttle/bearcat/dock_starboard) "JS" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/walllocker/emerglocker/south, @@ -3739,16 +3466,12 @@ name = "Hatch" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/shuttle/bearcat/maintenance_engine_pod_starboard) "Mz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -3777,8 +3500,6 @@ name = "Hatch" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3797,8 +3518,6 @@ name = "Hatch" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -3824,16 +3543,12 @@ /area/shuttle/bearcat/maintenance_engine_pod_starboard) "VA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/shuttle/bearcat/maintenance_engine_pod_port) "Xp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3842,8 +3557,6 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, @@ -3861,8 +3574,6 @@ /area/shuttle/bearcat/dock_port) "YH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_y = 0 }, diff --git a/maps/offmap_vr/om_ships/cruiser.dmm b/maps/offmap_vr/om_ships/cruiser.dmm index 266b7327c6..33197df48b 100644 --- a/maps/offmap_vr/om_ships/cruiser.dmm +++ b/maps/offmap_vr/om_ships/cruiser.dmm @@ -373,16 +373,12 @@ req_access = list(67) }, /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/wood, /area/mothership/breakroom) "aR" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -395,8 +391,6 @@ /area/mothership/breakroom) "aS" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -469,8 +463,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -527,7 +519,6 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -559,8 +550,6 @@ /area/mothership/hydroponics) "br" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -712,8 +701,6 @@ /area/mothership/hydroponics) "bF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -723,8 +710,6 @@ /area/mothership/hydroponics) "bG" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -734,8 +719,6 @@ /area/mothership/hydroponics) "bH" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -746,13 +729,9 @@ /area/mothership/hydroponics) "bI" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -762,8 +741,6 @@ /area/mothership/hydroponics) "bJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -773,8 +750,6 @@ /area/mothership/hydroponics) "bK" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -868,13 +843,9 @@ /area/mothership/hydroponics) "bW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -884,8 +855,6 @@ /area/mothership/hydroponics) "bX" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -898,8 +867,6 @@ dir = 2 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -910,8 +877,6 @@ /area/mothership/kitchen) "bZ" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -979,8 +944,6 @@ /area/mothership/hydroponics) "ch" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1138,8 +1101,6 @@ /area/mothership/eva) "cE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -1300,8 +1261,6 @@ /area/mothership/eva) "cQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1442,13 +1401,9 @@ /area/mothership/eva) "dc" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_grid, @@ -1462,7 +1417,6 @@ req_access = list(67) }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -1483,8 +1437,6 @@ pixel_y = 32 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/firealarm{ @@ -1503,8 +1455,6 @@ /area/mothership/bathroom1) "di" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -1519,8 +1469,6 @@ /area/mothership/bathroom1) "dj" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1533,13 +1481,9 @@ /area/mothership/hallway) "dk" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -1555,8 +1499,6 @@ /area/mothership/hallway) "dl" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -1573,13 +1515,9 @@ /area/mothership/hallway) "dm" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -1589,13 +1527,9 @@ /area/mothership/hallway) "dn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1611,8 +1545,6 @@ /area/mothership/hallway) "do" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -1630,8 +1562,6 @@ pixel_y = 32 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/firealarm{ @@ -1706,8 +1636,6 @@ /area/mothership/hallway) "dx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1735,8 +1663,6 @@ /area/mothership/hallway) "dB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1848,8 +1774,6 @@ "dQ" = ( /obj/machinery/door/airlock/multi_tile/metal, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -1863,8 +1787,6 @@ /area/mothership/teleporter) "dS" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -1942,8 +1864,6 @@ /area/mothership/teleporter) "ed" = ( /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -1957,14 +1877,10 @@ /area/mothership/teleporter) "ee" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1972,8 +1888,6 @@ "ef" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1986,8 +1900,6 @@ pixel_y = 26 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning/corner, @@ -2129,8 +2041,6 @@ /area/mothership/dorm1) "et" = ( /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -2150,8 +2060,6 @@ /area/mothership/dorm1) "eu" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -2168,13 +2076,9 @@ /area/mothership/dorm1) "ev" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -2219,7 +2123,6 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/shield_generator/charged{ @@ -2231,13 +2134,9 @@ /area/mothership/teleporter) "eB" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -2251,8 +2150,6 @@ /area/mothership/hallway) "eC" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -2276,7 +2173,6 @@ req_access = list(67) }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2381,8 +2277,6 @@ /area/mothership/chemistry) "eM" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -2496,8 +2390,6 @@ /area/mothership/hallway) "fc" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -2513,8 +2405,6 @@ /area/mothership/vault) "fe" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -2673,7 +2563,6 @@ sheets = 100 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -2686,7 +2575,6 @@ pixel_y = 0 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -2705,7 +2593,6 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -2723,8 +2610,6 @@ /area/mothership/vault) "fB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -2837,13 +2722,9 @@ /area/mothership/chemistry) "fQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2855,8 +2736,6 @@ /area/mothership/hallway) "fR" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -2868,12 +2747,9 @@ /area/mothership/vault) "fS" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/terminal, @@ -2888,13 +2764,9 @@ /area/mothership/vault) "fT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -2905,25 +2777,18 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, /area/mothership/vault) "fU" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal, @@ -2937,13 +2802,9 @@ /area/mothership/vault) "fV" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3012,7 +2873,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3054,7 +2914,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3136,8 +2995,6 @@ /area/mothership/surgery) "gs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/medical, @@ -3152,8 +3009,6 @@ /area/mothership/chemistry) "gu" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/medical, @@ -3240,8 +3095,6 @@ /area/mothership/treatment) "gJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3250,8 +3103,6 @@ /area/mothership/treatment) "gK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -3271,38 +3122,27 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/white, /area/mothership/treatment) "gM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/mothership/treatment) "gN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3311,8 +3151,6 @@ /area/mothership/treatment) "gO" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -3320,21 +3158,15 @@ /area/mothership/treatment) "gP" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/mothership/hallway) "gQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3408,8 +3240,6 @@ /area/mothership/treatment) "gZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3444,8 +3274,6 @@ /area/mothership/hallway) "hc" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3458,18 +3286,12 @@ /area/mothership/hallway) "hd" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -3486,13 +3308,9 @@ /area/mothership/hallway) "he" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -3504,8 +3322,6 @@ pixel_y = -29 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3522,8 +3338,6 @@ req_one_access = list(1) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -3537,13 +3351,9 @@ /area/mothership/security) "hh" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -3556,7 +3366,6 @@ /area/mothership/security) "hi" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -3676,8 +3485,6 @@ /area/mothership/treatment) "ht" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -3697,8 +3504,6 @@ "hA" = ( /obj/machinery/door/airlock/security, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -3721,8 +3526,6 @@ /area/mothership/treatment) "hF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -3763,8 +3566,6 @@ /area/mothership/dorm3) "hJ" = ( /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -3784,8 +3585,6 @@ /area/mothership/dorm3) "hK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -3802,18 +3601,12 @@ /area/mothership/dorm3) "hL" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -3823,8 +3616,6 @@ /area/mothership/hallway) "hM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -3841,7 +3632,6 @@ /area/mothership/dorm4) "hN" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -3894,8 +3684,6 @@ /area/mothership/sechallway) "hR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3969,8 +3757,6 @@ /area/mothership/treatment) "ic" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -4036,8 +3822,6 @@ /area/mothership/dorm4) "ik" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4090,8 +3874,6 @@ /area/mothership/treatment) "it" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -4121,13 +3903,9 @@ /area/mothership/sechallway) "iy" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -4141,8 +3919,6 @@ "iz" = ( /obj/machinery/door/airlock/security, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -4156,8 +3932,6 @@ /area/mothership/processing) "iA" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4212,8 +3986,6 @@ /area/mothership/treatment) "iH" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/medical, @@ -4323,29 +4095,21 @@ opacity = 0 }, /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, /area/mothership/sechallway) "iP" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, /area/mothership/sechallway) "iQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4440,8 +4204,6 @@ /area/mothership/resleeving) "jc" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -4460,7 +4222,6 @@ pixel_x = -28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -4496,8 +4257,6 @@ /area/mothership/sechallway) "jj" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4593,13 +4352,9 @@ /area/mothership/resleeving) "jv" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -4616,8 +4371,6 @@ /area/mothership/resleeving) "jw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4630,8 +4383,6 @@ /area/mothership/resleeving) "jx" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -4646,8 +4397,6 @@ /area/mothership/morgue) "jy" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4700,7 +4449,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/cyan, @@ -4750,13 +4498,9 @@ /area/mothership/resleeving) "jK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -4770,7 +4514,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/white, @@ -4862,21 +4605,15 @@ opacity = 0 }, /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, /area/mothership/sechallway) "jR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5092,8 +4829,6 @@ /area/mothership/medical) "kn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/medical, @@ -5103,13 +4838,9 @@ /area/mothership/medical) "ko" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5123,8 +4854,6 @@ "kp" = ( /obj/machinery/door/airlock/security, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -5138,8 +4867,6 @@ /area/mothership/warden) "kq" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5233,8 +4960,6 @@ /area/mothership/medical) "kB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -5382,8 +5107,6 @@ /area/mothership/medical) "kS" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -5432,8 +5155,6 @@ /area/mothership/dorm5) "kW" = ( /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -5453,8 +5174,6 @@ /area/mothership/dorm5) "kX" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -5471,18 +5190,12 @@ /area/mothership/dorm5) "kY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -5492,8 +5205,6 @@ /area/mothership/hallway) "kZ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -5510,7 +5221,6 @@ /area/mothership/dorm6) "la" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -5620,7 +5330,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/cyan, @@ -5635,8 +5344,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -5682,13 +5389,9 @@ /area/mothership/medical) "lx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5701,8 +5404,6 @@ /area/mothership/medical) "ly" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -5716,13 +5417,9 @@ /area/mothership/medical) "lz" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5738,13 +5435,9 @@ /area/mothership/hallway) "lA" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5761,8 +5454,6 @@ /area/mothership/hallway) "lB" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -5775,13 +5466,9 @@ /area/mothership/armory) "lC" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5925,8 +5612,6 @@ /area/mothership/medical) "lO" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -5940,8 +5625,6 @@ /area/mothership/medical) "lQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5996,8 +5679,6 @@ /area/mothership/armory) "lT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -6046,8 +5727,6 @@ "lZ" = ( /obj/machinery/door/airlock/research, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -6083,8 +5762,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -6232,8 +5909,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -6351,8 +6026,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -6465,7 +6138,6 @@ }, /obj/structure/cable/cyan, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6493,7 +6165,6 @@ /area/mothership/bridge) "mY" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -6524,8 +6195,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -6668,8 +6337,6 @@ /area/mothership/rnd) "nl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6721,8 +6388,6 @@ /area/mothership/bridge) "ns" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6735,8 +6400,6 @@ req_one_access = list(101) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -6744,13 +6407,9 @@ /area/mothership/bridge) "nu" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -6769,8 +6428,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -6864,8 +6521,6 @@ /area/mothership/rnd) "nE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -6910,8 +6565,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -7036,13 +6689,9 @@ /area/mothership/bridge) "nV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -7059,8 +6708,6 @@ req_one_access = list(103) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -7074,13 +6721,9 @@ /area/mothership/armory) "nX" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7093,8 +6736,6 @@ /area/mothership/armory) "nY" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -7108,8 +6749,6 @@ /area/mothership/armory) "nZ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -7131,7 +6770,6 @@ req_access = list(67) }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7401,13 +7039,9 @@ /area/mothership/robotics) "oH" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -7431,13 +7065,9 @@ /area/mothership/hallway) "oI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -7531,8 +7161,6 @@ pixel_y = -28 }, /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -7547,8 +7175,6 @@ name = "Mech Bay" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -7556,8 +7182,6 @@ /area/mothership/robotics) "oT" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -7568,13 +7192,9 @@ /area/mothership/hallway) "oU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7619,13 +7239,9 @@ /area/mothership/hallway) "pa" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -7639,8 +7255,6 @@ /area/mothership/hallway) "pb" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -7662,7 +7276,6 @@ req_access = list(67) }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7802,8 +7415,6 @@ pixel_y = 24 }, /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7816,8 +7427,6 @@ /area/mothership/telecomms1) "pz" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -7836,8 +7445,6 @@ /area/mothership/telecomms1) "pA" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7853,8 +7460,6 @@ /area/mothership/telecomms1) "pB" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -7874,13 +7479,9 @@ /area/mothership/telecomms1) "pC" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7922,8 +7523,6 @@ /area/mothership/cryotube) "pK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -7943,8 +7542,6 @@ /area/mothership/telecomms2) "pL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7960,8 +7557,6 @@ /area/mothership/telecomms2) "pM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -7987,7 +7582,6 @@ pixel_y = 24 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8144,8 +7738,6 @@ /area/mothership/hallway) "qd" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8156,8 +7748,6 @@ /area/mothership/hallway) "qe" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -8169,8 +7759,6 @@ /area/mothership/cryotube) "qf" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8180,8 +7768,6 @@ /area/mothership/cryotube) "qg" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -8214,8 +7800,6 @@ /area/mothership/cryotube) "ql" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8327,8 +7911,6 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -8357,8 +7939,6 @@ "qI" = ( /obj/machinery/door/airlock/engineeringatmos, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -8462,8 +8042,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm{ @@ -8482,7 +8060,6 @@ /obj/structure/table/steel_reinforced, /obj/machinery/recharger, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -9373,8 +8950,6 @@ /area/mothership/bridge) "uN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9443,8 +9018,6 @@ /area/mothership/bridge) "xm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9462,8 +9035,6 @@ /area/mothership/engineering) "xE" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9485,8 +9056,6 @@ /area/mothership/hallway) "xS" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9525,8 +9094,6 @@ /area/mothership/hallway) "yE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/vault{ @@ -9539,8 +9106,6 @@ /area/mothership/vault) "yG" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9555,8 +9120,6 @@ /area/mothership/hallway) "yW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9574,8 +9137,6 @@ /area/mothership/hallway) "zv" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9666,8 +9227,6 @@ /area/mothership/telecomms1) "Ct" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -9675,13 +9234,9 @@ /area/mothership/eva) "Df" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -9691,8 +9246,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -9725,8 +9278,6 @@ /area/mothership/telecomms1) "Ep" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9770,8 +9321,6 @@ /area/mothership/breakroom) "EK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9877,8 +9426,6 @@ icon_state = "warning" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -9897,8 +9444,6 @@ /area/mothership/telecomms2) "HG" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9934,13 +9479,9 @@ /area/mothership/telecomms1) "Kr" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -9964,8 +9505,6 @@ /area/mothership/telecomms2) "KO" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10063,8 +9602,6 @@ /area/mothership/bridge) "QH" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10155,8 +9692,6 @@ /area/mothership/bridge) "Sx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10180,13 +9715,9 @@ /area/mothership/telecomms2) "SE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -10222,8 +9753,6 @@ /area/mothership/breakroom) "SV" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10239,8 +9768,6 @@ /area/mothership/hallway) "Td" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10262,8 +9789,6 @@ /area/mothership/hallway) "Tr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/vault{ @@ -10302,8 +9827,6 @@ /area/mothership/telecomms1) "Vb" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -10315,8 +9838,6 @@ /area/mothership/vault) "Wi" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10393,8 +9914,6 @@ /area/mothership/hallway) "YP" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10410,8 +9929,6 @@ /area/mothership/hallway) "ZL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10452,13 +9969,9 @@ /area/mothership/eva) "ZZ" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ diff --git a/maps/offmap_vr/om_ships/curashuttle.dmm b/maps/offmap_vr/om_ships/curashuttle.dmm index b6299d55df..4d09eaa8a8 100644 --- a/maps/offmap_vr/om_ships/curashuttle.dmm +++ b/maps/offmap_vr/om_ships/curashuttle.dmm @@ -101,15 +101,12 @@ /area/shuttle/curabitur/curashuttle/cockpit) "ao" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet/bcarpet, /area/shuttle/curabitur/curashuttle/cockpit) "ap" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -471,8 +468,6 @@ /area/shuttle/curabitur/curashuttle/cockpit) "aV" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet/bcarpet, @@ -784,16 +779,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/shuttle/curabitur/curashuttle/med) "bD" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -803,8 +794,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -817,8 +806,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -845,8 +832,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -868,8 +853,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -892,8 +875,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -937,8 +918,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal{ @@ -952,8 +931,6 @@ }, /obj/machinery/light, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/binary/pump/fuel{ @@ -968,8 +945,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -984,8 +959,6 @@ id_tag = "curadocking" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -1056,8 +1029,6 @@ "bV" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -1092,8 +1063,6 @@ /area/shuttle/curabitur/curashuttle/eng) "bZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1266,8 +1235,6 @@ }, /obj/machinery/portable_atmospherics/canister/empty, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -1278,8 +1245,6 @@ }, /obj/machinery/light/small, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1353,8 +1318,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/table/standard, diff --git a/maps/offmap_vr/om_ships/hybridshuttle.dmm b/maps/offmap_vr/om_ships/hybridshuttle.dmm index f197f819eb..7b896361a4 100644 --- a/maps/offmap_vr/om_ships/hybridshuttle.dmm +++ b/maps/offmap_vr/om_ships/hybridshuttle.dmm @@ -64,14 +64,12 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/blue_fo) "ak" = ( /obj/machinery/power/smes/buildable/hybrid, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, diff --git a/maps/offmap_vr/om_ships/itglight.dmm b/maps/offmap_vr/om_ships/itglight.dmm index 8a11ecf0b9..611f5508f4 100644 --- a/maps/offmap_vr/om_ships/itglight.dmm +++ b/maps/offmap_vr/om_ships/itglight.dmm @@ -8,8 +8,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -32,8 +30,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -51,7 +47,6 @@ /area/space) "ae" = ( /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/pointdefense{ @@ -223,8 +218,6 @@ /area/itglight/captain) "aH" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/white/cargo, @@ -232,8 +225,6 @@ "aK" = ( /obj/effect/map_helper/airlock/door/simple, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/external/glass{ @@ -302,8 +293,6 @@ /area/itglight/readyroom) "bk" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -324,8 +313,6 @@ /area/itglight/kitchen) "bp" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -335,15 +322,12 @@ id_tag = "dauntless_pd" }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/itglight/captain) "bs" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -359,8 +343,6 @@ /area/itglight/readyroom) "by" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/bed/chair/bay/chair/padded/brown{ @@ -370,8 +352,6 @@ /area/itglight/readyroom) "bA" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -393,16 +373,12 @@ /area/itglight/shuttlebay) "bE" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -412,8 +388,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -427,8 +401,6 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark/monofloor, @@ -444,8 +416,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -459,8 +429,6 @@ "cf" = ( /obj/structure/table/steel_reinforced, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ @@ -483,8 +451,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair/bay/chair/padded/brown{ @@ -497,8 +463,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -514,7 +478,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /obj/structure/bed/double/padded, @@ -547,16 +510,12 @@ "cA" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/cafe, /area/itglight/kitchen) "cM" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -575,8 +534,6 @@ /area/itglight/captain) "cU" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -599,8 +556,6 @@ /area/itglight/shuttlebay) "cW" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -671,8 +626,6 @@ /area/itglight/readyroom) "dD" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -692,8 +645,6 @@ /area/itglight/metingroom) "dP" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -757,8 +708,6 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -771,8 +720,6 @@ "em" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -793,18 +740,12 @@ /area/itglight/porthighsec) "eq" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -868,8 +809,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -903,8 +842,6 @@ /area/itglight/starboardhighsec) "eZ" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -980,13 +917,9 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/cafe, @@ -994,8 +927,6 @@ "fP" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -1007,8 +938,6 @@ /area/itglight/porthighsec) "fY" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -1033,8 +962,6 @@ /area/itglight/cockpit) "gh" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -1053,8 +980,6 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -1080,8 +1005,6 @@ /area/itglight/medbay) "gu" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/wooden_reinforced, @@ -1101,8 +1024,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -1112,13 +1033,9 @@ /area/itglight/starboardengi) "gH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/binary/pump/on{ @@ -1134,8 +1051,6 @@ /area/itglight/portcargo) "gL" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/sblucarpet, @@ -1160,18 +1075,12 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -1218,13 +1127,9 @@ /area/itglight/cockpit) "hm" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/meter, @@ -1274,13 +1179,9 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -1319,8 +1220,6 @@ /area/space) "hO" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet, @@ -1352,8 +1251,6 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -1384,12 +1281,9 @@ /area/itglight/medbay) "ih" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/solar, @@ -1397,8 +1291,6 @@ /area/itglight/starboardsolars) "ii" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/remote/airlock{ @@ -1419,8 +1311,6 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated, @@ -1451,8 +1341,6 @@ "iq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1477,8 +1365,6 @@ /area/itglight/medbay) "it" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1492,8 +1378,6 @@ /area/itglight/cockpit) "iu" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -1513,8 +1397,6 @@ /area/itglight/afthall) "iC" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -1525,8 +1407,6 @@ /area/itglight/shuttlebay) "iI" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1544,8 +1424,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -1570,18 +1448,12 @@ /area/itglight/readyroom) "iT" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/monotile, @@ -1595,8 +1467,6 @@ /area/itglight/metingroom) "iZ" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -1704,26 +1574,18 @@ /area/itglight/starboardhighsec) "jQ" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/itglight/shuttlebay) "jV" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/external/glass{ @@ -1738,8 +1600,6 @@ "ka" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark/gray_platform, @@ -1758,8 +1618,6 @@ /area/itglight/shuttlebay) "kp" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1815,8 +1673,6 @@ /area/itglight/metingroom) "kO" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -1826,13 +1682,9 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -1848,7 +1700,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/white, @@ -1864,8 +1715,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -1881,7 +1730,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -1904,8 +1752,6 @@ "lu" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1921,13 +1767,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -1945,8 +1787,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -1970,13 +1810,9 @@ /area/itglight/cockpit) "lK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/binary/pump/on{ @@ -2064,8 +1900,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -2078,7 +1912,6 @@ id_tag = "dauntless_pd" }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, @@ -2089,8 +1922,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -2098,26 +1929,18 @@ "ms" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/itglight/metingroom) "mu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -2138,8 +1961,6 @@ /area/itglight/starboardhighsec) "mR" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/bed/chair/bay/chair/padded/brown{ @@ -2156,7 +1977,6 @@ pixel_x = -25 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -2174,7 +1994,6 @@ /area/shuttle/itglightshuttle) "ne" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -2208,8 +2027,6 @@ /area/itglight/metingroom) "nq" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2224,8 +2041,6 @@ "nv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2270,8 +2085,6 @@ dir = 9 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -2298,8 +2111,6 @@ /area/itglight/portengi) "nW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -2320,13 +2131,9 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/dark/monofloor, @@ -2352,16 +2159,12 @@ /area/itglight/porthighsec) "oq" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/itglight/shuttlebay) "ov" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2371,8 +2174,6 @@ dir = 10 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated, @@ -2389,8 +2190,6 @@ /area/itglight/cockpit) "oy" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2404,8 +2203,6 @@ /area/itglight/metingroom) "oA" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2428,8 +2225,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -2469,8 +2264,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -2507,7 +2300,6 @@ pixel_x = -25 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /obj/fiftyspawner/phoron, @@ -2525,8 +2317,6 @@ /area/itglight/porthighsec) "pn" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2541,8 +2331,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -2556,8 +2344,6 @@ dir = 9 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -2591,15 +2377,12 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/white/cargo, /area/itglight/medbay) "pU" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -2647,8 +2430,6 @@ /area/itglight/metingroom) "qq" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2659,13 +2440,9 @@ /area/itglight/metingroom) "qt" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/white/cargo, @@ -2690,8 +2467,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -2733,8 +2508,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/stool/baystool/padded{ @@ -2803,13 +2576,9 @@ /area/itglight/restrooms) "rf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -2833,8 +2602,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -2861,26 +2628,18 @@ /area/shuttle/itglightshuttle) "rF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/itglight/starboardengi) "rJ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -2893,8 +2652,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -2948,7 +2705,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/shuttle/floor/black, @@ -2971,13 +2727,9 @@ /area/itglight/starboardhighsec) "sX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -3015,13 +2767,9 @@ pixel_x = 32 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -3035,8 +2783,6 @@ /area/itglight/portengi) "tq" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3056,8 +2802,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -3090,13 +2834,9 @@ /area/itglight/starboardcargo) "tC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -3108,8 +2848,6 @@ /area/itglight/porthighsec) "tE" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3125,16 +2863,12 @@ "tH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, /area/itglight/starboardhighsec) "tL" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3146,8 +2880,6 @@ /area/itglight/metingroom) "tP" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated, @@ -3158,8 +2890,6 @@ "ud" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3174,38 +2904,26 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/itglight/afthall) "uk" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -3239,8 +2957,6 @@ /area/itglight/starboarddocking) "uv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -3252,8 +2968,6 @@ /area/itglight/starboardsolars) "uz" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3324,8 +3038,6 @@ /area/itglight/crew4) "vO" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -3354,8 +3066,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -3442,18 +3152,12 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/device/radio/intercom{ @@ -3473,8 +3177,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -3497,8 +3199,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -3512,8 +3212,6 @@ "wL" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3534,8 +3232,6 @@ dir = 10 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -3559,18 +3255,12 @@ /area/itglight/common) "wX" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -3590,8 +3280,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard/glass{ @@ -3638,8 +3326,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -3705,7 +3391,6 @@ pixel_y = 25 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden, @@ -3723,8 +3408,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -3769,8 +3452,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -3788,8 +3469,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -3849,8 +3528,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -3885,8 +3562,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -3923,7 +3598,6 @@ pixel_y = 25 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden, @@ -3933,8 +3607,6 @@ "yZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -3958,16 +3630,12 @@ /area/itglight/starboardengi) "zn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/itglight/portsolars) "zp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -3989,7 +3657,6 @@ /obj/machinery/power/terminal, /obj/structure/cable/heavyduty, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -4027,13 +3694,9 @@ pixel_x = -32 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -4056,7 +3719,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -4066,13 +3728,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -4129,20 +3787,14 @@ /area/itglight/portengi) "As" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/monotile, @@ -4150,8 +3802,6 @@ "Au" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm/angled/hidden{ @@ -4162,8 +3812,6 @@ /area/itglight/crew4) "AF" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -4177,8 +3825,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard/glass{ @@ -4212,7 +3858,6 @@ pixel_y = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/monotile, @@ -4223,22 +3868,16 @@ /area/itglight/kitchen) "AM" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -4282,7 +3921,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/monotile, @@ -4298,8 +3936,6 @@ /area/itglight/starboarddocking) "Bo" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden, @@ -4316,8 +3952,6 @@ "BA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm/angled/hidden{ @@ -4332,16 +3966,12 @@ }, /obj/machinery/light, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/shuttle/floor/black, /area/shuttle/itglightshuttle) "BM" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4351,13 +3981,9 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -4401,7 +4027,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /obj/structure/bed/double/padded, @@ -4423,8 +4048,6 @@ /obj/machinery/door/firedoor/glass, /obj/effect/map_helper/airlock/door/ext_door, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/external/glass{ @@ -4435,18 +4058,12 @@ /area/itglight/portdocking) "Cg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -4454,8 +4071,6 @@ "Cl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm/angled/hidden{ @@ -4473,8 +4088,6 @@ /area/itglight/porthighsec) "Cq" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -4521,7 +4134,6 @@ /obj/machinery/power/terminal, /obj/structure/cable/heavyduty, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -4529,13 +4141,9 @@ "CJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -4549,8 +4157,6 @@ /area/itglight/portdocking) "CO" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/embedded_controller/radio/airlock/docking_port{ @@ -4579,18 +4185,12 @@ /area/itglight/starboardengi) "CX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -4598,8 +4198,6 @@ "Db" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/map_helper/airlock/door/int_door, @@ -4644,16 +4242,12 @@ /area/itglight/starboardengi) "Do" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, /area/itglight/portcargo) "Dp" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4681,8 +4275,6 @@ /area/itglight/crew3) "Dy" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -4692,13 +4284,9 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/catwalk_plated, @@ -4712,8 +4300,6 @@ "DF" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4734,16 +4320,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, /area/itglight/portcargo) "DJ" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4759,23 +4341,15 @@ /area/itglight/forehall) "DK" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -4785,8 +4359,6 @@ /area/itglight/forehall) "DP" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4803,8 +4375,6 @@ "DQ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4823,16 +4393,12 @@ /area/itglight/starboardcargo) "DZ" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/itglight/shuttlebay) "Ej" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -4842,13 +4408,9 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated, @@ -4863,8 +4425,6 @@ "En" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm/angled/hidden{ @@ -4891,8 +4451,6 @@ /obj/machinery/door/firedoor/glass, /obj/effect/map_helper/airlock/door/int_door, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -4915,8 +4473,6 @@ /area/itglight/passengersleeping) "EH" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/embedded_controller/radio/airlock/docking_port{ @@ -4936,8 +4492,6 @@ "EI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -4953,28 +4507,20 @@ /area/itglight/shuttlebay) "EL" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, /area/itglight/starboarddocking) "EP" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -5012,13 +4558,9 @@ /area/itglight/medbay) "EV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/heavyduty{ @@ -5029,28 +4571,20 @@ "EX" = ( /obj/effect/shuttle_landmark/shuttle_initializer/itglightshuttle, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, /area/shuttle/itglightshuttle) "EZ" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -5067,8 +4601,6 @@ /obj/machinery/door/firedoor/glass, /obj/effect/map_helper/airlock/door/ext_door, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/external/glass{ @@ -5085,7 +4617,6 @@ "Fh" = ( /obj/machinery/power/smes/buildable/offmap_spawn, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -5105,8 +4636,6 @@ dir = 9 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -5146,12 +4675,9 @@ /area/itglight/lockers) "FH" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/power/solar, @@ -5159,13 +4685,9 @@ /area/itglight/portsolars) "FI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -5176,8 +4698,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -5197,8 +4717,6 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5214,8 +4732,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -5248,8 +4764,6 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -5341,8 +4855,6 @@ /area/itglight/medbay) "Gu" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -5363,8 +4875,6 @@ /area/itglight/portdocking) "GD" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5378,8 +4888,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -5398,8 +4906,6 @@ /area/itglight/portdocking) "GO" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -5424,18 +4930,12 @@ icon_state = "0-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -5488,8 +4988,6 @@ "HB" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -5520,8 +5018,6 @@ /area/itglight/starboarddocking) "HJ" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -5531,22 +5027,16 @@ /area/itglight/shuttlebay) "HM" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -5566,8 +5056,6 @@ /area/itglight/portdocking) "HP" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden, @@ -5616,8 +5104,6 @@ /area/itglight/starboarddocking) "Ia" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5630,8 +5116,6 @@ /area/itglight/portcargo) "Ij" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5644,8 +5128,6 @@ /area/itglight/afthall) "Iu" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5673,8 +5155,6 @@ /area/itglight/portdocking) "Iy" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5693,11 +5173,9 @@ /area/itglight/portengi) "IF" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -5716,7 +5194,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -5730,8 +5207,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -5753,8 +5228,6 @@ /area/itglight/portengi) "IS" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -5768,7 +5241,6 @@ pixel_y = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -5797,8 +5269,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -5824,8 +5294,6 @@ dir = 10 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -5864,8 +5332,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -5875,13 +5341,9 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -5892,8 +5354,6 @@ /area/itglight/kitchen) "JL" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -5923,7 +5383,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /obj/structure/bed/double/padded, @@ -5979,7 +5438,6 @@ pixel_y = 25 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -5988,8 +5446,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/steel/gray_platform, @@ -6013,15 +5469,12 @@ id_tag = "dauntless_pd" }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/itglight/shuttlebay) "Kx" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/vending/dinnerware{ @@ -6043,7 +5496,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -6085,15 +5537,12 @@ /area/itglight/portcargo) "KQ" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced, /area/itglight/shuttlebay) "Lg" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -6101,8 +5550,6 @@ /area/itglight/portsolars) "Lh" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -6148,8 +5595,6 @@ /area/itglight/portdocking) "LG" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6183,8 +5628,6 @@ /area/itglight/starboardcargo) "LU" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6208,13 +5651,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6231,8 +5670,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6251,7 +5688,6 @@ pixel_x = 25 }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /obj/structure/bed/double/padded, @@ -6269,8 +5705,6 @@ dir = 10 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6300,8 +5734,6 @@ /area/itglight/passengersleeping) "Mu" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6319,8 +5751,6 @@ "Mv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -6345,8 +5775,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6358,16 +5786,12 @@ /area/itglight/common) "MG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, /area/itglight/starboardsolars) "MI" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -6379,8 +5803,6 @@ /area/itglight/lockers) "MO" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -6397,8 +5819,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6413,8 +5833,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -6430,8 +5848,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -6487,8 +5903,6 @@ dir = 10 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -6504,7 +5918,6 @@ "NJ" = ( /obj/machinery/power/smes/buildable/offmap_spawn, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -6524,8 +5937,6 @@ /area/itglight/starboardengi) "NQ" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/cafe, @@ -6553,8 +5964,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -6580,7 +5989,6 @@ dir = 6 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/angled{ @@ -6593,8 +6001,6 @@ /area/itglight/passengersleeping) "Oe" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -6617,7 +6023,6 @@ "Oj" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -6633,8 +6038,6 @@ dir = 6 }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/computer/security/telescreen/entertainment{ @@ -6645,8 +6048,6 @@ "Om" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -6669,8 +6070,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/newscaster{ @@ -6689,8 +6088,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6701,8 +6098,6 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -6715,13 +6110,9 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6745,8 +6136,6 @@ "OC" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6786,8 +6175,6 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/shuttle/floor/black, @@ -6824,8 +6211,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard/glass{ @@ -6877,8 +6262,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -6909,7 +6292,6 @@ "PN" = ( /obj/machinery/power/tracker, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -6942,8 +6324,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6959,7 +6339,6 @@ pixel_y = 25 }, /obj/structure/cable/pink{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -6988,23 +6367,15 @@ "Qs" = ( /obj/effect/catwalk_plated, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -7024,8 +6395,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard/glass{ @@ -7044,8 +6413,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7059,8 +6426,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/cafe, @@ -7151,8 +6516,6 @@ "Rp" = ( /obj/structure/table/wooden_reinforced, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -7186,8 +6549,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -7212,13 +6573,9 @@ /area/itglight/showers) "Ry" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/heavyduty{ @@ -7241,7 +6598,6 @@ anchored = 1 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -7257,8 +6613,6 @@ /area/itglight/medbay) "Sw" = ( /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7268,8 +6622,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -7289,8 +6641,6 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -7300,8 +6650,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -7314,26 +6662,18 @@ icon_state = "0-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, /area/itglight/starboardsolars) "SF" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7358,8 +6698,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -7396,8 +6734,6 @@ "SO" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7419,8 +6755,6 @@ /area/itglight/lockers) "SY" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -7476,8 +6810,6 @@ dir = 9 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -7514,20 +6846,14 @@ "TS" = ( /obj/effect/catwalk_plated, /obj/structure/cable/pink{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -7583,8 +6909,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -7598,8 +6922,6 @@ "UI" = ( /obj/machinery/body_scanconsole, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/white/cargo, @@ -7618,8 +6940,6 @@ /area/itglight/showers) "UO" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7662,8 +6982,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -7691,8 +7009,6 @@ /area/itglight/showers) "Vq" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7725,8 +7041,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -7746,8 +7060,6 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -7776,8 +7088,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/itg{ @@ -7825,8 +7135,6 @@ /area/itglight/portengi) "Wb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -7842,20 +7150,15 @@ id_tag = "dauntless_pd" }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, /area/itglight/portsolars) "Wf" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -7901,8 +7204,6 @@ /area/itglight/passengersleeping) "WD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -7916,8 +7217,6 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -8020,7 +7319,6 @@ pixel_x = -25 }, /obj/structure/cable/pink{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/white, @@ -8030,8 +7328,6 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -8049,8 +7345,6 @@ /area/itglight/common) "Xv" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -8084,19 +7378,15 @@ dir = 1 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/itglight/restrooms) "XE" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -8104,8 +7394,6 @@ /area/itglight/starboardsolars) "XF" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -8118,7 +7406,6 @@ anchored = 1 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -8126,8 +7413,6 @@ /area/itglight/starboardengi) "XM" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -8151,15 +7436,12 @@ id_tag = "dauntless_pd" }, /obj/structure/cable/pink{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/itglight/starboardsolars) "XP" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -8171,13 +7453,9 @@ /area/itglight/captain) "XT" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -8234,8 +7512,6 @@ /area/itglight/portengi) "Ys" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -8250,7 +7526,6 @@ /area/itglight/portsolars) "Yw" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar, @@ -8258,13 +7533,9 @@ /area/itglight/starboardsolars) "Yy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -8305,8 +7576,6 @@ plane = -34 }, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/cafe, @@ -8342,8 +7611,6 @@ "YR" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -8354,28 +7621,20 @@ /area/itglight/restrooms) "YT" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/itglight/afthall) "YU" = ( /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/pink{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/pink{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -8402,8 +7661,6 @@ "Zc" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_bay/standard{ @@ -8419,26 +7676,18 @@ /area/itglight/kitchen) "Zf" = ( /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/itglight/showers) "Zh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -8448,8 +7697,6 @@ dir = 5 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -8457,8 +7704,6 @@ "Zj" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8489,7 +7734,6 @@ /area/itglight/kitchen) "Zq" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -8509,8 +7753,6 @@ dir = 4 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/brown_platform, @@ -8561,13 +7803,9 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -8613,8 +7851,6 @@ dir = 8 }, /obj/structure/cable/pink{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm/angled/hidden{ @@ -8625,8 +7861,6 @@ "ZZ" = ( /obj/machinery/sleep_console, /obj/structure/cable/pink{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/white/cargo, diff --git a/maps/offmap_vr/om_ships/lunaship.dmm b/maps/offmap_vr/om_ships/lunaship.dmm index 795836a5a0..663215fbf0 100644 --- a/maps/offmap_vr/om_ships/lunaship.dmm +++ b/maps/offmap_vr/om_ships/lunaship.dmm @@ -12,8 +12,6 @@ /area/lunaship/park) "af" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -38,8 +36,6 @@ /area/space) "aL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -50,13 +46,9 @@ /area/lunaship/engineering) "aQ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -88,8 +80,6 @@ /area/lunaship/robotics_bay) "aY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -118,16 +108,12 @@ }, /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, /area/space) "bD" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -146,8 +132,6 @@ /area/lunaship/bar) "bK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/milspec, @@ -167,8 +151,6 @@ /area/lunaship/cockpit) "cj" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/hull_corner/long_vert{ @@ -181,8 +163,6 @@ /area/lunaship/park) "cB" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/space, @@ -203,8 +183,6 @@ /area/lunaship/engineering) "cU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -231,21 +209,15 @@ icon_state = "0-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/lunaship/engineering) "dB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/orange/corner{ @@ -303,8 +275,6 @@ /area/lunaship/engineering) "eN" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -333,8 +303,6 @@ /area/lunaship/cockpit) "fc" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -373,16 +341,12 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/lunaship/engineering) "gc" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -395,8 +359,6 @@ /area/lunaship/robotics_bay) "gj" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -434,16 +396,12 @@ }, /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/space, /area/space) "gQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice, @@ -451,8 +409,6 @@ /area/space) "gT" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -485,8 +441,6 @@ /area/lunaship/cockpit) "hs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor/orange{ @@ -539,8 +493,6 @@ /area/lunaship/bar) "ih" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -594,8 +546,6 @@ /area/lunaship/medical) "iw" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/milspec/color/black/half{ @@ -631,8 +581,6 @@ /area/space) "iN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -704,8 +652,6 @@ /area/lunaship/cockpit) "ku" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/outdoors/grass/heavy{ @@ -717,13 +663,9 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -762,8 +704,6 @@ /area/lunaship/medical) "kR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -838,8 +778,6 @@ /area/lunaship/bar) "lW" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -903,8 +841,6 @@ /area/lunaship/robotics_bay) "mr" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -921,21 +857,15 @@ }, /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, /area/space) "mB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -985,8 +915,6 @@ /area/lunaship/cockpit) "nn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1043,13 +971,9 @@ "nC" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, @@ -1068,8 +992,6 @@ "nR" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner{ @@ -1079,8 +1001,6 @@ /area/space) "nZ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet/turcarpet, @@ -1103,8 +1023,6 @@ "oj" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/space, @@ -1136,8 +1054,6 @@ /area/lunaship/park) "pj" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1190,13 +1106,9 @@ /area/space) "pV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -1214,8 +1126,6 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/space, @@ -1264,8 +1174,6 @@ /area/lunaship/hallway_starboard) "rn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/hull_corner/long_vert{ @@ -1301,8 +1209,6 @@ /area/space) "rB" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1318,13 +1224,9 @@ /area/lunaship/park) "rD" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1333,20 +1235,14 @@ /area/lunaship/office) "rK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -1415,8 +1311,6 @@ /area/lunaship/medical) "sD" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1463,8 +1357,6 @@ /area/lunaship/engineering) "sW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/milspec/color/black/corner{ @@ -1500,21 +1392,15 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, /area/space) "tm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -1538,13 +1424,9 @@ /area/lunaship/engineering) "tW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -1565,13 +1447,9 @@ /area/lunaship/medical) "um" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice, @@ -1593,8 +1471,6 @@ /area/lunaship/hallway_port) "uW" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -1632,8 +1508,6 @@ "vt" = ( /obj/effect/floor_decal/milspec_sterile/green/half, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1642,8 +1516,6 @@ /area/lunaship/medical) "vw" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating/eris/under, @@ -1667,15 +1539,11 @@ /area/lunaship/cockpit) "vD" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -1712,8 +1580,6 @@ /obj/fiftyspawner/glass, /obj/fiftyspawner/titanium, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/milspec/color/black/half{ @@ -1730,8 +1596,6 @@ "vU" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/space, @@ -1742,8 +1606,6 @@ name = "Robotics" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1752,8 +1614,6 @@ /area/lunaship/robotics_bay) "wd" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1790,8 +1650,6 @@ "wM" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner{ @@ -1801,8 +1659,6 @@ /area/space) "wP" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -1844,8 +1700,6 @@ /area/lunaship/bar) "xg" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1874,8 +1728,6 @@ /area/lunaship/hallway_port) "xJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1888,16 +1740,12 @@ /area/lunaship/office) "xR" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/reinforced/airless, /area/space) "xV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/hull_corner/long_vert{ @@ -1919,13 +1767,9 @@ /area/lunaship/bar) "yl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -1968,8 +1812,6 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2019,8 +1861,6 @@ /area/space) "zp" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2062,8 +1902,6 @@ /area/lunaship/engineering) "zG" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -2074,8 +1912,6 @@ /area/space) "zJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2125,8 +1961,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2157,8 +1991,6 @@ /area/lunaship/cockpit) "As" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2205,16 +2037,12 @@ req_access = list(777) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/panels, /area/lunaship/hallway_port) "Bg" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2245,8 +2073,6 @@ /area/lunaship/park) "BO" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -2268,8 +2094,6 @@ /area/lunaship/robotics_bay) "Cf" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/space, @@ -2288,16 +2112,12 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/lunaship/hallway_port) "CJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/lattice, @@ -2323,8 +2143,6 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/space, @@ -2374,16 +2192,12 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/lunaship/hallway_starboard) "Ez" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2438,8 +2252,6 @@ /area/lunaship/cockpit) "EQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/space, @@ -2447,8 +2259,6 @@ "ER" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, @@ -2458,21 +2268,15 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/white/gray_platform, /area/lunaship/engineering) "Fb" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -2490,8 +2294,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/space, @@ -2512,8 +2314,6 @@ /area/lunaship/hallway_starboard) "Ge" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/lattice, @@ -2524,16 +2324,12 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/space, /area/space) "Gu" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/hull_corner/long_vert{ @@ -2543,8 +2339,6 @@ /area/space) "GI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/reinforced/airless, @@ -2599,8 +2393,6 @@ "Hf" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/space, @@ -2638,8 +2430,6 @@ /area/lunaship/office) "HQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -2650,8 +2440,6 @@ /area/space) "HR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2697,8 +2485,6 @@ "Iv" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/space, @@ -2727,8 +2513,6 @@ /area/lunaship/engineering) "IY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, @@ -2746,13 +2530,9 @@ /area/lunaship/cockpit) "Jn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -2778,8 +2558,6 @@ /area/lunaship/engineering) "JK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2809,8 +2587,6 @@ /area/space) "JW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2834,8 +2610,6 @@ name = "Bar & Rec" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2862,13 +2636,9 @@ /area/lunaship/bar) "KY" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/reinforced/airless, @@ -2881,8 +2651,6 @@ /area/lunaship/engineering) "Lt" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/hull_corner/long_vert{ @@ -2928,13 +2696,9 @@ "Mx" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, @@ -3129,13 +2893,9 @@ /area/lunaship/office) "OH" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3144,8 +2904,6 @@ /area/lunaship/hallway_port) "OK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/milspec, @@ -3193,8 +2951,6 @@ /area/lunaship/office) "PL" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3204,16 +2960,12 @@ /area/lunaship/medical) "PS" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced/airless, /area/space) "PT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -3316,16 +3068,12 @@ /area/lunaship/office) "Rm" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/space, /area/space) "RA" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ @@ -3341,8 +3089,6 @@ /area/lunaship/engineering) "RI" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3368,8 +3114,6 @@ /area/lunaship/cockpit) "RS" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3387,13 +3131,9 @@ /area/lunaship/engineering) "SC" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3406,13 +3146,9 @@ /area/lunaship/office) "SN" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice, @@ -3450,8 +3186,6 @@ /area/lunaship/cockpit) "Tg" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/reinforced/airless, @@ -3483,8 +3217,6 @@ }, /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/space, @@ -3505,13 +3237,9 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3570,8 +3298,6 @@ /area/lunaship/bar) "Uy" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/outdoors/grass/heavy/atoll, @@ -3609,8 +3335,6 @@ }, /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/space, @@ -3623,8 +3347,6 @@ /area/lunaship/office) "Vm" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3640,8 +3362,6 @@ /area/lunaship/cockpit) "Vx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -3652,8 +3372,6 @@ /area/lunaship/office) "Vz" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3680,8 +3398,6 @@ "VV" = ( /obj/structure/fans/hardlight, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ @@ -3777,8 +3493,6 @@ /area/lunaship/cockpit) "Xe" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -3788,8 +3502,6 @@ /area/space) "Xg" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3799,8 +3511,6 @@ /area/lunaship/bar) "Xi" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/hull_corner/long_vert{ @@ -3810,13 +3520,9 @@ /area/space) "Xn" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/reinforced/airless, @@ -3831,8 +3537,6 @@ name = "Engines & Surfluid" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3906,8 +3610,6 @@ }, /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/space, @@ -3933,8 +3635,6 @@ "Zm" = ( /obj/structure/lattice, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/space, @@ -3963,8 +3663,6 @@ /area/lunaship/cockpit) "Zy" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -3983,8 +3681,6 @@ /area/lunaship/park) "ZA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice, @@ -4023,8 +3719,6 @@ /area/space) "ZM" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/lattice, @@ -4060,13 +3754,9 @@ /area/space) "ZX" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, diff --git a/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm b/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm index 6993433087..bbc9b83fc9 100644 --- a/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm +++ b/maps/offmap_vr/om_ships/sdf_corvette_wreck.dmm @@ -200,7 +200,9 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/unary/vent_scrubber, -/obj/item/weapon/gun/energy/gun/compact, +/obj/item/weapon/gun/energy/gun/compact{ + random_start_ammo = 1 + }, /turf/simulated/floor/tiled/techfloor{ nitrogen = 0; oxygen = 0 @@ -475,7 +477,9 @@ icon_state = "1-2" }, /obj/effect/landmark/corpse/vintage/marine, -/obj/item/weapon/gun/energy/laser/old, +/obj/item/weapon/gun/energy/laser/old{ + random_start_ammo = 1 + }, /turf/simulated/floor/tiled/techfloor{ nitrogen = 0; oxygen = 0 @@ -565,7 +569,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/energy/laser/old, +/obj/item/weapon/gun/energy/laser/old{ + random_start_ammo = 1 + }, /turf/simulated/floor/tiled/techfloor{ nitrogen = 0; oxygen = 0 @@ -666,7 +672,9 @@ pixel_y = 21 }, /obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/item/weapon/gun/energy/gun/compact, +/obj/item/weapon/gun/energy/gun/compact{ + random_start_ammo = 1 + }, /turf/simulated/floor/tiled/techfloor{ nitrogen = 0; oxygen = 0 @@ -755,8 +763,10 @@ dir = 1; pixel_y = -28 }, -/obj/item/weapon/gun/energy/laser/old, /obj/item/weapon/material/shard/shrapnel, +/obj/item/weapon/gun/energy/laser/old{ + random_start_ammo = 1 + }, /turf/simulated/floor/tiled/techfloor{ nitrogen = 0; oxygen = 0 @@ -969,7 +979,9 @@ }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/closet/walllocker/emerglocker/south, -/obj/item/weapon/gun/energy/laser/old, +/obj/item/weapon/gun/energy/laser/old{ + random_start_ammo = 1 + }, /turf/simulated/floor/tiled/techfloor{ nitrogen = 0; oxygen = 0 diff --git a/maps/offmap_vr/om_ships/shelter_5.dmm b/maps/offmap_vr/om_ships/shelter_5.dmm index 104a90a96a..6299b5bb8e 100644 --- a/maps/offmap_vr/om_ships/shelter_5.dmm +++ b/maps/offmap_vr/om_ships/shelter_5.dmm @@ -182,8 +182,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -220,8 +218,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, diff --git a/maps/offmap_vr/om_ships/shelter_6.dmm b/maps/offmap_vr/om_ships/shelter_6.dmm index c07a750cd0..78a82302f6 100644 --- a/maps/offmap_vr/om_ships/shelter_6.dmm +++ b/maps/offmap_vr/om_ships/shelter_6.dmm @@ -193,7 +193,7 @@ /turf/simulated/floor/reinforced, /area/shuttle/tabiranth) "af" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram{ +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ desc = "A large machine releasing a constant gust of air."; icon = 'icons/obj/survival_pod.dmi'; icon_state = "fans"; @@ -536,8 +536,6 @@ /area/shuttle/tabiranth) "aC" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/telecomms/relay{ @@ -962,13 +960,9 @@ /area/shuttle/tabiranth) "aW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -982,7 +976,6 @@ pixel_x = -28 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/white, @@ -998,8 +991,6 @@ /area/shuttle/tabiranth) "aZ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -1022,8 +1013,6 @@ /area/shuttle/tabiranth) "bd" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/perfect_tele_beacon/stationary{ @@ -1092,7 +1081,8 @@ "bl" = ( /obj/machinery/power/smes/buildable/hybrid{ input_level = 200000; - output_level = 200000 + output_level = 200000; + recharge_rate = 20000 }, /obj/structure/cable/cyan{ icon_state = "0-4" @@ -1101,8 +1091,6 @@ /area/shuttle/tabiranth) "bm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/power/terminal{ @@ -1266,8 +1254,6 @@ /area/shuttle/tabiranth) "bA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/alien/blue{ diff --git a/maps/offmap_vr/om_ships/vespa.dmm b/maps/offmap_vr/om_ships/vespa.dmm index 6fe6a9831a..5a1393ff78 100644 --- a/maps/offmap_vr/om_ships/vespa.dmm +++ b/maps/offmap_vr/om_ships/vespa.dmm @@ -204,16 +204,12 @@ icon_state = "techfloor_edges" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -243,8 +239,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -254,8 +248,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -270,7 +262,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -323,8 +314,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -344,8 +333,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -400,8 +387,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -430,7 +415,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -486,8 +470,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -538,8 +520,6 @@ }, /obj/machinery/light/small, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -712,7 +692,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -737,8 +716,6 @@ /area/ship/expe/northairlock) "bR" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -848,16 +825,12 @@ /area/ship/expe/cabin9) "cl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/ship/expe/maintenancerim) "cm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -889,7 +862,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -900,8 +872,6 @@ /area/ship/expe/maintenance2) "cq" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -1013,7 +983,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1044,7 +1013,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1074,7 +1042,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1104,7 +1071,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1135,7 +1101,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1166,7 +1131,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1196,7 +1160,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1226,7 +1189,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1257,7 +1219,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal/cabinet, @@ -1274,8 +1235,6 @@ "de" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1338,7 +1297,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -1444,8 +1402,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1474,8 +1430,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1504,8 +1458,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1534,8 +1486,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1564,8 +1514,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1594,8 +1542,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1624,8 +1570,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1654,8 +1598,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1684,8 +1626,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1699,8 +1639,6 @@ "dY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1783,8 +1721,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1804,8 +1740,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1824,8 +1758,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1845,8 +1777,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1865,8 +1795,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1886,8 +1814,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1906,8 +1832,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1927,8 +1851,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1947,8 +1869,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1960,8 +1880,6 @@ /area/ship/expe/cabin9) "eN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -1971,8 +1889,6 @@ "eO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -1987,8 +1903,6 @@ /area/ship/expe/northairlock) "eQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2070,8 +1984,6 @@ /area/ship/expe/hangarcontrol) "fd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2095,7 +2007,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2119,8 +2030,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2133,8 +2042,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2147,8 +2054,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2161,8 +2066,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2175,8 +2078,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2189,8 +2090,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2203,8 +2102,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2217,8 +2114,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2231,8 +2126,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2243,8 +2136,6 @@ /area/ship/expe/cabin9) "fr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -2268,8 +2159,6 @@ "ft" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -2297,8 +2186,6 @@ /area/ship/expe/corridor4) "fw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -2370,7 +2257,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -2466,7 +2352,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/corner/blue/border{ @@ -2521,8 +2406,6 @@ icon_state = "map-fuel" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -2536,8 +2419,6 @@ /area/ship/expe/engines2) "fT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2548,8 +2429,6 @@ /area/ship/expe/engines) "fU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, @@ -2619,8 +2498,6 @@ /area/ship/expe/hangarcontrol) "gb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2676,13 +2553,9 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor{ @@ -2738,8 +2611,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -2812,8 +2683,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -2835,8 +2704,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/corner_techfloor_grid/full{ @@ -2867,8 +2734,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -2896,8 +2761,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -2951,8 +2814,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -3010,8 +2871,6 @@ icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor, @@ -3115,8 +2974,6 @@ icon_state = "intact-supply" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3179,8 +3036,6 @@ /area/ship/expe/hangarcontrol) "gO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -3259,8 +3114,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner_techfloor_grid/full{ @@ -3307,8 +3160,6 @@ /obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -3338,8 +3189,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -3373,8 +3222,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/ship/helm{ @@ -3451,7 +3298,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -3468,8 +3314,6 @@ icon_state = "map-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -3486,8 +3330,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -3501,8 +3343,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -3517,8 +3357,6 @@ /area/ship/expe/corridor1) "hw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -3540,8 +3378,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -3549,8 +3385,6 @@ icon_state = "techfloor_edges" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -3570,8 +3404,6 @@ /area/ship/expe/hangarcontrol) "hA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3610,8 +3442,6 @@ icon_state = "techfloor_edges" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, @@ -3638,8 +3468,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rpshull, @@ -3662,7 +3490,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -3832,12 +3659,9 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorblack/corner, @@ -3945,8 +3769,6 @@ icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ @@ -3956,8 +3778,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -4058,7 +3878,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ @@ -4238,8 +4057,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -4259,8 +4076,6 @@ /area/ship/expe/bridge) "is" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, @@ -4302,8 +4117,6 @@ icon_state = "techfloor_edges" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, @@ -4315,8 +4128,6 @@ icon_state = "techfloor_edges" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -4422,7 +4233,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -4493,7 +4303,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -4621,7 +4430,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -4835,8 +4643,6 @@ icon_state = "techfloor_edges" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4915,8 +4721,6 @@ /area/ship/expe/engineeringstorage) "jp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -4933,8 +4737,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -4961,8 +4763,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -5016,8 +4816,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -5028,7 +4826,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -5041,8 +4838,6 @@ /area/ship/expe/sm) "jB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -5143,8 +4938,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/blue{ @@ -5198,8 +4991,6 @@ /area/ship/expe/bridge) "jQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, @@ -5256,8 +5047,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -5295,8 +5084,6 @@ /area/ship/expe/seceq) "kf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -5329,8 +5116,6 @@ /area/ship/expe/secmain) "ki" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -5393,8 +5178,6 @@ icon_state = "intact-supply" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -5570,8 +5353,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -5583,8 +5364,6 @@ icon_state = "bordercolor" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -5607,8 +5386,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -5633,7 +5410,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -5743,8 +5519,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -5792,21 +5566,15 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/ship/expe/sm) "kV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -5854,8 +5622,6 @@ icon_state = "cap-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -5884,8 +5650,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -5935,8 +5699,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -6099,8 +5861,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -6228,7 +5988,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -6243,8 +6002,6 @@ /area/ship/expe/engineeringequipment) "lN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -6297,16 +6054,12 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/ship/expe/sm) "lV" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -6347,8 +6100,6 @@ icon_state = "map-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -6368,8 +6119,6 @@ /area/ship/expe/bridge) "mc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/ship/sensors{ @@ -6491,8 +6240,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -6554,13 +6301,9 @@ /area/ship/expe/seceq) "mp" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -6611,13 +6354,9 @@ /area/ship/expe/secmain) "mu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ @@ -6698,8 +6437,6 @@ /area/ship/expe/medicalmain) "mA" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -6723,8 +6460,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -6741,8 +6476,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -6970,8 +6703,6 @@ icon_state = "map-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -6989,13 +6720,9 @@ /area/ship/expe/engineering) "mU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -7066,15 +6793,12 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/ship/expe/sm) "nc" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -7125,13 +6849,9 @@ icon_state = "map-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/corner/blue/border{ @@ -7327,8 +7047,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -7366,8 +7084,6 @@ /area/ship/expe/seceq) "nF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -7389,8 +7105,6 @@ /area/ship/expe/sechall) "nG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack, @@ -7444,8 +7158,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack/full, @@ -7465,8 +7177,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7531,8 +7241,6 @@ /area/ship/expe/medicalmain) "nT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -7555,8 +7263,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -7573,8 +7279,6 @@ icon_state = "bordercolor" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -7589,7 +7293,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -7710,8 +7413,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -7784,13 +7485,9 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -7881,8 +7578,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -7923,8 +7618,6 @@ icon_state = "intact" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -7932,7 +7625,6 @@ "oy" = ( /obj/machinery/power/rad_collector, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -7945,7 +7637,6 @@ }, /obj/machinery/power/rad_collector, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -7965,7 +7656,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techfloor, @@ -7974,8 +7664,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -8104,8 +7792,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -8134,8 +7820,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -8161,8 +7845,6 @@ /area/ship/expe/sechall) "oW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -8185,7 +7867,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -8281,7 +7962,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -8296,8 +7976,6 @@ /area/ship/expe/medicalmain) "pf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -8320,8 +7998,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -8421,8 +8097,6 @@ /area/ship/expe/engineeringpower) "ps" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/table/steel_reinforced, @@ -8433,15 +8107,12 @@ recharge_rate = 10000 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/expe/engineeringpower) "pu" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/table/steel_reinforced, @@ -8465,8 +8136,6 @@ "px" = ( /obj/machinery/atmospherics/pipe/simple/hidden/blue, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/remote/blast_door{ @@ -8478,21 +8147,15 @@ /area/ship/expe/sm) "py" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/wall/r_lead, /area/ship/expe/sm) "pz" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -8500,8 +8163,6 @@ "pA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/blue, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -8578,8 +8239,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -8588,8 +8247,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -8601,8 +8258,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -8692,7 +8347,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -8740,8 +8394,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -8798,7 +8450,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -8814,8 +8465,6 @@ /area/ship/expe/seccells) "pW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -8841,8 +8490,6 @@ /area/ship/expe/seccells) "pY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -8869,7 +8516,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -9002,8 +8648,6 @@ /area/ship/expe/medicalmain) "ql" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite, @@ -9031,8 +8675,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite, @@ -9065,8 +8707,6 @@ icon_state = "bordercolor" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -9136,7 +8776,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -9161,8 +8800,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -9204,7 +8841,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -9216,8 +8852,6 @@ /area/ship/expe/sm) "qF" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -9256,7 +8890,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/corner/blue/border{ @@ -9361,8 +8994,6 @@ /area/ship/expe/expedition) "qX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -9384,13 +9015,9 @@ /area/ship/expe/expedition) "qZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -9405,8 +9032,6 @@ /area/space) "rb" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -9421,13 +9046,9 @@ /area/ship/expe/seccells) "rc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ @@ -9445,8 +9066,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorblack, @@ -9542,8 +9161,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -9563,8 +9180,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -9585,8 +9200,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -9680,7 +9293,6 @@ /area/ship/expe/engineeringpower) "rF" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light, @@ -9691,7 +9303,6 @@ /area/ship/expe/engineeringpower) "rG" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorblack, @@ -9717,7 +9328,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -9751,8 +9361,6 @@ /area/ship/expe/engineeringpower) "rM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -9775,8 +9383,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -9821,8 +9427,6 @@ icon_state = "map-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/corner/blue/border{ @@ -9931,8 +9535,6 @@ /area/ship/expe/corridor4) "sc" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -9995,8 +9597,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/bed/chair, @@ -10101,7 +9701,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -10237,8 +9836,6 @@ /area/ship/expe/medical) "sD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -10262,7 +9859,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -10365,8 +9961,6 @@ icon_state = "bordercolor" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -10462,8 +10056,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -10502,8 +10094,6 @@ "sX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/blue/border{ @@ -10611,8 +10201,6 @@ /area/ship/expe/expedition) "tv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -10668,8 +10256,6 @@ /area/ship/expe/seclobby) "tE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -10764,7 +10350,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -10908,7 +10493,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -10976,8 +10560,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor{ @@ -11011,8 +10593,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -11141,8 +10721,6 @@ "ul" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/blue/border{ @@ -11227,8 +10805,6 @@ /area/ship/expe/sechall) "uH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloorblack{ @@ -11275,8 +10851,6 @@ /area/ship/expe/seclobby) "uL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -11294,8 +10868,6 @@ /area/ship/expe/seclobby) "uM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -11452,8 +11024,6 @@ /area/ship/expe/medical1) "va" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11472,8 +11042,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor, @@ -11484,8 +11052,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -11501,8 +11067,6 @@ /area/ship/expe/corridor5) "vf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ @@ -11556,8 +11120,6 @@ /area/ship/expe/corridor5) "vm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -11565,7 +11127,6 @@ /area/ship/expe/corridor5) "vn" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/techfloor, @@ -11611,8 +11172,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/blue/border{ @@ -11700,8 +11259,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -11717,8 +11274,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -11729,8 +11284,6 @@ /area/ship/expe/corridor2) "vL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11753,8 +11306,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -11784,8 +11335,6 @@ /area/ship/expe/maintenance2) "vT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -11894,7 +11443,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -11970,8 +11518,6 @@ icon_state = "techfloor_edges" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -12061,8 +11607,6 @@ icon_state = "intact-supply" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12083,8 +11627,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -12228,8 +11770,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -12268,8 +11808,6 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -12346,8 +11884,6 @@ icon_state = "intact-scrubbers" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -12368,8 +11904,6 @@ /area/ship/expe/southairlock) "xe" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/closet/firecloset/full, @@ -12416,8 +11950,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -12513,7 +12045,6 @@ icon_state = "term" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -12530,8 +12061,6 @@ /area/ship/expe/engines) "yd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -12701,8 +12230,6 @@ /area/ship/expe/corridor2) "yP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, diff --git a/maps/offmap_vr/talon/talon_v2.dmm b/maps/offmap_vr/talon/talon_v2.dmm index 9b8b3a6d60..8f972f0d41 100644 --- a/maps/offmap_vr/talon/talon_v2.dmm +++ b/maps/offmap_vr/talon/talon_v2.dmm @@ -75,8 +75,6 @@ "aj" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm/talon{ @@ -127,8 +125,6 @@ pixel_y = 3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -138,8 +134,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -268,13 +262,9 @@ /area/talon_v2/medical) "aC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/visible, @@ -341,8 +331,6 @@ /obj/item/weapon/storage/firstaid/o2, /obj/item/weapon/extinguisher/mini, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -355,8 +343,6 @@ "aJ" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineeringatmos{ @@ -375,8 +361,6 @@ /area/talon_v2/engineering/atmospherics) "aK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -416,8 +400,6 @@ /area/space) "aP" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -425,8 +407,6 @@ /area/talon_v2/engineering) "aQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -475,8 +455,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -501,8 +479,6 @@ /obj/machinery/portable_atmospherics/canister/phoron, /obj/effect/floor_decal/industrial/outline/red, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -534,8 +510,6 @@ "ba" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/multiple/corp_crate/talon_cargo, @@ -570,8 +544,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -627,16 +599,12 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/reinforced/airless, /area/space) "bi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -659,8 +627,6 @@ /area/space) "bo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -707,8 +673,6 @@ }, /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -723,20 +687,14 @@ /area/talon_v2/engineering/star_store) "bz" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -762,8 +720,6 @@ /area/talon_v2/bridge) "bC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -775,8 +731,6 @@ /area/talon_v2/maintenance/aft_port) "bG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/talon, @@ -785,8 +739,6 @@ /area/talon_v2/maintenance/aft_port) "bI" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -802,8 +754,6 @@ /area/talon_v2/central_hallway/fore) "bJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/sign/directions/bridge{ @@ -820,7 +770,6 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/handrail{ @@ -830,8 +779,6 @@ /area/talon_v2/maintenance/wing_starboard) "bM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -855,8 +802,6 @@ icon_state = "pipe-j2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -925,8 +870,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -942,8 +885,6 @@ /area/talon_v2/central_hallway) "cf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/walllocker/medical/south, @@ -982,8 +923,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -991,8 +930,6 @@ "ck" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1024,8 +961,6 @@ specialfunctions = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -1099,8 +1034,6 @@ /area/shuttle/talonboat) "cL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing/grey{ @@ -1128,8 +1061,6 @@ /area/talon_v2/engineering/starboard) "cU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1162,16 +1093,12 @@ /obj/random/maintenance/engineering, /obj/random/maintenance/engineering, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, /area/talon_v2/engineering) "cX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1191,8 +1118,6 @@ "cZ" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1238,8 +1163,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1255,8 +1178,6 @@ /area/talon_v2/crew_quarters/cap_room) "dl" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/catwalk, @@ -1271,8 +1192,6 @@ }, /obj/structure/window/reinforced, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular/open{ @@ -1290,8 +1209,6 @@ pixel_x = -30 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -1305,8 +1222,6 @@ /area/talon_v2/engineering/atmospherics) "dr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -1320,8 +1235,6 @@ }, /obj/structure/window/reinforced, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -1338,14 +1251,10 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/junction, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/techfloor, @@ -1381,8 +1290,6 @@ /area/talon_v2/bridge) "dH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -1395,7 +1302,6 @@ pixel_y = -28 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal{ @@ -1486,7 +1392,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1496,8 +1401,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -1539,8 +1442,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -1619,8 +1520,6 @@ "eu" = ( /obj/item/modular_computer/console/preset/talon, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/blucarpet, @@ -1635,8 +1534,6 @@ "ey" = ( /obj/structure/bed/chair/wood, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/painting/public{ @@ -1689,8 +1586,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1722,15 +1617,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/catwalk, @@ -1748,8 +1640,6 @@ /area/talon_v2/bridge) "eM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/talon, @@ -1770,8 +1660,6 @@ /area/talon_v2/engineering/generators) "eN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1782,8 +1670,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1796,8 +1682,6 @@ /area/talon_v2/engineering/generators) "eQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -1805,8 +1689,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -1824,8 +1706,6 @@ /area/talon_v2/crew_quarters/bar) "eS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -1875,8 +1755,6 @@ /area/talon_v2/crew_quarters/bar) "eZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/catwalk, @@ -1884,8 +1762,6 @@ /area/talon_v2/engineering/port_store) "fa" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1904,8 +1780,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1923,8 +1797,6 @@ /area/talon_v2/secure_storage) "ff" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, @@ -1943,8 +1815,6 @@ /area/talon_v2/crew_quarters/cap_room) "fh" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -1957,8 +1827,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/techfloor, @@ -1973,8 +1841,6 @@ /area/talon_v2/engineering/star_store) "fj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1995,8 +1861,6 @@ /area/talon_v2/engineering/port_store) "fn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -2052,7 +1916,6 @@ RCon_tag = "Talon Port SMES" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -2067,8 +1930,6 @@ "fx" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -2083,8 +1944,6 @@ /area/talon_v2/engineering/atmospherics) "fF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -2100,8 +1959,6 @@ /obj/structure/bed/double/padded, /obj/item/weapon/bedsheet/bluedouble, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet/blucarpet, @@ -2120,7 +1977,6 @@ /obj/structure/cable/green, /obj/item/weapon/paper/talon_captain, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/carpet/blucarpet, @@ -2166,8 +2022,6 @@ pixel_x = 30 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -2237,7 +2091,6 @@ }, /obj/machinery/power/shield_generator/charged, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2260,7 +2113,6 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/wood, @@ -2289,18 +2141,12 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -2310,8 +2156,6 @@ /area/talon_v2/central_hallway/fore) "gu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -2350,7 +2194,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/camera/network/talon{ @@ -2372,8 +2215,6 @@ /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -2393,8 +2234,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm/talon{ @@ -2449,16 +2288,12 @@ /area/talon_v2/maintenance/wing_starboard) "gV" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -2507,8 +2342,6 @@ /area/talon_v2/maintenance/aft_port) "hg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2535,8 +2368,6 @@ /area/talon_v2/bridge) "hi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2558,7 +2389,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2587,8 +2417,6 @@ /area/space) "hr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -2601,8 +2429,6 @@ /area/talon_v2/crew_quarters/bar) "hu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/map_helper/airlock/door/simple, @@ -2633,15 +2459,12 @@ dir = 10 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, /area/space) "hA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/fuel_port{ @@ -2680,8 +2503,6 @@ /area/shuttle/talonboat) "hG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -2706,8 +2527,6 @@ /area/shuttle/talonboat) "hK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -2772,8 +2591,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -2781,8 +2598,6 @@ "hT" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/map_helper/airlock/door/simple, @@ -2802,8 +2617,6 @@ /area/talon_v2/central_hallway/fore) "hW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -2818,8 +2631,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -2833,8 +2644,6 @@ "ib" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -2858,8 +2667,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -2897,18 +2704,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -2918,8 +2719,6 @@ /area/talon_v2/engineering/star_store) "io" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -2949,13 +2748,9 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/catwalk, @@ -2973,8 +2768,6 @@ /area/talon_v2/maintenance/aft_port) "iz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3069,8 +2862,6 @@ "iK" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -3093,7 +2884,6 @@ dir = 5 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -3120,8 +2910,6 @@ "iP" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -3141,8 +2929,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holoposter{ @@ -3159,16 +2945,12 @@ /area/talon_v2/engineering/port) "iS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/central_hallway/fore) "iU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -3201,8 +2983,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/airlock_sensor{ @@ -3214,20 +2994,14 @@ /area/talon_v2/maintenance/wing_port) "jn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -3257,8 +3031,6 @@ /area/talon_v2/engineering/atmospherics) "jy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular{ @@ -3318,8 +3090,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -3443,8 +3213,6 @@ /area/talon_v2/central_hallway/fore) "kn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3454,16 +3222,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway/fore) "kt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible{ @@ -3476,13 +3240,9 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, /obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/catwalk_plated/techfloor, @@ -3498,18 +3258,12 @@ /area/talon_v2/crew_quarters/bar) "kx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -3539,16 +3293,12 @@ /area/talon_v2/crew_quarters/bar) "kG" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/bar) "kH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3573,8 +3323,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/catwalk_plated/techfloor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -3611,8 +3359,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -3646,16 +3392,12 @@ /area/talon_v2/maintenance/fore_starboard) "kX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/talon_v2/maintenance/fore_port) "kZ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -3676,8 +3418,6 @@ /area/talon_v2/engineering/starboard) "le" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/emergsuit_wall{ @@ -3703,8 +3443,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/walllocker_double/hydrant/east, @@ -3741,8 +3479,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3751,13 +3487,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -3785,13 +3517,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/catwalk, @@ -3820,8 +3548,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3840,8 +3566,6 @@ /area/talon_v2/central_hallway/fore) "lC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/flora/pottedplant/mysterious, @@ -3849,8 +3573,6 @@ /area/talon_v2/central_hallway/fore) "lD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holoposter{ @@ -3860,8 +3582,6 @@ /area/talon_v2/central_hallway/fore) "lF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -3894,8 +3614,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -3924,8 +3642,6 @@ /area/talon_v2/engineering/atmospherics) "lN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -3951,16 +3667,12 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, /area/talon_v2/medical) "lS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -3987,16 +3699,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway/fore) "ma" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4033,8 +3741,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -4065,8 +3771,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -4082,8 +3786,6 @@ "mm" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -4101,13 +3803,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/catwalk, @@ -4115,8 +3813,6 @@ /area/talon_v2/maintenance/aft_starboard) "mr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4158,8 +3854,6 @@ /area/talon_v2/medical) "mG" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -4205,8 +3899,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4223,8 +3915,6 @@ /area/shuttle/talonboat) "mV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -4259,8 +3949,6 @@ "nb" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4308,8 +3996,6 @@ /area/talon_v2/crew_quarters/sec_room) "nl" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -4344,15 +4030,12 @@ /obj/effect/floor_decal/emblem/talon_big/center, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -4420,7 +4103,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/disposalpipe/segment{ @@ -4436,7 +4118,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table/standard, @@ -4488,15 +4169,12 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/pilot_room) "nN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4526,7 +4204,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/disposalpipe/segment{ @@ -4547,8 +4224,6 @@ id = "talon_boat_east" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -4632,8 +4307,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -4671,8 +4344,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -4714,8 +4385,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -4733,13 +4402,10 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -4771,8 +4437,6 @@ /obj/structure/table/standard, /obj/machinery/photocopier/faxmachine/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -4802,8 +4466,6 @@ pixel_x = 30 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -4827,8 +4489,6 @@ /area/talon_v2/crew_quarters/med_room) "pa" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -4860,7 +4520,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -4876,14 +4535,10 @@ "pg" = ( /obj/machinery/atmospherics/pipe/simple/visible, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -4900,8 +4555,6 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4914,8 +4567,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -4927,8 +4578,6 @@ "pn" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4988,8 +4637,6 @@ pixel_x = 32 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -5002,8 +4649,6 @@ name = "smuggling compartment" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet/blucarpet, @@ -5024,8 +4669,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -5044,8 +4687,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -5082,8 +4723,6 @@ /area/talon_v2/maintenance/fore_starboard) "pL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5107,8 +4746,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -5230,8 +4867,6 @@ pixel_y = 26 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -5314,8 +4949,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -5337,8 +4970,6 @@ /area/talon_v2/engineering/port) "qy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular{ @@ -5365,8 +4996,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -5392,7 +5021,6 @@ dir = 5 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/talon{ @@ -5400,7 +5028,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -5411,8 +5038,6 @@ /area/talon_v2/ofd_ops) "qH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/talon{ @@ -5445,8 +5070,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5489,13 +5112,9 @@ /area/talon_v2/central_hallway/fore) "qV" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -5533,8 +5152,6 @@ /obj/item/weapon/pen, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -5547,8 +5164,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -5601,8 +5216,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/talon, @@ -5621,8 +5234,6 @@ pixel_x = 32 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -5654,8 +5265,6 @@ "rI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -5680,8 +5289,6 @@ /area/talon_v2/central_hallway) "rL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -5700,8 +5307,6 @@ /area/talon_v2/crew_quarters/restrooms) "rR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/emergsuit_wall{ @@ -5747,8 +5352,6 @@ /area/talon_v2/brig) "rW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -5805,8 +5408,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -5836,8 +5437,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5858,8 +5457,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5881,8 +5478,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5894,8 +5489,6 @@ "ss" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -5941,8 +5534,6 @@ /area/talon_v2/engineering/port) "sB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5954,13 +5545,9 @@ /area/talon_v2/engineering/star_store) "sC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/walllocker_double/east, @@ -5969,8 +5556,6 @@ /area/talon_v2/engineering) "sD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5996,8 +5581,6 @@ /area/talon_v2/engineering/atmospherics) "sF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -6010,8 +5593,6 @@ /area/talon_v2/central_hallway) "sG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -6033,7 +5614,6 @@ /area/shuttle/talonboat) "sK" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/talon{ @@ -6045,13 +5625,9 @@ /area/talon_v2/brig) "sL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -6075,8 +5651,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -6105,13 +5679,9 @@ /area/talon_v2/maintenance/aft_starboard) "ta" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -6134,15 +5704,12 @@ dir = 9 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, /area/space) "td" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -6152,8 +5719,6 @@ /area/talon_v2/central_hallway) "tf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -6168,8 +5733,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -6191,16 +5754,12 @@ /area/talon_v2/engineering/atmospherics) "tj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/junction, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6214,8 +5773,6 @@ pixel_x = 32 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6237,8 +5794,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6252,8 +5807,6 @@ "tq" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6278,8 +5831,6 @@ "tx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/guestpass{ @@ -6293,8 +5844,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6322,8 +5871,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6393,8 +5940,6 @@ /area/talon_v2/central_hallway) "tX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6414,16 +5959,12 @@ name = "Restrooms & Charger" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/crew_quarters/restrooms) "ub" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -6442,8 +5983,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -6502,8 +6041,6 @@ /area/talon_v2/bridge) "uo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6524,8 +6061,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -6552,8 +6087,6 @@ "uz" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6608,8 +6141,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -6646,16 +6177,12 @@ /area/talon_v2/hangar) "uL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/talon_v2/maintenance/aft_port) "uM" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -6669,7 +6196,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -6685,8 +6211,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -6724,8 +6248,6 @@ pixel_y = -28 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -6778,8 +6300,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, @@ -6805,8 +6325,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6837,8 +6355,6 @@ /area/talon_v2/brig) "vr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -6859,8 +6375,6 @@ /area/talon_v2/hangar) "vx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6868,8 +6382,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6890,16 +6402,12 @@ }, /obj/structure/closet/walllocker_double/hydrant/south, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) "vB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6921,8 +6429,6 @@ /area/shuttle/talonboat) "vF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6959,8 +6465,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6970,7 +6474,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -7042,16 +6545,12 @@ /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/talon_v2/maintenance/fore_port) "wc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -7138,8 +6637,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/random/multiple/corp_crate/talon_cargo, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -7166,7 +6663,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -7183,8 +6679,6 @@ pixel_x = 32 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -7202,8 +6696,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7220,8 +6712,6 @@ /area/talon_v2/engineering/port) "wF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7240,7 +6730,6 @@ dir = 5 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/reinforced/airless, @@ -7308,7 +6797,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -7335,7 +6823,6 @@ pixel_x = 3 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/terminal{ @@ -7376,8 +6863,6 @@ /area/talon_v2/crew_quarters/cap_room) "xd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/emergsuit_wall{ @@ -7447,8 +6932,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular/open{ @@ -7465,8 +6948,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7484,8 +6965,6 @@ /area/talon_v2/refining) "xs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning/dust/corner, @@ -7504,8 +6983,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/blucarpet, @@ -7514,8 +6991,6 @@ /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -7531,8 +7006,6 @@ /area/talon_v2/armory) "xB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, @@ -7544,8 +7017,6 @@ /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7565,8 +7036,6 @@ /area/talon_v2/engineering/starboard) "xL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -7580,8 +7049,6 @@ /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -7673,8 +7140,6 @@ /area/shuttle/talonboat) "yi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -7720,8 +7185,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7785,13 +7248,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/blast/regular/open{ @@ -7857,8 +7316,6 @@ "yK" = ( /obj/machinery/light/small, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -7881,7 +7338,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/camera/network/talon, @@ -7944,7 +7400,6 @@ pixel_x = -22 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/talon{ @@ -7989,8 +7444,6 @@ /area/talon_v2/secure_storage) "zk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -8000,8 +7453,6 @@ /area/talon_v2/engineering/starboard) "zo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -8025,8 +7476,6 @@ /area/talon_v2/maintenance/fore_port) "zs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible, @@ -8118,8 +7567,6 @@ "zI" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/multiple/corp_crate/talon_cargo, @@ -8130,13 +7577,9 @@ /area/talon_v2/maintenance/wing_starboard) "zJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/talon{ @@ -8146,8 +7589,6 @@ /area/talon_v2/engineering) "zK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -8164,8 +7605,6 @@ "zQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/aux, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -8219,8 +7658,6 @@ /area/talon_v2/medical) "Af" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/camera/network/talon, @@ -8264,8 +7701,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/walllocker_double/hydrant/west, @@ -8273,8 +7708,6 @@ /area/talon_v2/maintenance/wing_starboard) "Au" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/talon, @@ -8287,8 +7720,6 @@ /area/talon_v2/maintenance/wing_port) "Aw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -8300,7 +7731,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/closet/secure_closet/personal/cabinet{ @@ -8320,8 +7750,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -8351,7 +7779,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techmaint, @@ -8366,7 +7793,6 @@ /area/talon_v2/gen_store) "AL" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal{ @@ -8397,8 +7823,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -8423,7 +7847,6 @@ /area/talon_v2/bridge) "AT" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal{ @@ -8493,8 +7916,6 @@ /area/talon_v2/engineering/port) "Bd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -8528,8 +7949,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -8585,8 +8004,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -8612,8 +8029,6 @@ "BC" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm/talon{ @@ -8673,15 +8088,12 @@ }, /obj/machinery/recharger, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/white, /area/talon_v2/medical) "BT" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8752,8 +8164,6 @@ /area/talon_v2/crew_quarters/mine_room) "Cb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -8835,8 +8245,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8859,8 +8267,6 @@ /area/talon_v2/engineering/atmospherics) "CE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/handrail{ @@ -8909,8 +8315,6 @@ /area/talon_v2/maintenance/aft_port) "CK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/catwalk, @@ -8925,16 +8329,12 @@ /obj/item/clothing/suit/radiation, /obj/item/clothing/head/radiation, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, /area/talon_v2/engineering) "CM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8955,8 +8355,6 @@ "CO" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -8977,8 +8375,6 @@ /area/talon_v2/engineering/atmospherics) "CS" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8995,8 +8391,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -9010,7 +8404,6 @@ /obj/item/weapon/paper_bin, /obj/item/weapon/pen, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, @@ -9029,16 +8422,12 @@ /area/talon_v2/secure_storage) "Dg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/talon_v2/maintenance/aft_starboard) "Di" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -9068,8 +8457,6 @@ /area/talon_v2/maintenance/wing_starboard) "Dm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -9097,8 +8484,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -9135,8 +8520,6 @@ /area/talon_v2/central_hallway/fore) "DH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ @@ -9172,8 +8555,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -9240,8 +8621,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -9270,8 +8649,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9283,8 +8660,6 @@ /area/talon_v2/engineering/star_store) "Ek" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9359,8 +8734,6 @@ /obj/structure/handrail, /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -9434,8 +8807,6 @@ /area/talon_v2/brig) "EE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -9443,8 +8814,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -9457,8 +8826,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -9476,8 +8843,6 @@ "EJ" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -9490,7 +8855,6 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/handrail{ @@ -9519,8 +8883,6 @@ /area/talon_v2/engineering/port) "EP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -9592,8 +8954,6 @@ /area/talon_v2/central_hallway) "Fe" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -9603,8 +8963,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated/techmaint, @@ -9658,8 +9016,6 @@ /area/talon_v2/medical) "Fo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -9669,8 +9025,6 @@ /area/talon_v2/central_hallway) "Fq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9706,7 +9060,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/handrail{ @@ -9740,11 +9093,9 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techmaint, @@ -9800,7 +9151,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/talon{ @@ -9857,16 +9207,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) "FU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -9898,7 +9244,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -9935,13 +9280,9 @@ /area/talon_v2/central_hallway) "Gb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, @@ -9962,8 +9303,6 @@ /area/talon_v2/ofd_ops) "Gi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -9994,8 +9333,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/techmaint, @@ -10008,7 +9345,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/catwalk, @@ -10016,8 +9352,6 @@ /area/talon_v2/engineering/port_store) "Gp" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10042,8 +9376,6 @@ /area/talon_v2/central_hallway/port) "Gr" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -10078,8 +9410,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -10101,8 +9431,6 @@ /area/talon_v2/engineering/starboard) "Gz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -10112,8 +9440,6 @@ /area/space) "GA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -10121,8 +9447,6 @@ /area/talon_v2/engineering) "GC" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10176,7 +9500,6 @@ RCon_tag = "Talon Port SMES" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -10192,8 +9515,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -10242,8 +9563,6 @@ /area/talon_v2/engineering) "Hf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -10274,8 +9593,6 @@ /area/talon_v2/crew_quarters/sec_room) "Hj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10322,8 +9639,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -10352,8 +9667,6 @@ }, /obj/structure/handrail, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -10374,8 +9687,6 @@ "Hw" = ( /obj/machinery/computer/ship/navigation, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/remote/blast_door{ @@ -10397,8 +9708,6 @@ "Hy" = ( /obj/structure/handrail, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -10422,8 +9731,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/talon, @@ -10433,8 +9740,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -10454,8 +9759,6 @@ pixel_x = 22 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/blucarpet, @@ -10467,15 +9770,12 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/crew_quarters/restrooms) "HG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10494,8 +9794,6 @@ /area/talon_v2/central_hallway/star) "HH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/talon, @@ -10533,13 +9831,9 @@ pixel_y = 3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated/techmaint, @@ -10553,8 +9847,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -10564,8 +9856,6 @@ /area/talon_v2/anomaly_storage) "HT" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -10579,13 +9869,9 @@ icon_state = "pipe-j2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/techmaint, @@ -10594,8 +9880,6 @@ "HU" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10645,8 +9929,6 @@ /area/shuttle/talonpod) "Ia" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10656,8 +9938,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -10676,22 +9956,16 @@ pixel_x = 26 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, /area/talon_v2/maintenance/fore_port) "Ie" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -10712,8 +9986,6 @@ /area/talon_v2/refining) "Ih" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10730,8 +10002,6 @@ "Ij" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10749,7 +10019,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -10770,16 +10039,12 @@ /area/talon_v2/engineering) "In" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -10809,8 +10074,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -10818,13 +10081,9 @@ /area/talon_v2/engineering/port_store) "Is" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10849,16 +10108,12 @@ "Iu" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, /area/talon_v2/maintenance/fore_starboard) "Iv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10928,8 +10183,6 @@ /area/talon_v2/maintenance/fore_starboard) "IJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10942,8 +10195,6 @@ /area/talon_v2/engineering/generators) "IL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -10953,8 +10204,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/catwalk, @@ -10976,8 +10225,6 @@ /obj/structure/catwalk, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -10990,8 +10237,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_research{ @@ -11003,16 +10248,12 @@ "IU" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/maintenance/wing_starboard) "IW" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11042,8 +10283,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -11056,8 +10295,6 @@ /area/talon_v2/maintenance/wing_starboard) "Jf" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11080,8 +10317,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -11197,8 +10432,6 @@ /area/talon_v2/maintenance/aft_port) "Jz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/reinforced/airless, @@ -11219,8 +10452,6 @@ /area/shuttle/talonboat) "JB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11228,8 +10459,6 @@ /area/talon_v2/maintenance/wing_port) "JC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -11250,8 +10479,6 @@ /area/talon_v2/crew_quarters/restrooms) "JJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11288,13 +10515,9 @@ /area/talon_v2/bridge) "JQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -11327,16 +10550,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/maintenance/wing_starboard) "JZ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11352,8 +10571,6 @@ /area/talon_v2/central_hallway/fore) "Ke" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holoposter{ @@ -11369,8 +10586,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -11402,8 +10617,6 @@ /area/talon_v2/maintenance/aft_starboard) "Kn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -11419,13 +10632,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -11451,13 +10660,9 @@ /area/talon_v2/hangar) "Kv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm/talon{ @@ -11506,8 +10711,6 @@ /area/talon_v2/secure_storage) "KE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/talon, @@ -11519,8 +10722,6 @@ /area/talon_v2/central_hallway/port) "KH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, @@ -11530,8 +10731,6 @@ /area/talon_v2/engineering/port_store) "KI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11544,8 +10743,6 @@ "KJ" = ( /obj/structure/table/bench/wooden, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -11575,13 +10772,9 @@ /area/shuttle/talonboat) "KO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -11656,8 +10849,6 @@ /area/talon_v2/central_hallway/star) "Lg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11716,8 +10907,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11727,15 +10916,12 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/hangar) "Ls" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/pointdefense{ @@ -11761,8 +10947,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11775,8 +10959,6 @@ name = "Workroom" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11788,8 +10970,6 @@ /area/talon_v2/workroom) "Ly" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11840,8 +11020,6 @@ /area/talon_v2/bridge) "LC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11867,16 +11045,12 @@ pixel_y = 3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) "LF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11926,15 +11100,12 @@ dir = 5 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/catwalk, @@ -11942,8 +11113,6 @@ /area/talon_v2/engineering/generators) "LL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -11969,8 +11138,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -11981,8 +11148,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular/open{ @@ -12027,13 +11192,9 @@ /area/talon_v2/gen_store) "LU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -12060,8 +11221,6 @@ /area/talon_v2/engineering/atmospherics) "LX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -12081,8 +11240,6 @@ /area/shuttle/talonboat) "Mb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/walllocker/medical/west, @@ -12209,8 +11366,6 @@ name = "Cantina" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12235,8 +11390,6 @@ }, /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -12281,8 +11434,6 @@ }, /obj/structure/bed/chair/bay/shuttle, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -12345,8 +11496,6 @@ /area/talon_v2/maintenance/aft_port) "MV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/talon, @@ -12367,8 +11516,6 @@ /area/talon_v2/bridge) "MZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning/dust/corner{ @@ -12405,16 +11552,12 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, /area/talon_v2/engineering) "Ne" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -12437,8 +11580,6 @@ /area/talon_v2/crew_quarters/meditation) "Nn" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/visible, @@ -12481,13 +11622,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, @@ -12574,8 +11711,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12627,7 +11762,6 @@ dir = 9 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/talon{ @@ -12635,7 +11769,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -12643,8 +11776,6 @@ "NR" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -12657,8 +11788,6 @@ /area/talon_v2/maintenance/wing_port) "NT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -12722,8 +11851,6 @@ pixel_y = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -12731,8 +11858,6 @@ "Og" = ( /obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/mining{ @@ -12751,8 +11876,6 @@ /area/talon_v2/armory) "Ok" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12820,7 +11943,6 @@ /area/talon_v2/engineering/port_store) "Oz" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/talon{ @@ -12830,16 +11952,12 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, /area/talon_v2/maintenance/aft_starboard) "OB" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -12870,8 +11988,6 @@ "OF" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -12954,8 +12070,6 @@ /area/talon_v2/maintenance/wing_port) "OT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -12973,16 +12087,12 @@ }, /obj/structure/table/woodentable, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/bar) "OY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13000,8 +12110,6 @@ "Pb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/aux, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -13033,7 +12141,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light{ @@ -13058,8 +12165,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -13093,11 +12198,9 @@ dir = 5 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/catwalk, @@ -13118,8 +12221,6 @@ /area/talon_v2/maintenance/wing_port) "Pm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13188,8 +12289,6 @@ /area/talon_v2/engineering/port) "PA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -13226,7 +12325,6 @@ RCon_tag = "Talon Port SMES" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -13245,8 +12343,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -13288,8 +12384,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock{ @@ -13317,7 +12411,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -13332,8 +12425,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -13343,7 +12434,6 @@ /area/talon_v2/engineering) "Qb" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/talon{ @@ -13381,8 +12471,6 @@ /area/talon_v2/engineering/starboard) "Qi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/map_helper/airlock/sensor/int_sensor, @@ -13402,8 +12490,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13459,8 +12545,6 @@ /obj/structure/closet/walllocker_double/hydrant/west, /obj/structure/cable/green, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -13480,8 +12564,6 @@ /area/talon_v2/maintenance/fore_starboard) "Qz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/handrail{ @@ -13538,8 +12620,6 @@ /area/talon_v2/maintenance/wing_starboard) "QI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -13555,8 +12635,6 @@ "QM" = ( /obj/effect/shuttle_landmark/shuttle_initializer/talonboat, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -13578,8 +12656,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -13607,20 +12683,14 @@ /area/space) "QR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -13659,16 +12729,12 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/bridge) "Rb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/talon, @@ -13683,8 +12749,6 @@ /area/talon_v2/engineering/port) "Rd" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13699,8 +12763,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13722,8 +12784,6 @@ /area/talon_v2/crew_quarters/eng_room) "Ri" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -13880,16 +12940,13 @@ name_tag = "TLN-PWR-GEN" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/disposalpipe/segment, @@ -13915,8 +12972,6 @@ pixel_y = 32 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -13945,8 +13000,6 @@ /area/talon_v2/maintenance/wing_port) "RY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13965,8 +13018,6 @@ /area/talon_v2/crew_quarters/cap_room) "Sd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13987,8 +13038,6 @@ /area/talon_v2/maintenance/fore_starboard) "Si" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -14037,16 +13086,12 @@ pixel_y = -31 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) "Ss" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14087,8 +13132,6 @@ /area/shuttle/talonboat) "Sx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -14101,8 +13144,6 @@ /area/talon_v2/engineering/starboard) "Sz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14134,8 +13175,6 @@ /area/talon_v2/maintenance/wing_port) "SE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -14146,8 +13185,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -14157,7 +13194,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/talon{ @@ -14170,8 +13206,6 @@ "SK" = ( /obj/machinery/light/small, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -14190,8 +13224,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -14211,8 +13243,6 @@ pixel_x = -32 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -14222,20 +13252,15 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, /area/space) "ST" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -14248,8 +13273,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -14267,11 +13290,9 @@ name_tag = "TLN-MAIN-GRID" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -14284,8 +13305,6 @@ /area/talon_v2/engineering) "SW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -14334,8 +13353,6 @@ /area/talon_v2/engineering/starboard) "Tg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14355,8 +13372,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -14384,8 +13399,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -14429,16 +13442,12 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/secure_storage) "TD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/department/biblio{ @@ -14506,8 +13515,6 @@ /area/talon_v2/crew_quarters/pilot_room) "TN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -14523,8 +13530,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/random/multiple/corp_crate/talon_cargo, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -14544,8 +13549,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -14609,7 +13612,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -14636,8 +13638,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -14649,16 +13649,12 @@ /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/talon_v2/maintenance/fore_starboard) "Uk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -14707,8 +13703,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/reinforced/airless, @@ -14727,8 +13721,6 @@ /area/talon_v2/central_hallway) "Uv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -14751,8 +13743,6 @@ pixel_y = -31 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -14769,8 +13759,6 @@ }, /obj/structure/bed/chair/bay/shuttle, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -14831,8 +13819,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -14847,13 +13833,9 @@ /area/talon_v2/central_hallway/fore) "UM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -14913,8 +13895,6 @@ "Vc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -14939,8 +13919,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/techmaint, @@ -14987,8 +13965,6 @@ /area/talon_v2/crew_quarters/cap_room) "Vr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15026,8 +14002,6 @@ /area/space) "Vw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/emergsuit_wall{ @@ -15055,7 +14029,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -15073,8 +14046,6 @@ /area/talon_v2/maintenance/aft_starboard) "VA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15095,8 +14066,6 @@ /area/talon_v2/central_hallway/star) "VD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15116,8 +14085,6 @@ /area/talon_v2/medical) "VH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15149,8 +14116,6 @@ /area/talon_v2/anomaly_storage) "VL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -15245,8 +14210,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -15305,7 +14268,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, @@ -15315,8 +14277,6 @@ /area/talon_v2/secure_storage) "Wo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -15326,21 +14286,15 @@ /area/space) "Wp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/talon_v2/maintenance/wing_port) "Wq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -15359,8 +14313,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -15382,8 +14334,6 @@ /area/talon_v2/maintenance/wing_port) "Wy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15396,13 +14346,9 @@ /area/talon_v2/crew_quarters/med_room) "Wz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15432,8 +14378,6 @@ req_one_access = list(301) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/map_helper/airlock/sensor/ext_sensor, @@ -15445,8 +14389,6 @@ /area/talon_v2/maintenance/wing_starboard) "WF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15462,8 +14404,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -15645,8 +14585,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -15654,8 +14592,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/catwalk_plated/techmaint, @@ -15699,8 +14635,6 @@ pixel_x = -24 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -15711,8 +14645,6 @@ /area/talon_v2/crew_quarters/cap_room) "XA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -15738,8 +14670,6 @@ "XD" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -15795,13 +14725,9 @@ /area/talon_v2/maintenance/fore_port) "XR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -15874,8 +14800,6 @@ /area/talon_v2/maintenance/wing_starboard) "Ya" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/weapon/storage/firstaid/regular, @@ -15905,8 +14829,6 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -15990,8 +14912,6 @@ /area/space) "Yt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/catwalk, @@ -16062,8 +14982,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -16077,8 +14995,6 @@ /area/shuttle/talonpod) "YC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -16132,8 +15048,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -16188,8 +15102,6 @@ /area/talon_v2/engineering) "YW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/talon, @@ -16207,7 +15119,6 @@ /area/talon_v2/engineering/starboard) "YX" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/talon{ @@ -16325,13 +15236,9 @@ /area/talon_v2/engineering) "Zp" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -16355,16 +15262,12 @@ /area/shuttle/talonboat) "Zv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/talon_v2/maintenance/wing_starboard) "Zw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/talon, @@ -16419,16 +15322,12 @@ /area/talon_v2/engineering/atmospherics) "ZC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/talon_v2/bridge) "ZD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -16439,8 +15338,6 @@ /area/talon_v2/engineering/star_store) "ZE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -16458,8 +15355,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/emergsuit_wall{ @@ -16486,7 +15381,6 @@ id_tag = "talon_pd" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/reinforced/airless, @@ -16531,8 +15425,6 @@ /area/talon_v2/maintenance/fore_port) "ZY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, diff --git a/maps/redgate/cybercity.dmm b/maps/redgate/cybercity.dmm index a836653c1e..4b18a09a8d 100644 --- a/maps/redgate/cybercity.dmm +++ b/maps/redgate/cybercity.dmm @@ -69,7 +69,7 @@ /turf/simulated/floor/wood, /area/redgate/city/library) "ajj" = ( -/obj/machinery/light/small/neon/redcross{ +/obj/machinery/light/small/neon/cross{ pixel_y = 29 }, /turf/simulated/floor/outdoors/sidewalk/slab/city, @@ -473,10 +473,6 @@ "aLg" = ( /turf/simulated/wall/tgmc/window/darkwall, /area/redgate/city/police) -"aLw" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/redgate/city/house7) "aLy" = ( /obj/structure/table/rack/steel, /obj/item/clothing/under/sexymime, @@ -2551,7 +2547,11 @@ /area/redgate/city/house14) "dBp" = ( /obj/structure/table/rack, -/mob/living/simple_mob/vore/aggressive/mimic, +/mob/living/simple_mob/vore/aggressive/mimic{ + health = 75; + melee_damage_lower = 4; + melee_damage_upper = 7 + }, /turf/simulated/floor/tiled/eris/white/gray_perforated, /area/redgate/city/warehouse) "dBW" = ( @@ -5377,7 +5377,6 @@ /area/redgate/city/streets) "hiy" = ( /obj/structure/table/woodentable, -/obj/random_multi/single_item, /turf/simulated/floor/wood, /area/redgate/city/house7) "hkP" = ( @@ -5901,7 +5900,7 @@ /obj/machinery/door/airlock/maintenance/int{ name = "back entrance" }, -/turf/simulated/wall/tgmc/darkwall, +/turf/simulated/floor/tiled/eris/white, /area/redgate/city/warehouse) "hUq" = ( /obj/structure/table/woodentable, @@ -6544,7 +6543,9 @@ /turf/simulated/floor/wood, /area/redgate/city/house4) "iKi" = ( -/mob/living/simple_mob/vore/alienanimals/skeleton/alt, +/mob/living/simple_mob/vore/alienanimals/skeleton/alt{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, /turf/simulated/floor/plating, /area/redgate/city/dump) "iLu" = ( @@ -8155,7 +8156,11 @@ /turf/simulated/floor/wood/alt, /area/redgate/city/restaurant) "kPJ" = ( -/mob/living/simple_mob/vore/fennec/huge, +/mob/living/simple_mob/vore/fennec/huge{ + autodoom = 0; + vore_bump_chance = 25; + vore_pounce_chance = 50 + }, /turf/simulated/floor/carpet/brown, /area/redgate/city/hotel) "kQn" = ( @@ -8251,7 +8256,7 @@ /obj/structure/closet/crate/secure{ req_one_access = list(101) }, -/obj/item/weapon/melee/altevian_wrench, +/obj/item/weapon/tool/transforming/altevian, /obj/random/junk, /obj/random/grenade/less_lethal, /obj/item/clothing/mask/altevian_breath, @@ -10088,7 +10093,7 @@ /turf/simulated/wall/tgmc/darkwall, /area/redgate/city/restaurant) "nlZ" = ( -/obj/machinery/light/small/neon/redcross{ +/obj/machinery/light/small/neon/cross{ pixel_x = 30 }, /turf/simulated/floor/outdoors/sidewalk/slab/city, @@ -11072,7 +11077,9 @@ /turf/simulated/floor/outdoors/grass, /area/redgate/city/streets) "oCK" = ( -/mob/living/simple_mob/animal/passive/mouse/rat, +/mob/living/simple_mob/animal/passive/mouse/rat{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, /turf/simulated/floor/wood/alt/panel, /area/redgate/city/rats) "oDk" = ( @@ -12809,7 +12816,9 @@ /turf/simulated/wall/tgmc/window/darkwall, /area/redgate/city/house8) "qJn" = ( -/mob/living/simple_mob/animal/passive/mouse/rat, +/mob/living/simple_mob/animal/passive/mouse/rat{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, /turf/simulated/floor/outdoors/sidewalk/slab/city, /area/redgate/city/streets) "qJF" = ( @@ -15252,7 +15261,7 @@ /turf/simulated/floor/carpet, /area/redgate/city/morgue) "tPW" = ( -/obj/machinery/light/small/neon/redcross{ +/obj/machinery/light/small/neon/cross{ pixel_y = -30 }, /turf/simulated/floor/outdoors/sidewalk/slab/city, @@ -37685,8 +37694,8 @@ weI weI rEQ hiy -aLw -aLw +hiy +hiy weI qfb qfb diff --git a/maps/redgate/eggnogtown.dmm b/maps/redgate/eggnogtown.dmm index df5d59b2ad..233f731b1c 100644 --- a/maps/redgate/eggnogtown.dmm +++ b/maps/redgate/eggnogtown.dmm @@ -119,8 +119,6 @@ /area/redgate/eggnogtown/bar) "aq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating{ @@ -1593,7 +1591,6 @@ "oz" = ( /obj/item/trash/candle, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating{ @@ -2155,8 +2152,6 @@ /area/redgate/eggnogtown/greenhouse) "wx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating{ @@ -2835,13 +2830,9 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/clothing/accessory/sweater/uglyxmas, @@ -3410,7 +3401,6 @@ "ON" = ( /obj/item/trash/candle, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating{ diff --git a/maps/redgate/fantasy.dmm b/maps/redgate/fantasy.dmm new file mode 100644 index 0000000000..5547cc4264 --- /dev/null +++ b/maps/redgate/fantasy.dmm @@ -0,0 +1,28145 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ad" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"ag" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"ah" = ( +/obj/structure/table/alien, +/obj/random/powercell/device, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"ai" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"aj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/slice/bread/filled, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"al" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/gun/launcher/crossbow/bow, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"ao" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"ap" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/arrow/standard, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"aq" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/condiment/vinegar, +/obj/item/weapon/reagent_containers/food/condiment/vinegar, +/obj/item/weapon/reagent_containers/food/condiment/vinegar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"ar" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"as" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"au" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"av" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"ax" = ( +/obj/item/weapon/material/knife/machete/hatchet/stone, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/druid) +"aA" = ( +/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"aB" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"aC" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"aE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/twohanded/fireaxe{ + icon_state = "fireaxe_mask0"; + name = "big axe" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"aI" = ( +/turf/simulated/floor/redgrid/animated, +/area/redgate/fantasy/aliens) +"aL" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/refined, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"aM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"aN" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"aQ" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/shield/primitive, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"aS" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"aT" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"aU" = ( +/obj/structure/table/woodentable, +/obj/item/stack/material/diamond, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"aW" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"aY" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"aZ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/durian, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"bh" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"bj" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"bl" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"bn" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/pickaxe/hand, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"bo" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"bp" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/walls) +"bt" = ( +/turf/simulated/floor/wood/broken, +/area/redgate/fantasy/mininghouse) +"bu" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"bw" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/creamcheesebread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"bx" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"by" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"bA" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"bC" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/shield/riot{ + color = "#A1662F" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"bD" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/wizard/fake/realistic, +/obj/item/clothing/suit/wizrobe, +/obj/item/clothing/shoes/sandal, +/obj/item/weapon/staff, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"bE" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"bH" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"bI" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/gray, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"bL" = ( +/turf/simulated/open, +/area/redgate/fantasy/mininghouse) +"bN" = ( +/obj/structure/bookcase/bookcart, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"bO" = ( +/obj/structure/fence/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"bQ" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"bR" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"bT" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/obj/item/weapon/paper{ + info = "This is a request to our staff adventuring out into this place: Please don't bring deadly weapons back to our ships and stations. If you have to, take them straight to security or research if appropriate. Thank you."; + name = "Leave weapons here!" + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"bY" = ( +/obj/structure/flora/lily3, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"bZ" = ( +/obj/effect/floor_decal/borderfloorwhite/shifted{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"cb" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"cc" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/wheat, +/obj/fruitspawner/wheat, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"ce" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"cf" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ch" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"cj" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"ck" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"cl" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/material/sword/rapier, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"co" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"cq" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"cr" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"cs" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"ct" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"cu" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"cv" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"cx" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"cz" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"cA" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"cB" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"cC" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/boots/cowboy/fancy, +/obj/item/clothing/under/dress/singer/yellow, +/obj/item/clothing/head/rose_crown, +/obj/item/clothing/shoes/boots/singer/yellow, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"cE" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"cG" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"cH" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"cK" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"cL" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"cM" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"cS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatbun, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"cT" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"cU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/pancakes, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"cV" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"cX" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"cZ" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"dc" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/crude_pack, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dd" = ( +/obj/structure/table/alien, +/obj/random/powercell, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"df" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/bottle/potion/healing, +/obj/item/weapon/reagent_containers/glass/bottle/potion/healing, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"dg" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/twohanded/baseballbat, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"di" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/snacks/rawmeatball, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dj" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"dk" = ( +/obj/structure/prop/machine/tube/starts_down, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"dl" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"dm" = ( +/obj/structure/table/rack/shelf/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"dn" = ( +/obj/machinery/beehive, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"do" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"dt" = ( +/obj/structure/fence/wood/corner{ + dir = 1 + }, +/obj/structure/fence/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"du" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/bearmeat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"dw" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/silver, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"dx" = ( +/obj/structure/table/rack/shelf/wood, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"dF" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/gun/launcher/crossbow/bow, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"dG" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"dI" = ( +/obj/fruitspawner/gnomes, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"dK" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"dL" = ( +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"dM" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/bottle/potion/fire_resist, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"dO" = ( +/obj/fiftyspawner/iron, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"dQ" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"dU" = ( +/obj/structure/table/alien, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"dV" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"dX" = ( +/obj/structure/prop/statue, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"dZ" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"eb" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"ec" = ( +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ef" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"eg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/minihoe, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"ei" = ( +/obj/structure/bed/chair/sofa/bench/marble, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"ej" = ( +/obj/structure/table/rack/wood, +/obj/item/toy/cultsword, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"ek" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"el" = ( +/obj/fruitspawner/cabbage, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"eo" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ep" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"er" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"eu" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"ew" = ( +/obj/structure/closet/crate/wooden, +/obj/item/toy/character/thief, +/obj/item/clothing/accessory/gaiter/green, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ey" = ( +/obj/random/coin/sometimes, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"eA" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"eB" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"eC" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"eD" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/clothing/ears/earring/dangle/gold, +/obj/item/clothing/ears/earring/dangle/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"eE" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"eF" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/storage/bible, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"eH" = ( +/obj/structure/toilet/wooden, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"eK" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"eM" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"eN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/quicheslice/filled, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"eO" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/firework_star/weather/confetti, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"eQ" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/obj/item/weapon/paper{ + info = "Apprentice, I have written out these instructions so that you may operate the alembic in your own time without me needing to watch over your every step.

      The alembic is simple to operate, simply activate the spontaneous heating stone beneath it to begin boiling the contents. However, the contents that you choose are critical in creating a potion of any merit, and mixing the wrong materials may create something completely useless, wasting our resources!

      You must mix two materials, and only ever two. One primary ingredient, this can be one of many materials with valuable alchemical properties. The other is a potion base, this will be essential to properly break down and transmute the ingredient into a potent potion. Once you have added the two, boil as above, and collect the distilate in a bottle. As for choosing your base, here is a short guide, but be aware that the properties of an ingredient are not always immediately apparent and some experimentation may be required:

      Alkahest is a potent solvent and particularly useful for dissolving metals.

      Aqua Regia is a heavily corrosive mixture of acids that readily dissolve most organic materials.

      Ichor is a rich ferrous fluid that binds well to minerals, it can often break down gemstones.
      "; + name = "alchemy instructions" + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"eR" = ( +/obj/structure/casino_table/craps{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"eS" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"eT" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/carrotcake, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/carrotcake, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"eV" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"eW" = ( +/obj/structure/table/marble, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"eX" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/maidcorset, +/obj/item/clothing/under/dress/black_corset, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"eY" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"eZ" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"fa" = ( +/obj/structure/window/basic, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"fb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bearmeat, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"fc" = ( +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"ff" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/gun/launcher/crossbow, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"fh" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"fl" = ( +/obj/structure/table/woodentable, +/obj/random/instrument, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"fm" = ( +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"fp" = ( +/turf/simulated/open, +/area/redgate/fantasy/streets) +"fr" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"fs" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/druid) +"ft" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"fu" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"fv" = ( +/obj/random/potion, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"fw" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"fx" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"fy" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"fz" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"fB" = ( +/obj/structure/closet/alien, +/obj/item/clothing/under/cohesion, +/obj/item/clothing/under/cohesion, +/obj/item/clothing/mask/gas/plaguedoctor, +/obj/item/clothing/mask/gas/plaguedoctor, +/obj/random/bluespace, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/head/plaguedoctorhat, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"fD" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"fE" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"fH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"fJ" = ( +/obj/structure/casino_table/craps, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"fL" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"fM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"fN" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"fQ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"fT" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"fY" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"ga" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"ge" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"gf" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"gg" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/gloves/combat/knight, +/obj/item/clothing/suit/storage/hooded/knight/robin, +/obj/item/clothing/head/welding/knight, +/obj/item/clothing/shoes/knight/black, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"gi" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"gk" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/church) +"gn" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"go" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"gr" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"gx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"gz" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"gC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"gD" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/flatcap, +/obj/item/clothing/shoes/boots/winter/climbing, +/obj/item/clothing/under/color/ranger/green, +/obj/item/clothing/suit/storage/toggle/labcoat/neo_ranger, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"gE" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/streets) +"gG" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"gK" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"gN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"gO" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"gP" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"gT" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"gU" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"gW" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"gX" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"ha" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"hg" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/head/fancy_crown, +/obj/item/clothing/suit/wizrobe/magusred, +/obj/item/weapon/material/sword/sabre{ + color = "#FFD700" + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"hi" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"hr" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"hs" = ( +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"ht" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"hv" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hy" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"hA" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"hC" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"hD" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hE" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"hF" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/closet/alien, +/obj/random/tool/alien, +/obj/random/firstaid, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"hI" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"hJ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/alpine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"hK" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/aliens) +"hQ" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hR" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/hosdouble, +/obj/structure/curtain{ + color = "#FF0000" + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"hS" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"hT" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"hU" = ( +/obj/structure/fence/hedge{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"hV" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"hW" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/paladinhouse) +"hX" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"hY" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"hZ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/soap, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ia" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"ic" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/fishing_rod/built, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"id" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"if" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"ig" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"ih" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"ii" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"ij" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"in" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"io" = ( +/obj/structure/bed/chair/wood, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iq" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"ir" = ( +/obj/structure/closet/coffin, +/obj/random/humanoidremains, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"is" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"it" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/druid) +"iu" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iw" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/wench, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"ix" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"iy" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/combat/imperial, +/obj/item/clothing/shoes/knight/black, +/obj/item/clothing/gloves/combat/knight/brown, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/weapon/shield/primitive, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"iD" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iE" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"iH" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iI" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"iJ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"iK" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"iL" = ( +/obj/structure/casino_table/roulette_chart, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"iQ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/twohanded/fireaxe/foam, +/obj/item/weapon/material/twohanded/fireaxe/foam, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"iS" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/restaurant) +"iU" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"iV" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/material/sword/longsword, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"iW" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"iX" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"iY" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"iZ" = ( +/obj/structure/window/phoronbasic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"jb" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"jc" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"je" = ( +/obj/structure/casino_table/roulette_long, +/obj/item/roulette_ball/red, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"jf" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/aliens) +"jh" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"jj" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"jl" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"jo" = ( +/obj/structure/table/woodentable, +/obj/fruitspawner/rose, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"jp" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"jq" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/plushie, +/obj/random/plushie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"jv" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/tofubread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"jw" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"jx" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"jz" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/clothing/accessory/holster/machete/rapier/swords, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"jA" = ( +/obj/structure/prop/machine/nt_pod, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"jD" = ( +/obj/item/weapon/mop, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"jG" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"jI" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"jK" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"jM" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"jO" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"jP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"jQ" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"jR" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"jS" = ( +/obj/structure/closet/crate/wooden, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"jX" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"jY" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"jZ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"ka" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"kb" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"kc" = ( +/obj/structure/table/woodentable, +/obj/random/internal_organ, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"kg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"ki" = ( +/obj/structure/bed/chair/sofa/left/black, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"kj" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"km" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/guardhouse) +"ko" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kq" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"kv" = ( +/obj/effect/floor_decal/carpet/blue, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"kw" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"kx" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"kz" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"kA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"kE" = ( +/obj/structure/prop/fantasy/throne, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kF" = ( +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"kH" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"kJ" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"kK" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/pen/crayon/blue{ + name = "chalk" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"kL" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kN" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"kO" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"kP" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"kS" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"kT" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"kU" = ( +/obj/item/weapon/reagent_containers/glass/bottle/potion/faerie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"kX" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/table/alien/blue, +/obj/random/potion, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"kY" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"la" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"lb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"ld" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"le" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"lf" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"lg" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"lj" = ( +/obj/structure/table/woodentable, +/obj/item/stack/material/iron, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"lk" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/religious/wayofbleedingswan, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ll" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"lm" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"lo" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"lp" = ( +/obj/structure/table/alien, +/obj/structure/prop/machine/von_krabin, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"lq" = ( +/obj/structure/bed/bath, +/obj/random/soap, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"lt" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"lv" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"lx" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"ly" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"lz" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"lC" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"lF" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"lG" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"lH" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/boots/workboots/toeless, +/obj/item/clothing/under/overalls, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"lI" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/weapon/material/twohanded/staff, +/obj/item/clothing/accessory/poncho/roles/cloak{ + name = "simple cloak" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"lJ" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"lK" = ( +/mob/living/simple_mob/vore/sheep, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"lM" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/druid) +"lO" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"lP" = ( +/mob/living/simple_mob/vore/alienanimals/catslug/custom/royalslug, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"lR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"lS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"lT" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"lW" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/obj/random/potion, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"lY" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"ma" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/shovel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"md" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"me" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/coin, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"mi" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"mk" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"ml" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/fishing_net, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"mm" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/lettuce, +/obj/fruitspawner/lettuce, +/obj/fruitspawner/carrot, +/obj/fruitspawner/carrot, +/obj/fruitspawner/carrot, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/berry, +/obj/fruitspawner/berry, +/obj/fruitspawner/berry, +/obj/fruitspawner/berry, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"mn" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"mo" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"mp" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"mq" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"ms" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"mt" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"mv" = ( +/obj/structure/table/fancyblack, +/obj/random/potion, +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"mw" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"mx" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"mz" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"mA" = ( +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"mC" = ( +/obj/structure/fence/wood/corner{ + dir = 4 + }, +/obj/structure/fence/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"mD" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"mF" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/crusader, +/obj/item/clothing/head/helmet/combat/crusader, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"mG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/bible, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"mL" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"mM" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"mO" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"mQ" = ( +/obj/structure/prop/machine/nt_obelisk, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"mR" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"mT" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"mU" = ( +/obj/structure/redgate/away, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"mW" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/diamond, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"mX" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/paladinhouse) +"mZ" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"na" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"nb" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"ng" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"nj" = ( +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"nm" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"nn" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/storage/bag/ore, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"nr" = ( +/turf/simulated/floor/wood/alt/panel/broken, +/area/redgate/fantasy/redgate) +"ns" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"nt" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"nu" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"ny" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"nz" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/obj/item/toy/snappop, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"nC" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"nD" = ( +/obj/structure/closet/crate/wooden, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"nE" = ( +/obj/item/stack/material/sandstone, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"nF" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"nG" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/flamenco, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"nJ" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/cedouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"nK" = ( +/obj/random/soap, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"nM" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/shovel/spade, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"nN" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"nP" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"nR" = ( +/turf/simulated/wall/sandstone, +/area/redgate/fantasy/streets) +"nT" = ( +/obj/structure/bed/chair/sofa/pew, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"nU" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/clothing/shoes/sandal, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"nV" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"nX" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"nY" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop/red, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"nZ" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"oc" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"od" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"oe" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/blacksmith) +"oh" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/rhubarb, +/obj/fruitspawner/rhubarb, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"oi" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"on" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"oo" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"op" = ( +/obj/structure/prop/statue/lion, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"oq" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"os" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ot" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"ou" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"oz" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"oA" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"oB" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"oD" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"oE" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"oG" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"oH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper{ + info = "Apprentice, I have written out these instructions so that you may operate the alembic in your own time without me needing to watch over your every step.

      The alembic is simple to operate, simply activate the spontaneous heating stone beneath it to begin boiling the contents. However, the contents that you choose are critical in creating a potion of any merit, and mixing the wrong materials may create something completely useless, wasting our resources!

      You must mix two materials, and only ever two. One primary ingredient, this can be one of many materials with valuable alchemical properties. The other is a potion base, this will be essential to properly break down and transmute the ingredient into a potent potion. Once you have added the two, boil as above, and collect the distilate in a bottle. As for choosing your base, here is a short guide, but be aware that the properties of an ingredient are not always immediately apparent and some experimentation may be required:

      Alkahest is a potent solvent and particularly useful for dissolving metals.

      Aqua Regia is a heavily corrosive mixture of acids that readily dissolve most organic materials.

      Ichor is a rich ferrous fluid that binds well to minerals, it can often break down gemstones.
      "; + name = "alchemy instructions" + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"oI" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 9 + }, +/obj/structure/prop/alien/computer/camera, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"oJ" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/tray, +/obj/item/weapon/tray, +/obj/item/weapon/tray, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/knife{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/fork{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"oK" = ( +/obj/structure/fence/hedge/corner, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"oL" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"oO" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"oV" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"oW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/berryclafoutis, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"oX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"pa" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"pb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/coin/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"pc" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/dress/westernbustle, +/obj/item/clothing/under/dress/westernbustle, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"pd" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"pe" = ( +/obj/structure/closet/alien, +/obj/random/multiple/voidsuit/vintage, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"pg" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"pi" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"pj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/shovel/spade, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"pl" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"pn" = ( +/obj/structure/table/woodentable, +/obj/item/capture_crystal/random, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"pp" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/lettuce, +/obj/fruitspawner/lettuce, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"pq" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"pt" = ( +/obj/structure/table/woodentable, +/obj/item/bodybag, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"pu" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"pv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"pA" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"pB" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"pD" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"pF" = ( +/obj/structure/table/marble, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"pH" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"pI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/potion_material/blood_ruby, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"pJ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/sexyclown, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"pK" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron/white, +/obj/item/clothing/under/lawyer/female, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"pM" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"pQ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/westernbustle, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"pS" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"pU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"pW" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"pY" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"pZ" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"qa" = ( +/obj/structure/closet/alien, +/obj/random/grenade/less_lethal, +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"qb" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"qc" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"qd" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/toy/plushie/generic{ + name = "gelatinous cube plushie" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"qf" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"qg" = ( +/obj/structure/closet/grave, +/obj/random/potion, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"qh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"qk" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"qm" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"qp" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"qq" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"qs" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"qw" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"qA" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"qB" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/obj/structure/curtain{ + color = "#FF0000" + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"qE" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"qF" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"qI" = ( +/obj/item/weapon/potion_material/fairy_house, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"qK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/house) +"qL" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"qO" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"qP" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"qQ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"qR" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"qS" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"qT" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"qU" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"qX" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"qZ" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"rc" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"rd" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"rf" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"rg" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/pickaxe/gold, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"rh" = ( +/obj/structure/closet/crate/wooden, +/obj/random/instrument, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ri" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"rk" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"rl" = ( +/obj/random/fantasy_item, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"rp" = ( +/obj/structure/prop/fantasy/grindstone, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"ru" = ( +/obj/item/weapon/potion_base/aqua_regia, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"rv" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/weapon/material/star/ninja, +/obj/item/clothing/accessory/gaiter/charcoal, +/obj/item/clothing/under/shiny/catsuit, +/obj/item/clothing/head/shiny_hood, +/obj/item/clothing/accessory/shiny/gloves, +/obj/item/clothing/accessory/shiny/socks, +/obj/random/potion, +/obj/item/weapon/handcuffs/legcuffs/bola, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"rx" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"ry" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"rz" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"rB" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/rogue) +"rC" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/jewler) +"rD" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"rE" = ( +/obj/structure/window/phoronbasic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"rF" = ( +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/druid) +"rG" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"rJ" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/potion_base, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"rL" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"rM" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"rN" = ( +/turf/simulated/floor/carpet, +/area/redgate/fantasy/church) +"rO" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"rP" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"rQ" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"rU" = ( +/obj/structure/fence/wood{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"rY" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"rZ" = ( +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"sa" = ( +/obj/fruitspawner/glowshroom, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/druid) +"sb" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"sc" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"se" = ( +/obj/structure/fence/wood/end, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"sg" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/waiter, +/obj/item/clothing/shoes/dress, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"sh" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"sj" = ( +/obj/structure/table/rack/shelf/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"sk" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/item/clothing/under/skirt/loincloth, +/obj/item/clothing/suit/storage/fluff/loincloth, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/head/fish, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"sl" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"sn" = ( +/obj/structure/table/woodentable, +/obj/item/bee_smoker, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"so" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"sp" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"sq" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"ss" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/stack/material/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"st" = ( +/obj/random/internal_organ, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"su" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"sw" = ( +/obj/structure/table/rack/wood, +/obj/fruitspawner/bloodrose, +/obj/fruitspawner/bloodrose, +/obj/fruitspawner/bloodrose, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"sD" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"sE" = ( +/obj/structure/table/woodentable, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"sH" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/aliens) +"sK" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"sL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"sN" = ( +/obj/structure/table/rack/wood, +/obj/random/material/refined, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"sP" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"sR" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/shop) +"sS" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"sX" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"sY" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"sZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/handcuffs, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"tc" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/knife/tacknife, +/obj/item/weapon/material/knife/tacknife, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"td" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"te" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"tf" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/bard) +"tg" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"tj" = ( +/obj/structure/table/hardwoodtable, +/obj/item/clothing/ears/skrell/chain/silver, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"tk" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 9 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"tm" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"tp" = ( +/obj/structure/fence/wood/end{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"tt" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"tu" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"tw" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/toy/colorballoon, +/obj/item/toy/colorballoon, +/obj/item/toy/colorballoon, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"ty" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"tA" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"tB" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"tC" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/celery, +/obj/fruitspawner/celery, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"tG" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/glass_extra/straw, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"tJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"tK" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"tM" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"tN" = ( +/obj/structure/closet/grave, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"tO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/structure/closet/walllocker/wooden/north, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"tT" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"tU" = ( +/turf/simulated/floor/water, +/area/redgate/fantasy/streets) +"tV" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"tW" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 1 + }, +/obj/structure/table/alien/blue, +/obj/item/weapon/paper/alien{ + info = "Thus far the mission has been a success, we've managed to integrate ourselves into the local community without arousing suspicion.

      We had initially overestimated the technological level of the locals, and their initial encounters with our equipment did cause a concern. However, we were able to latch onto their superstitious beliefs in magic to explain away the abilities that we possess. To enhance this perception, we've taken to hiding our technology in more mundane looking materials, and the townsfolk appear to be content with this.
      " + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"tX" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"ua" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"ub" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"uc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ud" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"ue" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"ug" = ( +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/house) +"uh" = ( +/obj/fruitspawner/carrot, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"ui" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"uj" = ( +/obj/structure/fence/hedge/corner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"ul" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/toy/cultsword, +/obj/item/toy/cultsword, +/obj/item/toy/cultsword, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"um" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"uo" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"up" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"uq" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/cookie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"ur" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"us" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"ut" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"uu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/structure/closet/walllocker/wooden/south, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"uz" = ( +/turf/simulated/wall/stonebricks{ + can_open = 1 + }, +/area/redgate/fantasy/castle) +"uC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/tacknife/boot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"uD" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"uH" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"uM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"uN" = ( +/obj/structure/closet/grave, +/obj/random/fantasy_item, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"uQ" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"uR" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/material/sword/katana, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"uT" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"uU" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"uV" = ( +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"uW" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"uY" = ( +/obj/structure/prop/fantasy/kiln, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"uZ" = ( +/obj/structure/closet/cabinet, +/obj/item/device/flashlight/lantern, +/obj/item/clothing/under/redpyjamas, +/obj/item/clothing/under/assistantformal, +/obj/item/weapon/storage/wallet, +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"va" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/cafe) +"vb" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/meatbread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"ve" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"vf" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/bard) +"vg" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"vh" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"vl" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/clothing/gloves/ring/material/silver, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"vm" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/melee/chainofcommand{ + name = "iron whip" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"vn" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/silence, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"vo" = ( +/obj/fiftyspawner/gold, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"vp" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/void_opal, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"vq" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/twohanded/spear/foam, +/obj/item/weapon/material/twohanded/spear/foam, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"vt" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"vv" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"vw" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/chewable/candy/lolli, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"vx" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"vz" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"vC" = ( +/obj/effect/floor_decal/borderfloorwhite/shifted{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"vH" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/friendship, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"vI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"vJ" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"vK" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"vL" = ( +/obj/structure/table/woodentable, +/obj/item/bee_pack, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"vM" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"vO" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"vQ" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"vR" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"vS" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"vT" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"vU" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"vX" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"vY" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"vZ" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wb" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"wc" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"wd" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"we" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"wf" = ( +/obj/structure/table/woodentable, +/obj/random/meat, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"wg" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"wh" = ( +/obj/item/weapon/shovel/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"wi" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"wj" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"wm" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"wo" = ( +/obj/structure/curtain, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"wq" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"wr" = ( +/obj/effect/rune, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"ws" = ( +/obj/structure/fence/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"wt" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"wu" = ( +/turf/simulated/floor/water/deep, +/area/redgate/fantasy/druid) +"ww" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"wA" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/ascetic, +/obj/item/clothing/shoes/knight, +/obj/item/clothing/gloves/combat/knight/brown, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"wE" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"wF" = ( +/obj/structure/closet/grave/dirthole, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"wG" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/rogue) +"wH" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"wI" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/arena) +"wL" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"wO" = ( +/obj/machinery/microwave/cookingpot, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"wP" = ( +/obj/structure/fireplace, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wQ" = ( +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"wR" = ( +/obj/structure/dogbed, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"wT" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wU" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"wX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"wY" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"wZ" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"xa" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"xb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/beetsoup, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"xc" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"xe" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"xf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"xg" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron/white, +/obj/item/clothing/gloves/black, +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"xh" = ( +/obj/structure/flora/lily1, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"xi" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xj" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xk" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"xl" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"xm" = ( +/obj/structure/fence/hedge/end{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"xp" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xq" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"xt" = ( +/obj/structure/bed/double/padded, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"xu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/potion_material/frozen_dew, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"xy" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"xz" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/wizard/fake/realistic{ + color = "#00000" + }, +/obj/item/clothing/suit/wizrobe/fake{ + color = "#000000" + }, +/obj/item/weapon/staff/broom, +/obj/item/clothing/shoes/sandal, +/obj/item/weapon/material/knife/stone/bone, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"xA" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"xB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"xE" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"xF" = ( +/turf/simulated/open, +/area/redgate/fantasy/house) +"xH" = ( +/obj/structure/casino_table/roulette_table/long, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"xI" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"xJ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xK" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xL" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"xO" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"xP" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"xR" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xS" = ( +/turf/simulated/open, +/area/redgate/fantasy/aliens) +"xT" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xU" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/material/knife/machete/hatchet/unathiknife, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"xW" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"xX" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"xY" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/table/alien/blue, +/obj/random/potion, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"xZ" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"yb" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"yd" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/eggplant, +/obj/fruitspawner/eggplant, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"yf" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/material/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"yg" = ( +/obj/structure/table/woodentable, +/obj/fruitspawner/watermelon, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"yi" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/soap_common, +/obj/random/soap_common, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"yl" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/obj/item/weapon/storage/box/matches, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"yp" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"yq" = ( +/obj/structure/bed/chair/sofa/pew/left, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"yw" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"yy" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"yA" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/pen/crayon/red{ + name = "chalk" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"yB" = ( +/obj/structure/closet/coffin, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"yC" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"yD" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"yE" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"yH" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"yI" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/ears/earring/dangle/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"yL" = ( +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"yO" = ( +/obj/effect/fake_sun, +/obj/effect/landmark/map_data/fantasy, +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/walls) +"yQ" = ( +/obj/structure/fence/hedge, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"yR" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"yT" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"yV" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/material/sword/longsword, +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"yW" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"yY" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"za" = ( +/obj/structure/fence/hedge/end{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"zb" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"zc" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"zd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/formalred, +/obj/item/clothing/shoes/heels, +/obj/item/clothing/mask/veil, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ze" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"zg" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/gambling) +"zi" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"zj" = ( +/obj/structure/fence/hedge/end{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"zn" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"zo" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"zp" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"zq" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"zw" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"zx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"zz" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"zB" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"zC" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"zD" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"zF" = ( +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"zI" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"zK" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"zP" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"zS" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"zU" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"zV" = ( +/obj/structure/table/bench/padded, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Aa" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Ab" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Ac" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Ad" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Ae" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Af" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Ag" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Ai" = ( +/obj/structure/table/woodentable, +/obj/item/toy/figure/ranger, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Aj" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Al" = ( +/obj/structure/table/hardwoodtable, +/obj/item/paint_palette, +/obj/item/paint_palette, +/obj/item/paint_brush, +/obj/item/paint_brush, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"An" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Ao" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Ap" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Aq" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/moneybag, +/obj/item/weapon/simple_key/dungeon, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"As" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"At" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/bakery) +"Au" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper/crumpled, +/obj/item/weapon/paper/crumpled, +/obj/item/weapon/paper/crumpled, +/obj/item/weapon/paper/crumpled, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Av" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"Aw" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/churchhouse) +"Az" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"AA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"AD" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/clothing/head/woodcirclet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"AF" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/church) +"AH" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"AJ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"AL" = ( +/obj/item/weapon/shovel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"AN" = ( +/obj/structure/table/hardwoodtable, +/obj/item/canvas/twentyfour_twentyfour, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"AO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"AQ" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/myrock, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"AR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/stone/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"AS" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"AU" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"AV" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"AW" = ( +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/fantasy/aliens) +"AY" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Ba" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/xenomeatbread, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Bb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Bd" = ( +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Bg" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -23 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Bh" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Bk" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Bl" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"Bn" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Bp" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Bq" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Br" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"By" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Bz" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/knife/tacknife/boot, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"BA" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/item/weapon/material/sword/longsword, +/obj/item/clothing/suit/armor/combat/imperial, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"BC" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"BD" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"BE" = ( +/obj/structure/prop/alien/power, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"BF" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"BG" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"BH" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"BM" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"BN" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"BQ" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"BT" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/sword/foam, +/obj/item/weapon/material/sword/foam, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"BY" = ( +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Ca" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bottle/potion, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Cc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Cf" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker/wooden/south, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Cg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Ci" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/combat/imperial, +/obj/item/clothing/shoes/knight/black, +/obj/item/clothing/gloves/combat/knight/brown, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/weapon/shield/primitive, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Ck" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Cm" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Co" = ( +/turf/simulated/open, +/area/redgate/fantasy/castle) +"Cp" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Cu" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Cv" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"Cw" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/broken, +/area/redgate/fantasy/mininghouse) +"Cy" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Cz" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"CC" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"CE" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"CF" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"CG" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"CH" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/streets) +"CI" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/knife/stone/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"CK" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/material/sword/longsword, +/obj/item/clothing/accessory/holster/machete/rapier/swords, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"CL" = ( +/obj/structure/prop/machine/stamper, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"CM" = ( +/obj/structure/prop/alien/pod/hybrid, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"CN" = ( +/obj/structure/table/woodentable, +/obj/random/meat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"CQ" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/washhouse) +"CR" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"CX" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"CY" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"Db" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Dc" = ( +/obj/structure/closet/coffin, +/obj/random/humanoidremains, +/obj/random/bluespace, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"Dd" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Dg" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Dh" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Dj" = ( +/mob/living/simple_mob/animal/passive/fish/koi, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"Dk" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Dm" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/precious, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Dn" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Do" = ( +/obj/structure/closet/crate/chest, +/obj/item/clothing/accessory/bracelet/material/gold, +/obj/item/clothing/ears/earring/dangle/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/random/potion_base, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Dq" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ds" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/carpet/brown, +/area/redgate/fantasy/farmhouse) +"Dt" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Du" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"Dw" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Dz" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/structure/table/rack/shelf/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"DE" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"DI" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"DL" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 5 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"DN" = ( +/obj/structure/simple_door/iron, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"DO" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"DQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"DR" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"DS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/twobread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"DT" = ( +/obj/structure/bed/chair/wood/wings, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"DU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"DV" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"DY" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/hedgemaze) +"Ea" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/streets) +"Eb" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"Ec" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Ef" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/precious, +/obj/random/material/precious, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Ei" = ( +/turf/simulated/wall/wood{ + can_open = 1 + }, +/area/redgate/fantasy/house) +"Ej" = ( +/obj/structure/flora/lily2, +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"Ek" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/random/potion, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"Em" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/castle) +"Eo" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/potato, +/obj/fruitspawner/potato, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Eq" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Er" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/carrot, +/obj/fruitspawner/carrot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Es" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"Ew" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/instrument, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Ez" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"EB" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"EC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ED" = ( +/obj/structure/table/alien, +/obj/random/potion_ingredient, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"EJ" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/aliens) +"EK" = ( +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/paladinhouse) +"EO" = ( +/obj/structure/closet/walllocker/wooden/east, +/obj/item/weapon/potion_base/alkahest, +/obj/item/weapon/potion_base/aqua_regia, +/obj/item/weapon/potion_base/ichor, +/obj/random/potion_base, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"ER" = ( +/obj/structure/kitchenspike, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"EV" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"EX" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"EY" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/double, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Fa" = ( +/obj/structure/prop/machine/conduit/starts_on, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Fc" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Fd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/armor/combat/imperial, +/obj/item/clothing/shoes/knight/black, +/obj/item/clothing/gloves/combat/knight/brown, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/weapon/shield/primitive, +/obj/item/weapon/handcuffs/cable/plantfiber, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Fe" = ( +/obj/structure/table/rack/wood, +/obj/fruitspawner/poppies, +/obj/fruitspawner/poppies, +/obj/fruitspawner/poppies, +/obj/fruitspawner/poppies, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ff" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"Fg" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Fh" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Fi" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Fj" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"Fm" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 5 + }, +/obj/structure/table/alien/blue, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Fn" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/pirate, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bread, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Fo" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/cowboy/rustler, +/obj/item/clothing/shoes/boots/cowboy/classic, +/obj/item/clothing/under/cowboy/tan, +/obj/item/clothing/accessory/cowboy_vest, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Fq" = ( +/obj/structure/table/rack/wood, +/obj/fruitspawner/telriis, +/obj/fruitspawner/telriis, +/obj/fruitspawner/telriis, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Fs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bottle/potion/relaxation, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Fw" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"Fy" = ( +/obj/structure/table/hardwoodtable, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"FB" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/pickaxe/four_pick, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"FD" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tray, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"FE" = ( +/obj/structure/signpost, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"FH" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"FM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"FP" = ( +/obj/structure/table/woodentable, +/obj/item/toy/figure/ninja, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"FQ" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/knuckledusters, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"FS" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/retractor, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"FV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"FX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"FZ" = ( +/obj/structure/dirtybed, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Gb" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Gc" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Gd" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Ge" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Gf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/roastbeef, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Gi" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Gj" = ( +/obj/structure/closet/crate/chest, +/obj/random/instrument, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Gk" = ( +/obj/structure/closet/cabinet, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Gl" = ( +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"Go" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/collectable/tophat, +/obj/item/clothing/under/gentlesuit, +/obj/item/weapon/cane, +/obj/item/clothing/gloves/white, +/obj/item/clothing/glasses/monocle, +/obj/item/clothing/shoes/dress, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Gp" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Gs" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Gt" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/tacknife/combatknife, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Gu" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Gw" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"Gx" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Gy" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Gz" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"GC" = ( +/obj/fruitspawner/pumpkin, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"GE" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"GG" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"GJ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/potion, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"GL" = ( +/obj/item/weapon/reagent_containers/food/snacks/old/taco, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"GM" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"GP" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/wench, +/obj/item/weapon/storage/wallet, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"GR" = ( +/obj/item/stack/material/sandstone, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"GT" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"GV" = ( +/obj/structure/fence/hedge/corner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"GX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/bone/horn, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Ha" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/melee/classic_baton, +/obj/item/weapon/melee/classic_baton, +/obj/item/weapon/melee/classic_baton, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Hb" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hc" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Hd" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"He" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/tavern) +"Hg" = ( +/obj/structure/table/alien, +/obj/random/fantasy_item, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Hj" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hk" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Hl" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"Hn" = ( +/obj/item/weapon/tool/wrench/brass, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Ho" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hr" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Hu" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/alchemist) +"Hx" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/myrock, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Hy" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/ore/iron, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Hz" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"HA" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"HC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"HD" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"HE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"HF" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"HH" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"HJ" = ( +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"HK" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"HL" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"HM" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"HO" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/grocery) +"HP" = ( +/turf/simulated/floor/wood/alt/broken, +/area/redgate/fantasy/rogue) +"HQ" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"HS" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"HT" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"HU" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"HW" = ( +/obj/structure/prop/alien/pod/open, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"HY" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Ib" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Id" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"If" = ( +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ig" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Ij" = ( +/obj/structure/table/woodentable, +/obj/random/plushielarge, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ik" = ( +/obj/structure/table/rack/shelf/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"In" = ( +/turf/simulated/floor/water, +/area/redgate/fantasy/druid) +"Ip" = ( +/obj/structure/table/hardwoodtable, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"Iq" = ( +/obj/structure/prop/fantasy/throne, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Ix" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Iy" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"IA" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"IB" = ( +/obj/structure/largecrate/birds, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"IC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"ID" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/carpet, +/obj/item/toy/character/warrior, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"IF" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"IG" = ( +/turf/simulated/shuttle/wall/alien, +/area/redgate/fantasy/aliens) +"II" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"IJ" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/farmhouse) +"IK" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"IL" = ( +/mob/living/simple_mob/vore/pakkun/fire, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"IM" = ( +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/knife/table, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"IP" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"IS" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/headband/maid, +/obj/item/clothing/head/headband/maid/modern, +/obj/item/clothing/accessory/maid_arms, +/obj/item/clothing/accessory/maid_neck, +/obj/item/clothing/accessory/maidcorset, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/under/dress/maid/janitor, +/obj/item/clothing/under/dress/maid/under_maid, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/gloves/white, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"IY" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 6 + }, +/obj/structure/table/alien/blue, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Ja" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Jd" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Je" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"Jf" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Jg" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Jh" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Ji" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/wedding/floofdress, +/obj/item/clothing/mask/veil, +/obj/item/clothing/shoes/heels, +/obj/item/clothing/head/crown, +/obj/item/clothing/gloves/evening, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Jk" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/chaplain_hood, +/obj/item/clothing/suit/storage/hooded/chaplain_hoodie, +/obj/item/clothing/under/rank/chaplain, +/obj/item/clothing/shoes/dress, +/obj/item/weapon/storage/bible/booze, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"Jm" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Jn" = ( +/obj/structure/bookcase, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Jo" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Jr" = ( +/obj/structure/bed/chair/sofa/pew, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Js" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Jt" = ( +/obj/structure/table/alien, +/obj/structure/prop/machine/biosyphon, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"Ju" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Jv" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Jz" = ( +/obj/structure/fence, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"JC" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"JD" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"JE" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"JH" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"JL" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"JM" = ( +/obj/structure/table/woodentable, +/obj/item/seeds/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"JN" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"JO" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/ghostship, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"JP" = ( +/obj/structure/closet/crate/chest, +/obj/item/instrument/violin/golden, +/obj/random/instrument, +/obj/random/potion_base, +/obj/item/weapon/material/sword/rapier, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"JT" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/jacket/gambler, +/obj/item/clothing/under/suit_jacket/gambler, +/obj/item/clothing/shoes/boots/jungle, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"JU" = ( +/obj/structure/fence/hedge/end, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"JW" = ( +/obj/structure/closet/crate/wooden, +/obj/item/device/flashlight/lantern, +/obj/item/weapon/material/knife/tacknife/boot, +/obj/random/material, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"JX" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"JY" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"JZ" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Ka" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/sword/sabre, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Kb" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/splint/ghetto, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Kc" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Kd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/gothic, +/obj/item/clothing/shoes/boots/duty, +/obj/item/clothing/gloves/evening{ + color = "#000000" + }, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"Ki" = ( +/obj/item/weapon/material/gravemarker, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"Kk" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Km" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"Kq" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Ks" = ( +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/streets) +"Ku" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Kx" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"KA" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"KB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/twohanded/staff, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"KE" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"KH" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"KI" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"KK" = ( +/obj/item/weapon/reagent_containers/food/snacks/worm, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"KM" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"KP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"KS" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"KU" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"KV" = ( +/obj/structure/prop/fantasy/redbanner_standing, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"KW" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"KZ" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"La" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Ld" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Lf" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Lg" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/woodysgotwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Lh" = ( +/obj/structure/prop/machine/nt_biocan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/aliens) +"Lj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/risottoballs, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Lk" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ll" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Ln" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/sword/longsword, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Lo" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Lp" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"Lq" = ( +/obj/random/mouseremains, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Lr" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Lv" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Lw" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Ly" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Lz" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"LA" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/hedgemaze) +"LE" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"LI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"LJ" = ( +/obj/random/coin/sometimes, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"LK" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"LN" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/storage/bag/ore, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"LR" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"LU" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"LV" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"LX" = ( +/turf/simulated/wall/log, +/area/redgate/fantasy/streets) +"LY" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/pouch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"LZ" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Ma" = ( +/turf/simulated/floor/water/deep, +/area/redgate/fantasy/streets) +"Md" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Mh" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Mj" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ml" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Mn" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Mo" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Mp" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Mq" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Ms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Mt" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Mu" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"Mv" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Mw" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"My" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Mz" = ( +/obj/structure/fence/wood, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"MB" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 8 + }, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"MC" = ( +/obj/structure/prop/machine/gravygen, +/turf/simulated/floor/redgrid/animated, +/area/redgate/fantasy/aliens) +"MD" = ( +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"ME" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"MG" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"MI" = ( +/obj/structure/table/woodentable, +/obj/item/toy/bouquet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"MJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/potion_material/thorny_bulb, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"MK" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"MM" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/ears/earring/stud/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"MN" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/material/twohanded/longsword, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"MO" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/under/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/obj/item/clothing/shoes/primitive, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"MP" = ( +/obj/structure/fireplace, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"MQ" = ( +/obj/structure/table/hardwoodtable, +/obj/item/canvas/twentythree_twentythree, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"MU" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"MX" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"MZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Nb" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"Nc" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Ne" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Ng" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Nk" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Nn" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"Np" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Nu" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Nv" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Nw" = ( +/obj/item/weapon/material/knife/machete/hatchet/stone/bone, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Nx" = ( +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Ny" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/match, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Nz" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"NA" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"NB" = ( +/obj/effect/floor_decal/carpet/blue, +/obj/effect/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"NC" = ( +/obj/effect/floor_decal/carpet/blue{ + dir = 1 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 8 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 9 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"NH" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"NI" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"NJ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/gun/launcher/crossbow/bow, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"NL" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"NM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"NP" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"NR" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"NT" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/berrymuffin/berry, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"NW" = ( +/obj/fruitspawner/plumphelmet, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"NZ" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Ob" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Oc" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Od" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/pickaxe/five_pick, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Of" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/ointment/simple, +/obj/item/stack/medical/ointment/simple, +/obj/item/stack/medical/ointment/simple, +/obj/item/stack/medical/ointment/simple, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Ok" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/mask/pig, +/obj/item/clothing/under/kilt, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ol" = ( +/obj/fruitspawner/gnomes, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"Om" = ( +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Or" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Os" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Ot" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Ov" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/random/mug, +/obj/random/coin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Ow" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/bone/skull, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Ox" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Oy" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"Oz" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"OE" = ( +/obj/structure/prop/fantasy/pinkbanner_standing, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"OH" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"OI" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fiftyspawner/sifwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"OJ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/tan, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/oldwoman, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"OK" = ( +/obj/structure/closet/crate/chest, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"OM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ON" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"OQ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/material/twohanded/longsword, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"OS" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"OT" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"OU" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"OX" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"OY" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Pa" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/redgate) +"Pb" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Pc" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/charcoal, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Pd" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Pf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tray, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Ph" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote, +/obj/item/weapon/reagent_containers/glass/bottle/potion/antidote, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Pj" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/barbarian) +"Pl" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Pn" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Pr" = ( +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Ps" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/shovel/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Pu" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Pw" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Px" = ( +/turf/simulated/floor/water, +/area/redgate/fantasy/paladinhouse) +"Py" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/machete, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Pz" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"PB" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"PF" = ( +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"PG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/structure/closet/walllocker/wooden/south, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"PH" = ( +/obj/structure/table/rack/wood, +/obj/item/weapon/material/knife/machete/hatchet/unathiknife, +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"PI" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 4 + }, +/obj/structure/table/alien/blue, +/obj/item/weapon/surgical/FixOVein/alien, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"PJ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/funnelcake, +/obj/item/weapon/reagent_containers/food/snacks/funnelcake, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"PK" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/accessory/gaiter/blue, +/obj/item/clothing/gloves/black, +/obj/item/clothing/under/cuttop, +/obj/item/clothing/shoes/flats, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"PL" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"PM" = ( +/obj/structure/table/marble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"PO" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"PP" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"PQ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/plushie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"PT" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"PU" = ( +/obj/item/weapon/potion_material/blood_ruby, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"PV" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/streets) +"PW" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"PX" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"PZ" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"Qb" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/fantasy_item, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Qf" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Qh" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 4 + }, +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Qi" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron/white, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"Qj" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Qn" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Qr" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Qu" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/bananabread, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Qv" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Qy" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"QA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatsteak, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"QF" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"QL" = ( +/obj/structure/fence/hedge/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"QN" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"QP" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/obj/item/stack/medical/crude_pack, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"QQ" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"QR" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"QS" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"QT" = ( +/obj/fiftyspawner/gold, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"QU" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"QW" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"QZ" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Rb" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Rg" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Ri" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Rj" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/snacks/chocolatebar, +/obj/item/weapon/reagent_containers/food/snacks/chocolatebar, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/banana, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Rl" = ( +/obj/structure/table/woodentable, +/obj/item/toy/character/cleric, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Rm" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Ro" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"Rp" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/croissant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"Rq" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/floor/tiled/milspec, +/area/redgate/fantasy/aliens) +"Rs" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"Ru" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"Rv" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Rw" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Rx" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"Ry" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Rz" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"RA" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"RC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/cherrypie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"RE" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"RF" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"RG" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"RI" = ( +/obj/structure/bed/chair/sofa/left/brown, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"RM" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"RN" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/ranger) +"RO" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"RR" = ( +/obj/structure/closet/crate/chest, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/material/precious, +/obj/random/material/precious, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"RS" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"RT" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"RU" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/obj/random/potion_ingredient, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"RV" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/head/rose_crown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"RW" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"RX" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/bluedress, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Sa" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Sd" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Sf" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Sj" = ( +/obj/item/weapon/ore/coal, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Sm" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Sn" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"So" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Sr" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ss" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"St" = ( +/obj/structure/table/woodentable, +/obj/random/potion_ingredient, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"Sv" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Sw" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Sy" = ( +/obj/structure/table/alien, +/obj/structure/prop/machine/core/starts_on, +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"SB" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"SE" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/rank/bartender/skirt, +/obj/item/clothing/under/rank/bartender, +/obj/item/clothing/shoes/sandal/clogs, +/obj/item/clothing/shoes/sandal/clogs, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"SF" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"SJ" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"SL" = ( +/obj/structure/prop/machine/nt_cruciforge/starts_working, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/aliens) +"SM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"SN" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"SO" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"SS" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"SW" = ( +/obj/structure/table/woodentable, +/obj/item/seeds/random, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"SX" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material/refined, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"SZ" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Ta" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Tb" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/fantasy/aliens) +"Te" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Th" = ( +/obj/random/material, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/mininghouse) +"Ti" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet, +/area/redgate/fantasy/castle) +"Tj" = ( +/obj/structure/table/rack/shelf/wood, +/obj/fiftyspawner/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Tk" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Tn" = ( +/obj/effect/floor_decal/shuttle/handicap, +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"To" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/blacksmith) +"Tp" = ( +/obj/structure/bookcase, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Tu" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/material/gold, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Tv" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Tz" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"TD" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"TE" = ( +/turf/simulated/floor/outdoors/sidewalk/side, +/area/redgate/fantasy/streets) +"TG" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"TH" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/chefhat, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/under/rank/chef, +/obj/item/clothing/shoes/boots, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"TJ" = ( +/obj/structure/closet/crate/chest, +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/storage/fancy/blackcandle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/whitecandle_box, +/obj/random/potion_ingredient, +/obj/random/fantasy_item, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"TK" = ( +/obj/structure/closet/cabinet, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"TL" = ( +/obj/structure/table/alien, +/obj/random/fantasy_item, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/fantasy/aliens) +"TM" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"TN" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/churchhouse) +"TO" = ( +/obj/structure/bed/chair/sofa/pew/right, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"TP" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"TR" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"TS" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/guardhouse) +"TT" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/random/soap, +/obj/random/soap, +/obj/random/soap, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"Ua" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/bracelet/material/glass, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Uc" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/maid/sexy, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"Ug" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Ui" = ( +/obj/structure/table/woodentable, +/obj/fruitspawner/banana, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/grocery) +"Uj" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/apron, +/obj/item/clothing/under/dress/hightrousers, +/obj/item/clothing/shoes/sandal/clogs, +/obj/item/weapon/storage/wallet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"Un" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/simulated/floor/carpet/tealcarpet, +/area/redgate/fantasy/castle) +"Ur" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Us" = ( +/mob/living/simple_mob/animal/passive/cow, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Uu" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/butcher) +"Uv" = ( +/obj/structure/easel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Uw" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"Ux" = ( +/obj/structure/closet/crate/wooden, +/obj/random/material, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Uy" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"Uz" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"UA" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"UB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/old/horseburger, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"UF" = ( +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"UG" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"UI" = ( +/obj/structure/table/woodentable, +/obj/item/toy/figure/bandit, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"UJ" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"UK" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"UM" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"UP" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/washhouse) +"UQ" = ( +/obj/structure/table/woodentable, +/obj/item/stack/medical/splint/ghetto, +/obj/item/stack/medical/splint/ghetto, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"US" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"UT" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/washhouse) +"UV" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/barbarian) +"UW" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"UX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/bible, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"UY" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"UZ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"Va" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Ve" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Vh" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Vj" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"Vk" = ( +/obj/structure/prop/fantasy/pinkbanner_standing, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Vl" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Vm" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Vo" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/mob/living/simple_mob/vore/peasant, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"Vp" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Vs" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 1 + }, +/obj/structure/table/alien/blue, +/obj/random/potion, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Vz" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/dress/hightrousers, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"VD" = ( +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"VE" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"VF" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"VH" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"VI" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"VK" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/church) +"VL" = ( +/obj/machinery/fitness/punching_bag, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"VM" = ( +/obj/structure/prop/machine/smelter, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/aliens) +"VR" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"VS" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"VT" = ( +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"VU" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"VW" = ( +/obj/structure/fence/wood/end{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"VX" = ( +/obj/structure/bed/chair/sofa/right/brown, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"VY" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"VZ" = ( +/turf/simulated/floor/outdoors/sidewalk, +/area/redgate/fantasy/streets) +"Wa" = ( +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Wc" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"Wd" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/washhouse) +"We" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/mininghouse) +"Wf" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Wg" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"Wj" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"Wk" = ( +/obj/effect/floor_decal/milspec/color/black/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Wn" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/house) +"Wq" = ( +/obj/structure/toilet/wooden, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Ws" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"Wt" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/house) +"Wu" = ( +/obj/structure/foodcart, +/turf/simulated/floor/outdoors/mud, +/area/redgate/fantasy/streets) +"Wv" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"Wx" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/shop) +"Wy" = ( +/mob/living/simple_mob/vore/wolftaur/clown{ + name = "jestaur" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Wz" = ( +/obj/fruitspawner/potato, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"WA" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"WB" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"WC" = ( +/obj/structure/closet/crate/chest, +/obj/item/weapon/gun/launcher/crossbow/bow, +/obj/item/weapon/arrow/standard, +/obj/item/weapon/arrow/standard, +/obj/item/weapon/arrow/standard, +/obj/item/weapon/arrow/standard, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"WF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"WH" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/meat/chicken, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"WP" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/toy/stickhorse, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"WQ" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"WT" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"WU" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/obj/item/weapon/reagent_containers/food/snacks/bun, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"WV" = ( +/obj/structure/table/woodentable, +/obj/item/glass_jar, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"WW" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/clothing/gloves/ring/material/gold, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"WZ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/random/potion_base, +/turf/simulated/floor/wood, +/area/redgate/fantasy/druid) +"Xf" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/fantasy/alchemist) +"Xg" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"Xk" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Xl" = ( +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"Xm" = ( +/obj/structure/bed/chair/sofa/pew{ + dir = 1 + }, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Xn" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"Xp" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"Xr" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/gun/launcher/crossbow/bow, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/walls) +"Xs" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/churchhouse) +"Xx" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker/wooden/north, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"Xy" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/turf/simulated/floor/water/deep/ocean/diving{ + edge_blending_priority = 3; + name = "well" + }, +/area/redgate/fantasy/streets) +"XB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/map_effect/interval/effect_emitter/smoke/fire, +/obj/structure/bonfire, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"XC" = ( +/obj/structure/bed, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"XD" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/paladinhouse) +"XE" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"XF" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/restaurant) +"XG" = ( +/obj/structure/bed/chair/sofa/right/black, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/fantasy/washhouse) +"XH" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/farmhouse) +"XI" = ( +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"XJ" = ( +/obj/item/frame/painting{ + pixel_y = 29 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"XL" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"XO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/house) +"XP" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small{ + pixel_y = 13 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) +"XU" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/cafe) +"XV" = ( +/obj/effect/floor_decal/carpet/blue, +/obj/effect/floor_decal/carpet/blue{ + dir = 4 + }, +/obj/effect/floor_decal/carpet/blue{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/fantasy/cafe) +"XX" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/redgate/fantasy/aliens) +"XY" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Ya" = ( +/obj/structure/window/basic/full, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Yb" = ( +/obj/structure/closet/grave, +/obj/random/fantasy_item, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/streets) +"Ye" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/gambling) +"Yg" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Yk" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/castle) +"Yn" = ( +/obj/structure/closet/crate/chest, +/obj/item/device/slow_sizegun/magic, +/obj/item/toy/character/wizard, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/castle) +"Yo" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/bard) +"Yq" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Yr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/wooden, +/obj/random/fishing_junk, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Ys" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Yt" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/fantasy/streets) +"Yu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/gambling) +"Yv" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"Yx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/soup/onion, +/turf/simulated/floor/carpet/oracarpet, +/area/redgate/fantasy/arena) +"YC" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"YD" = ( +/obj/structure/bed/chair/sofa/bench{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees, +/area/redgate/fantasy/hedgemaze) +"YG" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"YK" = ( +/obj/structure/fireplace, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"YN" = ( +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/gambling) +"YO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatpie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bakery) +"YP" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/wood, +/area/redgate/fantasy/streets) +"YQ" = ( +/obj/machinery/light/flicker, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/aliens) +"YR" = ( +/obj/random/mouseremains, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"YT" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/guardhouse) +"YU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/arena) +"Za" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"Zb" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/fantasy/butcher) +"Ze" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Zg" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"Zi" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/fantasy/streets) +"Zj" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"Zk" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/carpet/green, +/area/redgate/fantasy/house) +"Zn" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Zo" = ( +/obj/item/weapon/ore/coal, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"Zp" = ( +/obj/structure/prop/fantasy/pinkbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Zq" = ( +/obj/effect/floor_decal/milspec/color/black/half, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/fantasy/aliens) +"Zr" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/walls) +"Zs" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/fantasy/bard) +"Zu" = ( +/obj/structure/prop/fantasy/redbanner{ + pixel_y = 32 + }, +/turf/simulated/floor/beach/sand/desert{ + outdoors = 1 + }, +/area/redgate/fantasy/arena) +"Zv" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/tavern) +"Zw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/farmhouse) +"Zx" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/fantasy/blacksmith) +"ZB" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/paladinhouse) +"ZC" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/obj/random/pouch, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/ranger) +"ZD" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/redgate) +"ZE" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/ore/coal, +/obj/item/weapon/ore/coal, +/turf/simulated/floor/wood, +/area/redgate/fantasy/mininghouse) +"ZH" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/church) +"ZI" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/castle) +"ZJ" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/fantasy/house) +"ZK" = ( +/mob/living/simple_mob/animal/passive/chicken, +/turf/simulated/floor/outdoors/grass/seasonal, +/area/redgate/fantasy/streets) +"ZL" = ( +/obj/effect/floor_decal/plaque, +/turf/simulated/shuttle/wall/alien/blue/hard_corner, +/area/redgate/fantasy/aliens) +"ZN" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/bard) +"ZP" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/gloves/ring/material/iron, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"ZS" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/potion_material/golden_scale, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/jewler) +"ZW" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/rogue) +"ZZ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/toy/snowglobe/snowvillage, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/fantasy/house) + +(1,1,1) = {" +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +yO +"} +(2,1,1) = {" +bp +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +xl +KM +Ze +KM +Lq +KM +KM +Ze +KM +KM +KM +Ze +KM +KM +xl +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +aW +IK +aW +aW +aW +aW +IK +aW +aW +aW +aW +aW +IK +aW +aW +bp +"} +(3,1,1) = {" +bp +aW +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +So +So +So +aW +bp +"} +(4,1,1) = {" +bp +aW +ix +IK +zq +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +DY +LA +DY +hU +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +bp +KM +JW +KM +Jo +KM +od +KM +Jo +KM +Ao +KM +Jo +KM +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +zg +dL +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +Or +Or +Or +aW +bp +"} +(5,1,1) = {" +bp +qk +bp +aW +Dn +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +hU +Wv +oK +yQ +yQ +yQ +zj +Wv +hU +DY +DY +DY +hU +Wv +za +Wv +hU +Wv +za +Wv +oK +yQ +yQ +bp +KM +cT +KM +cT +KM +cT +KM +cT +KM +cT +KM +cT +KM +bp +Wt +Qr +La +La +La +La +La +La +La +Wt +dL +dL +zg +oc +xZ +NL +xZ +oc +oc +Ab +oc +oc +Ab +oc +oc +oc +Ab +oc +oc +zg +dL +sH +xS +xS +fx +Bg +mQ +dd +lp +ED +Sy +ED +Fa +XX +CM +Nx +su +Nx +pe +sH +dL +Wt +ug +Fs +pl +te +Fi +If +os +Fi +Wt +iu +Fi +Fi +Wt +dL +dL +dL +nR +nR +nR +nR +nR +nR +nR +dL +dL +dL +bp +aW +Mh +Mh +Mh +aW +bp +"} +(6,1,1) = {" +bp +aW +bp +bp +bp +bp +dL +tU +tU +tU +dL +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +hU +Wv +uj +yQ +GV +Wv +hU +Wv +hU +Wv +Av +bp +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +KM +OH +bp +Wt +La +uc +La +La +uc +La +tg +La +Wt +Gl +dL +zg +EB +PL +mO +Wg +Vj +gC +gC +gC +gC +iL +gC +gC +nF +Cv +Lf +oc +zg +dL +sH +dV +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +fx +IG +HW +AW +AW +AW +fB +sH +dL +Wt +Fi +Fi +MJ +Fi +Fi +ug +Fi +aA +Wt +os +Fi +Fi +Wt +dL +nE +dL +nR +ey +Gl +Gl +Gl +GR +Gl +dL +dL +dL +bp +aW +aW +mz +aW +aW +bp +"} +(7,1,1) = {" +bp +aW +bp +dL +dL +dL +tU +tU +tU +tU +tU +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +oK +yQ +yQ +yQ +GV +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +JU +bp +KM +Jo +KM +Cu +KM +Ew +KM +Jo +KM +Jo +KM +Cu +KM +bp +Wt +La +La +uc +uc +La +uc +uc +La +Wt +Gl +dL +zg +EB +PL +ih +ri +pM +YN +fJ +YN +YN +je +YN +YN +YN +hY +oc +oc +zg +dL +sH +CL +EJ +SL +aI +aI +MC +aI +aI +EJ +EJ +fx +XX +Ng +AW +TL +AW +Nx +sH +dL +Wt +QZ +Fi +Fi +ug +Fi +Fi +Fi +Fi +Wt +ug +Fi +Fi +Wt +dL +dL +dL +nR +Gl +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +bp +bp +bp +bp +bp +aW +bp +"} +(8,1,1) = {" +bp +aW +bp +dL +dL +dL +tU +tU +Ma +tU +tU +tU +tU +dL +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +uj +yQ +yQ +yQ +yQ +yQ +QL +Wv +hU +Wv +Wv +bp +Zr +eV +zi +cT +JN +cT +KM +cT +jR +cT +Zn +OU +Zn +bp +Wt +La +La +IB +uc +uc +uc +La +La +Wt +Gl +dL +zg +EB +PL +kJ +HA +II +AA +eR +AA +AA +xH +AA +AA +AA +pv +oc +oc +zg +Gl +sH +VM +EJ +Lh +aI +aI +aI +aI +aI +EJ +EJ +fx +bH +Nx +AW +AW +AW +Nx +sH +dL +Wt +Fi +Fi +Fi +Fi +Fi +Jf +Fi +Jf +Wt +Fi +Fi +os +Wt +dL +nR +dL +dL +GR +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +dL +dL +dL +dL +bp +aW +bp +"} +(9,1,1) = {" +bp +aW +bp +dL +dL +tU +tU +Ma +Ma +Ma +Ma +tU +tU +tU +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +oK +yQ +yQ +yQ +QL +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +JU +bp +bp +bp +bp +bp +bp +bp +xl +bp +bp +bp +bp +bp +bp +bp +Wt +ZJ +La +La +uc +uc +uc +DU +NI +Wt +Gl +dL +zg +oc +cx +Md +cx +oc +oc +fN +oc +oc +fN +oc +oc +oc +oc +oc +oc +zg +Gl +sH +jA +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +fx +XX +dk +Nx +Bq +Nx +Nx +sH +dL +Wt +os +ug +Fi +Fi +aA +ru +Fi +kU +Wt +os +GL +Fi +Wt +dL +dL +dL +dL +dL +dI +nR +nR +nR +dL +dL +Gl +dI +dL +dL +dL +dL +bp +aW +bp +"} +(10,1,1) = {" +bp +aW +bp +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +tU +tU +tU +dL +dL +hU +Wv +hU +Wv +hU +Wv +hU +Wv +Wv +Wv +hU +yQ +yQ +yQ +yQ +yQ +zj +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +hU +ua +YD +er +bp +aW +bp +dL +dL +dL +dL +dL +dL +Wt +Wt +Wt +Wt +Wt +tT +Wt +Wt +Wt +Wt +Gl +dL +zg +zg +zg +zg +zg +zg +zg +zg +zg +Ye +zg +zg +zg +zg +Xx +SB +Yu +zg +Gl +sH +jA +fx +fx +qa +BE +dU +Jt +Hg +ah +Hg +Fa +sH +sH +sH +sH +Rq +XX +sH +dL +Wt +Wt +Wt +Wt +rd +Wt +Wt +Wt +Wt +Wt +Fi +Fi +ug +Wt +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +nR +nR +nR +dL +bp +is +bp +"} +(11,1,1) = {" +bp +qk +bp +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +dL +hU +Wv +hU +Wv +xm +Wv +hU +Wv +za +xA +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +uj +yQ +yQ +QL +Wv +hU +Wv +Wv +Wv +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +zg +Xn +HK +HK +zg +Gl +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +dL +dL +sH +jf +YQ +sH +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +rd +Fi +Fi +Fi +Wt +dL +nE +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +nR +bh +Gl +Gl +bp +aW +bp +"} +(12,1,1) = {" +bp +aW +bp +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +dL +hU +Wv +hU +Wv +Wv +Wv +xm +Wv +uj +yQ +oK +yQ +zj +Wv +JU +yQ +QL +Wv +hU +Wv +Wv +Wv +Wv +hU +Wv +hU +xA +Wv +Wv +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +Wt +Ya +Wt +Wt +Wt +tT +Wt +Wt +dL +Gl +wG +wG +wG +wG +wG +Gl +wG +wG +wG +wG +wG +Gl +zg +gK +HK +HK +zg +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +hK +jf +jf +sH +Gl +Wt +Wt +rd +Wt +Wt +Wt +Wt +Wt +Gl +Wt +Fi +QZ +UB +Wt +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +nR +Gl +GR +Gl +bp +aW +bp +"} +(13,1,1) = {" +bp +aW +bp +dL +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +dL +dL +hU +Wv +hU +Wv +za +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +oK +zj +Wv +hU +Wv +uj +zj +Wv +JU +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +zd +La +uC +Wt +La +La +La +Wt +dL +Gl +wG +RR +sN +cl +wG +Gl +wG +IA +bl +IA +wG +Gl +zg +kq +HK +HK +zg +Gl +Wt +Wt +Wt +Wt +Wt +rd +Wt +Wt +Gl +sH +sH +sH +sH +sH +sH +sH +Tn +ZL +sH +Gl +Wt +Fi +Fi +te +te +te +te +Wt +rd +Wt +Wt +Wt +Wt +Wt +dL +dL +nR +nR +Gl +nR +nR +nR +dL +dL +dL +Gl +nE +nR +Gl +Gl +Gl +bp +aW +bp +"} +(14,1,1) = {" +bp +aW +bp +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +tU +tU +tU +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +JU +yQ +QL +Wv +hU +Wv +DY +DY +DY +Wv +hU +Wv +xm +Wv +hU +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +bp +aW +bp +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Wt +rv +La +La +Wt +La +La +wf +Wt +dL +Gl +wG +HP +bl +bl +wG +Gl +wG +Pc +HP +nY +wG +Gl +zg +IC +HK +HK +zg +Gl +Wt +SO +ry +Wt +Fi +Fi +Fi +Wt +Gl +sH +oI +ga +dG +ga +ga +dG +ga +Wk +sH +Gl +Wt +dh +Fi +Fi +Fi +Fi +Fi +Wt +XO +XO +Ms +HC +XO +Wt +dL +dL +Gl +nR +Gl +Gl +Gl +Gl +Gl +nR +dI +Gl +dL +nR +ey +Gl +Gl +bp +aW +bp +"} +(15,1,1) = {" +bp +aW +bp +dL +dL +tU +tU +tU +Ma +tU +tU +tU +tU +dL +dL +dL +dL +hU +Wv +hU +Wv +hU +Wv +Wv +Wv +hU +Wv +hU +Wv +DY +LA +DY +Wv +hU +Wv +Wv +Wv +hU +Wv +za +uj +yQ +yQ +yQ +QL +Wv +bp +aW +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +ab +La +pA +Wt +Dt +CG +NI +Ya +dL +Gl +wG +tc +bl +Mv +wG +Gl +wG +FZ +bl +IA +wG +Gl +zg +Gz +JT +dQ +zg +Gl +Wt +Ae +Fi +rd +st +Nv +Fi +Wt +Gl +sH +tW +Pr +vC +Pr +vC +Pr +vC +Zq +sH +Gl +Wt +FQ +Fi +Fi +Fi +Fi +ug +Wt +XO +qK +XO +qK +Ms +Wt +dL +dL +nR +Gl +Gl +Ol +Gl +Gl +GR +nR +dL +Gl +dL +nR +Gl +Gl +Gl +bp +aW +bp +"} +(16,1,1) = {" +bp +aW +bp +dL +dL +dL +tU +tU +tU +tU +tU +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +uj +yQ +zj +Wv +hU +Wv +hU +Wv +DY +DY +DY +Wv +hU +Wv +za +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +hU +Wv +bp +aW +bp +Wt +Fi +Fi +Fi +Fi +Fi +Wt +Gl +Wt +La +La +La +tT +La +Ri +La +Wt +dL +Gl +wG +CI +bl +bl +wG +Gl +wG +bI +bl +ew +wG +Gl +zg +zg +zg +zg +zg +Gl +Wt +Wt +Wt +Wt +Nv +io +gi +Wt +Gl +sH +Dh +Pr +cb +Pr +Rs +Pr +ce +Zq +sH +Gl +Wt +dc +Fi +Fi +Fi +Fi +Fi +Wt +HC +Ms +XB +XO +XO +Wt +dL +dL +nR +GR +Gl +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +nR +dL +nR +nR +bp +is +bp +"} +(17,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +hU +Wv +hU +Wv +oK +zj +Wv +xm +Wv +bp +qk +bp +Wt +Fi +Fi +Fi +Fi +Fi +Wt +Gl +Wt +La +EY +FP +Wt +eA +La +iU +Wt +dL +Gl +wG +GJ +bl +HP +wG +Gl +wG +rB +bl +IA +wG +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Wt +Nv +ry +rd +Fi +Nv +Jf +Wt +Gl +sH +Dh +Pr +Tb +Pr +oD +Pr +zz +Zq +sH +Gl +Wt +Kb +ug +Fi +Fi +Fi +Fi +Wt +XO +XO +XO +XO +qK +Wt +dL +dL +nR +Gl +Gl +Gl +Gl +Gl +Gl +nR +dL +Gl +dL +dL +dL +dL +dI +bp +aW +bp +"} +(18,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +KV +gE +gE +gE +Vk +dL +dL +dL +dL +dL +hU +Wv +uj +yQ +yQ +yQ +zj +Wv +hU +Wv +uj +yQ +zj +Wv +JU +yQ +GV +Wv +hU +yQ +GV +Wv +uj +yQ +GV +Wv +Wv +Wv +Wv +bp +aW +bp +Wt +Fi +IL +eO +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +wG +RU +bl +rh +wG +Gl +wG +PK +bl +OJ +wG +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +XC +Aq +Wt +QZ +kc +Cy +Wt +Gl +sH +Vs +Pr +bZ +Pr +bZ +Pr +bZ +Zq +sH +Gl +Wt +Fi +Fi +Jf +Jf +Jf +Jf +Wt +qK +XO +XO +XO +HC +Wt +dL +dL +nR +Gl +Gl +nR +nR +Gl +Gl +Gl +dL +Gl +dL +dL +dL +dL +dL +bp +aW +bp +"} +(19,1,1) = {" +bp +qk +bp +dL +dL +dL +dL +gE +Ks +gE +Ks +gE +dL +dL +dL +dL +dL +xm +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +xm +Wv +Wv +JU +QL +Wv +bp +aW +bp +Wt +Fi +Fi +Fi +Fi +Fi +rd +Gl +Gl +Gl +Gl +Gl +dL +dL +dL +dL +dL +dL +Gl +wG +wG +tu +wG +wG +tu +wG +wG +tu +wG +wG +Wt +Qr +rl +uc +uc +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +sH +Fm +fw +zI +hF +xY +kX +PI +IY +sH +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +dL +nE +dL +dL +dL +dL +dL +nR +dL +Gl +dL +dL +dL +Gl +nR +bp +aW +bp +"} +(20,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +gE +gE +gE +gE +gE +dL +dL +dL +dL +dL +Wv +Wv +JU +yQ +yQ +yQ +yQ +yQ +GV +Wv +JU +yQ +yQ +yQ +yQ +yQ +yQ +yQ +GV +yQ +yQ +QL +Wv +Wv +Wv +Wv +Wv +hU +Wv +bp +aW +bp +Wt +Fi +Fi +Fi +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +dL +Gl +wG +ec +bl +bl +Ta +bl +Ta +bl +bl +EX +wG +Wt +fm +La +uc +fv +Wt +Gl +Gl +Gl +Gl +Wt +QZ +Js +iH +Wt +Gl +sH +sH +sH +sH +sH +sH +sH +sH +sH +sH +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +nR +Gl +Gl +Gl +bp +aW +bp +"} +(21,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +gE +Ks +gE +Ks +gE +dL +dL +dL +dL +dL +za +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +uj +yQ +yQ +yQ +zj +Wv +uj +yQ +bp +aW +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +lH +Fi +Wt +Fi +ry +Fi +Wt +dL +dL +Gl +wG +qL +bl +bl +bl +Ob +Ob +Ob +bl +bl +HH +Wt +Wt +Ei +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Fi +Jf +Fi +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +nR +Gl +Gl +GR +bp +is +bp +"} +(22,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +KV +gE +gE +gE +Vk +dL +dL +dL +dL +dL +hU +yQ +yQ +QL +Wv +za +Wv +JU +yQ +yQ +yQ +yQ +yQ +yQ +QL +Wv +hU +Wv +Wv +za +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +bp +aW +bp +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Wt +Fi +Fi +rd +Fi +Fi +te +Wt +dL +dL +Gl +wG +qL +bl +HP +bl +PB +wY +PB +bl +bl +HH +Wt +Ap +La +Wt +iU +La +La +NI +NI +La +Wt +vt +Fi +Fi +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +dL +dL +dL +nR +Gl +Gl +Gl +bp +aW +bp +"} +(23,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +hU +Wv +Av +hU +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +hU +Wv +oK +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +QL +Wv +bp +aW +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Wt +qw +aS +Wt +QZ +Fi +Cy +Wt +dL +dL +Gl +wG +qL +bl +bl +bl +Gt +PB +PB +bl +bl +PB +Wt +La +La +tT +La +La +Ri +Yq +Yq +La +Wt +Fi +Dq +Fi +Wt +Wt +nm +zU +La +Wt +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +LJ +dL +bp +aW +bp +"} +(24,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +hU +Wv +JU +GV +Wv +hU +Wv +JU +yQ +yQ +yQ +yQ +QL +Wv +uj +yQ +GV +Wv +xm +Wv +Wv +Wv +Wv +Wv +Wv +Wv +Wv +xm +Wv +bp +aW +bp +Wt +xy +eo +eo +eo +Nz +Wt +Gl +Wt +Wt +Wt +Wt +Fi +Dq +Jf +Wt +dL +dL +Gl +wG +ZW +Zj +kP +bl +Vh +Vh +Vh +HP +bl +HM +Wt +JY +qT +Wt +Fn +La +Zg +La +La +Va +Wt +cf +Fi +hJ +Wt +Wt +ct +La +La +tT +Gl +Gl +dL +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Pj +Pj +Pj +Pj +Pj +Pj +Pj +dL +Gl +Gl +dL +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(25,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +hU +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +hU +Wv +Wv +Wv +Wv +Wv +Wv +Wv +za +Wv +Wv +Wv +Wv +za +Wv +Wv +Wv +bp +qk +bp +Wt +vS +Fi +Fi +Fi +by +Wt +Gl +Wt +Fi +Fi +rd +Fi +Fi +Fi +Wt +dL +dL +Gl +wG +wG +wG +wG +wG +wG +wG +wG +wG +wG +wG +Wt +Wt +Wt +Wt +Wt +tT +Wt +Ya +Wt +Wt +Wt +Wt +rd +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +dL +CQ +HJ +zn +Mu +TM +wZ +zb +CQ +vY +ny +hy +CQ +dL +Gl +dL +Pj +td +Cm +Pj +sk +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +qp +CC +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(26,1,1) = {" +bp +qk +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +uj +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +yQ +zj +Wv +JU +yQ +yQ +yQ +yQ +bp +aW +bp +Wt +vS +Fi +yL +Dq +Fi +rd +Gl +Wt +SO +yb +Wt +md +yb +Fi +rd +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +CQ +kb +kb +kb +kb +kb +kb +Uw +zb +JE +ag +CQ +dL +Gl +dL +Pj +Cm +Tz +Pj +bo +Bn +Cm +vK +dL +Gl +Gl +dL +CQ +qp +Wd +Wd +CQ +SN +gf +CQ +bp +is +bp +"} +(27,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +uV +Fi +yb +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +CQ +oq +JE +JE +vM +JE +kb +CQ +Uc +JE +qB +CQ +dL +Gl +dL +Pj +UK +Cm +Pj +Cm +aE +Cm +Pj +dL +Gl +Gl +dL +SJ +Wd +Wd +Wd +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(28,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +KV +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +Wt +rd +Wt +rd +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +FE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +CQ +IF +vM +vM +vM +JE +Bl +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Uy +Cm +Pj +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +SJ +pc +Wd +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(29,1,1) = {" +bp +aW +bp +dL +TE +VZ +VZ +VZ +VZ +TE +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +pW +Fi +Wt +Fi +Fi +Wt +Gl +Wt +Wt +Wt +Wt +rd +Wt +Wt +dL +Gl +Gl +dL +va +va +gX +gX +va +va +gX +gX +va +va +dL +dL +dL +dL +dL +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +vQ +Pa +Pa +Pa +dL +Gl +Gl +dL +CQ +kb +JE +JE +JE +JE +kb +CQ +vY +ny +hy +CQ +dL +Gl +dL +Pj +Pj +Cz +Pj +Pj +Cz +Pj +Pj +dL +Gl +Gl +dL +CQ +Wd +Wd +Hl +CQ +SN +gf +CQ +bp +aW +bp +"} +(30,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +KV +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +iD +cB +Wt +vt +jp +Wt +Gl +Wt +pW +Fi +Fi +Fi +te +Wt +dL +Gl +Gl +dL +va +uo +XU +qs +qs +qs +qs +lz +ut +va +dL +dL +dL +dL +dL +Pa +Jd +PP +PP +PP +PP +PP +PP +PP +Pa +PP +cA +cA +PP +Pa +dL +Gl +Gl +dL +SJ +XG +JE +KZ +KZ +JE +kb +Uw +zb +JE +ag +CQ +dL +Gl +dL +Pj +sh +Cm +RM +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +DQ +DQ +Wd +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(31,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +Wt +Cy +aS +Wt +Ae +dg +Wt +Gl +Wt +iD +Fi +Dq +Fi +Cy +Wt +dL +Gl +Gl +dL +gX +nj +NC +wm +NB +qs +qs +zp +Ju +va +va +va +va +va +dL +Pa +Ow +PP +nr +PP +PP +PP +PP +PP +Pa +PP +oB +Jd +PP +vQ +eK +Gl +Gl +dL +SJ +ki +JE +vM +vM +JE +kb +CQ +pJ +JE +qB +CQ +dL +Gl +dL +Pj +Cm +Cm +Cm +Cm +dK +Cm +vK +dL +Gl +Gl +eK +lY +Wd +Wd +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(32,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Wt +qf +Fi +Fi +Fi +Jf +Wt +dL +Gl +Gl +dL +gX +MX +vx +oi +kv +qs +qs +qs +qs +va +ii +qs +Ov +va +dL +Pa +PP +PP +PP +PP +wr +PP +PP +PP +Pa +PP +Jd +Jd +PP +Pa +eK +Gl +Gl +dL +CQ +cj +JE +vM +vM +JE +Bl +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Cm +Cm +Gs +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +Wd +Wd +Hl +CQ +SN +gf +CQ +bp +is +bp +"} +(33,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +Cy +Ox +as +Fi +QZ +Wt +dL +Gl +Gl +dL +va +zp +vx +oi +kv +qs +wc +wc +qs +va +MG +qs +qs +va +dL +Pa +PP +PP +PP +PU +PP +PP +wr +bT +Pa +PP +Xp +Xp +so +Pa +eK +Gl +Gl +dL +Uw +kb +JE +UT +UT +JE +kb +CQ +vY +ny +hy +CQ +dL +Gl +dL +Pj +Cm +Cm +fb +Cm +Cm +Cm +Cz +dL +Gl +Gl +dL +CQ +AO +Wd +Wd +CQ +CQ +CQ +CQ +bp +aW +bp +"} +(34,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +wT +wT +wT +Em +dL +dL +dL +ei +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +va +tt +vx +oi +kv +Db +wc +qs +tM +va +lv +lF +qs +va +dL +Pa +PP +PP +wr +PP +mU +PU +PP +PP +iE +PP +PP +PP +PP +iE +eK +Gl +Gl +dL +CQ +kb +kb +kb +kb +kb +kb +Uw +zb +JE +ag +CQ +dL +Gl +dL +Pj +wX +Cm +Cm +Nw +dK +Cm +Pj +dL +Gl +Gl +dL +SJ +qp +Wd +Wd +wo +Wd +CY +CQ +bp +aW +bp +"} +(35,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +VL +VU +VL +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +yw +qs +vx +oi +kv +Db +wc +qs +qs +yw +qs +qs +qs +va +dL +Pa +PP +PP +PP +PU +PP +PP +wr +PP +Pa +PP +PP +PP +PP +Pa +eK +Gl +Gl +dL +CQ +UP +gG +xB +UP +gG +xB +CQ +eX +JE +qB +CQ +dL +Gl +dL +Pj +UV +Cm +OX +Cm +Cm +Cm +Pj +dL +Gl +Gl +dL +CQ +qp +DO +Wd +CQ +SN +gf +CQ +bp +aW +bp +"} +(36,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +aQ +XI +XI +XI +HS +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +He +He +He +He +He +hD +He +He +He +He +He +He +dL +Gl +Gl +dL +va +Bd +DL +cK +XV +Db +Aa +qs +Fc +va +qs +qs +qs +va +dL +Pa +PP +PP +PP +PP +wr +PP +PP +PP +Pa +GT +PP +PP +so +Pa +eK +Gl +Gl +dL +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +CQ +dL +Gl +dL +Pj +Pj +Pj +Pj +Pj +Pj +Pj +Pj +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +bp +aW +bp +"} +(37,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +wT +wT +wT +Em +Em +Em +Em +wT +wT +wT +Em +Em +Em +Em +Em +Em +uR +XI +XI +Hz +XI +XI +KI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +Zv +bx +gx +He +Xk +Xk +Xk +He +Xk +Xk +Xk +He +dL +Gl +Gl +dL +va +vJ +zc +qs +qs +qs +wc +qs +kO +va +Uj +ve +sL +va +dL +Pa +Jd +PP +nr +PP +PP +PP +PP +PP +Pa +AQ +PP +DR +PP +vQ +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +Wt +dm +Fi +Wt +Vz +ry +Fi +Wt +bp +is +bp +"} +(38,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +sD +Yv +Yv +GM +GM +Yv +Em +Lw +fl +RV +sD +JL +Em +YG +YG +YG +cZ +XI +XI +XI +YG +XI +XI +XI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +hD +sl +US +uu +He +RO +US +US +He +RO +US +US +hD +dL +Gl +Gl +dL +va +va +va +va +va +va +va +va +va +va +va +va +va +va +dL +Pa +GX +PP +PP +PP +PP +PP +nr +PP +Pa +ZD +PP +PP +PP +Pa +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +Wt +SO +Fi +Wt +iD +Fi +Fi +Wt +bp +aW +bp +"} +(39,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +sD +JL +Yv +sD +sD +JL +Em +Yv +lm +lm +lm +Yv +Em +YG +YG +YG +Em +MN +XI +XI +oo +XI +XI +Gp +wT +dL +ei +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +hD +hQ +US +US +He +ot +US +nX +He +ot +US +nX +hD +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Pa +Jd +PP +Xp +Xp +Xp +Xp +PP +PP +Pa +GT +PP +PP +PP +Pa +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +RN +dL +Gl +Gl +dL +Wt +yb +Fi +Wt +cf +Fi +jq +Wt +bp +aW +bp +"} +(40,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +WB +Yv +Yv +sD +sD +Iy +Em +Lv +Yv +Yv +Yv +tV +Em +YG +Tk +Em +Em +Em +ff +XI +XI +XI +gg +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +SE +US +US +He +GP +US +XL +He +pQ +US +XL +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +Pa +iE +Pa +Pa +dL +Gl +Gl +dL +Hc +QZ +cz +di +Wt +SO +ry +Wt +Gl +RN +gD +Ws +Ws +WC +RN +mL +Ws +qb +pd +pd +qb +ZC +RN +dL +Gl +Gl +dL +Wt +Wt +rd +Wt +Wt +rd +Wt +Wt +bp +aW +bp +"} +(41,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +Qh +fE +Yv +Yv +Yv +Yv +Em +Yv +Yv +Do +Yv +Yv +Em +YG +YG +Em +Uv +Em +Em +VL +XI +VL +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +He +ar +He +He +He +ar +He +He +He +ar +He +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Pa +xz +PP +PP +PP +Pa +dL +Gl +Gl +dL +Wt +Fi +Fi +Fi +rd +Fi +Ae +Wt +Gl +RN +Ix +Ws +Ws +Ws +RN +Pw +Ws +Uz +VR +VR +Ws +Ws +RN +dL +Gl +Gl +dL +Wt +qd +Fi +ry +Fi +Fi +BT +Wt +bp +aW +bp +"} +(42,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +YK +Yv +yW +Yv +Yv +Yv +Em +Yv +mD +pZ +Sv +Yv +Em +YG +YG +Em +Jv +YG +Em +Em +Em +Em +Em +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +QQ +US +US +Xk +rL +US +US +QN +bx +US +US +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rC +sP +rC +rC +rC +rC +rC +rC +rC +rC +rC +dL +Pa +hX +PP +PP +PP +vQ +eK +Gl +Gl +dL +rd +Fi +Dq +Fi +Wt +Wt +Wt +Wt +Gl +RN +Ws +Ws +Ws +Ws +we +Ws +Ws +Ws +VR +VR +Ws +Ws +we +dL +Gl +Gl +dL +Hc +PQ +Fi +Fi +Cy +Fi +vq +Wt +bp +is +bp +"} +(43,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +Yv +Yv +tB +Yv +Yv +Yv +Em +Yv +Yv +sD +Yv +Yv +Em +YG +YG +Em +Jv +YG +Lo +YG +Al +Em +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +SF +US +US +Xk +DI +US +uQ +Xk +mt +US +hS +He +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rC +rM +rM +rM +Wc +rC +ss +rM +uM +mM +rC +dL +Pa +Jd +iJ +xc +sq +Pa +dL +Gl +Gl +dL +Wt +te +te +Fi +rd +Fi +Fi +Wt +Gl +RN +Ai +FX +MK +wR +RN +HY +Ws +Ws +VI +VI +Ws +Ws +RN +dL +Gl +Gl +dL +Wt +PQ +Fi +Fi +Cy +Fi +iQ +Wt +bp +aW +bp +"} +(44,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +MB +ad +Yv +Yv +Yv +Yv +Em +Yv +ou +Pu +ZI +Yv +Em +YG +YG +Em +tm +YG +YG +YG +yA +Em +dL +dL +dL +dL +KV +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +tO +US +US +Ug +DI +US +US +US +US +sp +US +hD +dL +Gl +Gl +dL +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +dL +rC +pK +rM +rM +JH +rC +la +rM +hT +rM +rC +dL +Pa +Pa +Pa +Pa +Pa +Pa +dL +Gl +Gl +dL +Hc +Cy +qw +us +Wt +RX +UZ +Wt +Gl +RN +RN +RN +RN +RN +RN +RN +RN +MK +Ws +Ws +MK +um +PO +dL +Gl +Gl +eK +rd +Fi +Fi +Fi +Ij +Fi +nz +Wt +bp +aW +bp +"} +(45,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +hg +qU +Ru +Yv +Yv +Yv +Em +Yv +Yv +Yv +Yv +Yv +cZ +YG +YG +Em +uT +YG +Uv +YG +MQ +Em +dL +dL +dL +TE +VZ +VZ +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +He +UY +US +US +MZ +DI +US +QN +QN +US +US +US +hD +dL +Gl +Gl +dL +oe +fy +Zx +go +Cp +Cp +oe +zC +CN +DE +oe +dL +rC +ij +rM +rM +Qy +rC +pb +rM +rM +rM +sP +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +RN +RN +RN +we +RN +RN +RN +dL +Gl +Gl +dL +Wt +Fi +Fi +yb +UI +Fi +WP +Wt +bp +aW +bp +"} +(46,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Du +MD +Ti +Yv +Yv +tV +Em +Ll +ck +ck +ck +KP +Em +mA +YG +cZ +YG +YG +SM +YG +AN +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +cv +US +US +Xk +DI +US +Xk +Xk +US +Xk +qE +He +dL +Gl +Gl +dL +bR +dO +Cp +Cp +Cp +Cp +oe +Cp +Cp +Af +oe +dL +rC +jx +nJ +rM +rM +rC +aU +rM +rM +Ef +rC +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +RN +Vp +Ws +Ws +NZ +Ws +RN +dL +Gl +Gl +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +bp +aW +bp +"} +(47,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +cE +hR +ID +Yv +Yv +Yv +Em +Ji +kF +mq +qP +Wa +Em +YG +Tk +Em +Em +Em +Em +Em +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +RO +US +Xk +Xk +DI +US +Xk +Xk +US +Xk +hv +He +dL +Gl +Gl +dL +oe +mp +rc +mp +mp +Cp +oe +wO +Cp +Cp +oe +dL +rC +rC +rC +eC +rC +rC +rC +eC +rC +rC +rC +dL +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +At +At +At +At +At +At +At +At +At +At +At +At +At +At +At +Gl +RN +Ws +Ws +tK +Ws +Ws +RN +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(48,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +XI +XI +SZ +XI +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +He +US +US +US +US +US +sp +bA +bA +US +US +hS +He +dL +Gl +Gl +dL +oe +iq +iq +iq +iq +Cp +xO +Cp +gr +Cp +oe +dL +rC +rM +rM +rM +eD +vl +WW +rM +ZS +Bh +rC +dL +Wt +qQ +Sd +JX +Sd +Wt +dL +Gl +Gl +dL +At +WF +Hr +xq +Oz +ek +ek +Rj +PX +At +uU +hC +hC +rz +At +Gl +RN +Ws +Ws +MK +Ws +Ws +RN +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(49,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +HT +Lo +cZ +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +Em +XI +eE +Ib +ud +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +hD +US +QN +QN +QN +US +US +US +US +US +US +US +hD +dL +Gl +Gl +dL +oe +rp +iq +iq +au +wd +oe +Qi +co +HE +oe +dL +rC +rM +Qy +rM +rM +rM +rM +rM +rM +rM +rC +dL +Wt +Vl +Sd +Sd +Sd +QW +eK +Gl +Gl +dL +Lr +Hr +hC +hC +hC +hC +hC +hC +hC +At +hC +hC +hC +oO +At +Gl +RN +RN +RN +RN +RN +RN +RN +dL +Gl +Gl +dL +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +bp +"} +(50,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +LE +YG +Em +YG +YG +YG +SM +YG +YG +YG +YG +YG +SM +YG +YG +Em +XI +kF +kF +kF +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +hD +uQ +Xk +Ug +Xk +mt +US +US +US +US +Xk +qE +hD +dL +Gl +Gl +dL +cX +iq +iq +iq +au +Cp +oe +oe +oe +oe +oe +dL +rC +xE +Qy +rM +rM +tA +rM +rM +rM +Gy +rC +dL +Wt +iw +Sd +dl +ng +Wt +eK +Gl +Gl +dL +Lr +Qn +hC +hC +hC +hC +hC +hC +hC +na +hC +hC +hC +hC +At +Gl +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +bp +aW +aW +IK +aW +Xr +dF +Xr +bp +aW +bp +"} +(51,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +Nu +FH +kF +uH +UW +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +He +uQ +Xk +Xk +Xk +mt +US +QN +QN +US +Xk +jK +He +dL +Gl +Gl +dL +oe +Bz +iq +iq +au +Cp +oe +LY +Cp +Cp +oe +dL +rC +rM +Qy +rM +rM +rM +rM +rM +rM +rM +rC +dL +Wt +Wt +ch +Wt +Wt +Wt +eK +Gl +Gl +dL +Lr +NT +gN +RC +uq +Rp +YO +cU +hC +At +TH +Gc +xt +ll +At +Gl +Wt +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +bp +aW +Rz +Or +cu +aW +aW +aW +bp +aW +bp +"} +(52,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +Em +Em +Em +Eq +YG +YG +YG +Lo +YG +YG +YG +Lo +YG +YG +YG +Lo +YG +Em +Zp +YG +Em +XI +kF +kF +kF +XI +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +bp +aW +bp +bp +dL +He +MP +bA +bA +bA +US +US +Xk +Rb +US +Fh +Hk +He +dL +Gl +Gl +dL +oe +ma +iq +To +iq +Cp +xO +Cp +Cp +CK +oe +dL +rC +rM +Ua +Tu +yI +MM +dw +pq +mW +vp +rC +dL +Wt +Ku +Sd +eu +VE +QW +eK +Gl +Gl +dL +At +hC +hC +hC +hC +hC +hC +hC +hC +At +At +Wt +Wt +Wt +Wt +Wt +Wt +sw +Fi +Fi +ry +Fi +Hc +dL +Gl +Gl +dL +bp +aW +Rz +Or +cu +aW +aW +aW +bp +is +bp +"} +(53,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +Em +Em +mA +YG +YG +Ys +YG +Ys +YG +Ys +YG +Ys +YG +Ys +YG +Ys +YG +YG +Em +YG +YG +Em +Nu +FH +kF +uH +UW +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +jz +aW +aW +bp +dL +He +US +US +US +US +hS +He +He +He +ar +He +He +He +dL +Gl +Gl +dL +oe +oe +Eb +oe +oe +oe +oe +Gi +Cp +Cp +oe +dL +rC +rM +rM +rM +rM +rM +rM +rM +rM +rM +rC +dL +Wt +ge +Sd +Sd +Sd +Wt +eK +Gl +Gl +dL +na +hC +hC +hC +hC +hC +hC +hC +hC +At +dL +Wt +nG +Fi +Fi +nD +Wt +Fe +Fi +JM +Fi +Fi +Wt +dL +Gl +Gl +eK +xl +aW +Rz +Or +cu +aW +aW +aW +xl +aW +bp +"} +(54,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +Em +Eq +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +YG +cZ +XI +kF +kF +kF +XI +Em +gE +gE +gE +gE +eK +eK +eK +eK +eK +eK +bp +sb +aW +aW +bp +dL +He +VX +Xk +US +Xk +qE +He +dL +dL +TE +dL +dL +dL +dL +Gl +Gl +FE +dL +dL +TE +dL +oe +mp +aL +Cp +Cp +Cp +oe +dL +rC +xE +rM +rM +rM +rM +rM +rM +rM +Gy +rC +dL +Wt +ge +Sd +By +Sd +ch +eK +Gl +Gl +dL +At +hC +hC +hC +hC +hC +hC +hC +hC +At +dL +Wt +iD +Fi +Fi +Fi +rd +Fi +Fi +MI +Fi +Fi +rd +dL +Gl +Gl +dL +bp +aW +Rz +Or +cu +aW +aW +aW +bp +aW +bp +"} +(55,1,1) = {" +bp +aW +bp +dL +TE +dL +Em +Em +dX +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +mA +YG +Em +Nu +FH +UG +uH +UW +Em +gE +gE +gE +gE +OE +eK +eK +eK +eK +eK +bp +Mh +aW +aW +bp +dL +He +AV +jG +US +Fh +Hk +He +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +oe +Bb +Cp +Cp +Cp +wH +oe +dL +rC +rM +vH +yf +rM +rM +rM +ZP +rO +rM +rC +dL +Wt +Gd +Sd +Mp +Sd +Wt +dL +Gl +Gl +dL +At +nP +bw +vb +lR +DS +Qu +jv +Ba +At +dL +Wt +Cy +HF +yb +Fi +Wt +Fq +yb +JM +Fi +Fi +Wt +dL +Gl +Gl +dL +bp +aW +aW +mz +aW +iy +Fd +iy +bp +aW +bp +"} +(56,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +Tk +Em +Em +Em +Em +Em +Em +Em +gE +gE +gE +gE +gE +eK +eK +eK +eK +eK +bp +bp +xl +bp +bp +dL +He +He +He +hD +hD +He +He +dL +Gl +Gl +gn +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +dL +oe +oe +oe +bR +oe +oe +oe +dL +rC +rC +sP +sP +rC +eC +rC +sP +sP +rC +rC +dL +Wt +Wt +Wt +Wt +Wt +Wt +dL +Gl +Gl +dL +At +At +Lr +Lr +At +At +Lr +Lr +At +At +dL +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Hc +Wt +Wt +Wt +dL +Gl +Gl +dL +bp +bp +bp +bp +bp +bp +bp +bp +bp +xl +bp +"} +(57,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +AH +Em +AH +YG +AH +YG +AH +Em +AH +YG +AH +YG +Tk +Em +YG +YG +YG +YG +YG +YG +YG +Tk +Em +Zi +gE +gE +gE +gE +op +eK +OE +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +dL +dL +dL +dL +eK +eK +eK +eK +eK +LX +"} +(58,1,1) = {" +bp +qk +bp +dL +TE +dL +iZ +YG +zP +kF +kF +kF +kF +yE +kF +kF +kF +kF +kF +yE +kF +kF +kF +kF +kF +Em +Sw +kF +kF +kF +kF +kF +kF +TD +YG +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Wu +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(59,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +zP +Iq +kF +lP +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +kF +Yk +kF +kF +kF +kF +kF +kF +kF +TD +YG +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +tk +Xy +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(60,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +zP +kF +kF +kF +kF +UG +kF +kF +kF +kF +kF +UG +kF +kF +kF +kF +kF +Em +Sw +kF +kF +kF +kF +kF +kF +TD +YG +gE +gE +gE +gE +gE +gE +gE +gE +gE +gE +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fw +Je +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(61,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +Ys +Em +Ys +YG +Ys +YG +Ys +Em +Ys +YG +Ys +YG +Tk +Em +YG +YG +YG +YG +YG +YG +YG +Tk +Em +Zi +gE +gE +gE +gE +op +eK +OE +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +LX +"} +(62,1,1) = {" +bp +aW +bp +dL +TE +dL +iZ +YG +YG +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +Tk +Em +Em +Em +Em +Em +Em +Em +gE +gE +gE +gE +gE +eK +eK +eK +eK +eK +bp +bp +xl +bp +bp +dL +sR +wi +sR +BG +sR +wi +sR +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gn +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +eK +eK +eK +eK +eK +LX +"} +(63,1,1) = {" +bp +aW +bp +dL +TE +dL +Em +Em +dX +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +mA +YG +Em +YC +YG +cG +YG +AY +Em +gE +gE +gE +gE +Vk +eK +eK +eK +eK +eK +bp +Ka +aW +aW +bp +dL +sR +QF +gz +wE +gz +qF +sR +dL +eY +Gl +Gl +Gl +gn +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +HO +HO +xi +HO +HO +HO +xi +HO +HO +HO +dL +iS +iS +uD +uD +iS +iS +iS +kT +iS +iS +iS +uD +uD +iS +iS +dL +Gl +Gl +dL +km +km +id +km +ef +ef +km +km +ef +km +km +dL +We +We +We +le +We +We +We +We +le +We +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +bp +bp +xl +bp +"} +(64,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +Em +TP +YG +YG +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +fh +YG +YG +Em +YG +YG +cZ +YG +YG +CF +YG +vZ +Em +gE +gE +gE +gE +eK +eK +eK +eK +eK +eK +bp +sb +aW +aW +bp +dL +sR +kx +wE +wE +wE +AD +wi +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +gE +HO +kY +kY +Pl +xJ +kY +kY +Pl +kY +HO +dL +iS +Te +lt +rk +ai +rD +rD +jQ +rD +rD +ai +yH +lt +bj +iS +dL +Gl +Gl +dL +km +hs +sY +sY +sY +hs +km +sY +Oy +BA +km +dL +We +Go +aY +aY +aY +QT +We +VT +bQ +Hj +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +Or +aW +aW +bp +"} +(65,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +Em +Em +mA +YG +YG +AH +YG +AH +YG +AH +YG +AH +YG +AH +YG +AH +YG +YG +Em +YG +YG +Em +Hx +YG +YG +YG +fz +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +Mh +aW +aW +bp +dL +sR +yy +wE +QU +wE +Tj +sR +dL +dL +dL +dL +TE +dL +dL +dL +FE +Gl +Gl +dL +gE +gE +Tv +kY +kY +kY +xJ +AU +kY +yg +kY +HO +dL +iS +Mw +wj +wj +jQ +wj +wj +jQ +wj +wj +jQ +wj +wj +Mo +iS +dL +Gl +Gl +dL +km +ns +sY +sY +sY +sY +id +sY +vI +GE +km +dL +We +CE +aY +WQ +aY +aY +We +GG +aY +aY +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +Mh +aW +aW +bp +"} +(66,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +Em +Em +Em +TP +YG +YG +YG +SM +YG +YG +YG +SM +YG +YG +YG +SM +YG +Em +Zp +YG +Em +jl +YG +bN +YG +RA +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +bp +bp +aW +bp +bp +dL +sR +Ps +wE +wE +wE +OI +sR +dL +Hu +WA +Hu +KE +Hu +WA +Hu +dL +Gl +Gl +dL +HO +HO +HO +kY +xJ +xJ +xJ +Os +kY +Ui +kY +HO +dL +iS +Mw +Id +wj +jQ +wj +wj +jQ +wj +wj +jQ +wj +wj +Gx +uD +dL +Gl +Gl +dL +ef +YT +sY +sY +sY +nC +km +sY +UA +sY +km +dL +We +aY +OT +WQ +aY +aY +We +OT +aY +aY +We +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +Fd +aW +aW +bp +"} +(67,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +Jm +YG +YG +YG +Lg +Em +eK +eK +eK +TE +eK +eK +eK +eK +eK +eK +dL +bp +aW +bp +dL +dL +sR +mx +wE +wE +wE +Ve +sR +dL +Hu +df +xL +gU +xL +pI +Hu +dL +Gl +Gl +dL +HO +HQ +kY +kY +kY +kY +kY +kY +kY +kY +My +HO +dL +iS +RI +wj +wj +jQ +iY +iY +jQ +iY +iY +jQ +jQ +jQ +jQ +uD +dL +Gl +Gl +dL +ef +YT +sY +sY +sY +sY +km +km +km +km +km +dL +We +VT +aY +sS +aY +aY +We +OT +aY +aY +JZ +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +bp +bp +bp +is +bp +"} +(68,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +vo +YG +uz +YG +YG +YG +Lo +YG +YG +YG +YG +YG +Lo +YG +YG +Em +JO +YG +KU +YG +Vm +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +lj +kA +kA +kA +wE +sR +dL +Hu +Ph +gU +gU +gU +gU +Hu +dL +Gl +Gl +dL +HO +PJ +kY +kY +RF +kY +kY +xX +kY +kY +cc +HO +dL +iS +jQ +jQ +jQ +jQ +jQ +jQ +jQ +jQ +rD +rD +rD +jQ +jQ +iS +dL +Gl +Gl +dL +km +sY +sY +sY +sY +sY +km +Ln +sY +nZ +km +dL +We +We +We +We +JZ +We +We +ht +aY +aY +We +eK +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(69,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +vo +vo +Em +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +YG +Em +vn +YG +cG +YG +lk +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +sR +wE +wE +wE +wE +wE +sR +dL +WA +dM +gU +gU +gU +gU +WA +dL +Gl +Gl +dL +xi +eT +kY +kY +pg +kY +kY +tC +kY +kY +cc +HO +dL +iS +NR +jQ +jQ +jQ +jQ +jQ +jQ +jQ +wj +Id +wj +jQ +CR +iS +dL +Gl +Gl +dL +km +JC +JC +vI +JC +sY +km +Ha +sY +nZ +km +dL +We +Fg +aY +We +aY +aY +ig +aY +aY +HD +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(70,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +Em +Em +Em +cZ +Em +Em +Em +Em +Em +Em +Em +Em +YG +YG +Em +Em +Em +Em +Em +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +Qb +wE +wE +wE +wE +sR +dL +Hu +vw +oH +Rw +VF +gU +Hu +dL +Gl +Gl +dL +xi +Er +kY +kY +Kk +kY +kY +tC +kY +kY +cc +HO +dL +iS +rD +rD +rD +rD +rD +rD +jQ +jQ +wj +wj +wj +jQ +jQ +iS +dL +Gl +Gl +dL +km +sY +lf +lf +sY +nC +km +al +sY +zV +km +dL +We +wt +qX +We +aY +OT +LI +aY +aY +HD +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(71,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +oJ +YG +YG +YG +Wy +YG +Em +iW +YG +eZ +YG +Cf +Em +YG +Tk +Em +XI +yi +yC +jM +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +sR +BG +sR +sR +sR +sR +dL +Hu +gU +gU +gU +gU +gU +Hu +dL +Gl +Gl +dL +xi +aZ +kY +kY +Kk +kY +kY +Eo +kY +kY +oh +HO +dL +iS +wj +Pf +Pf +Pf +wj +wj +jQ +jQ +iY +iY +iY +jQ +jQ +uD +dL +Gl +Gl +dL +km +mZ +sY +sY +sY +sY +id +sY +sY +sY +km +dL +We +aY +aY +JZ +aY +sS +aY +aY +sS +HD +We +dL +Gl +Gl +dL +eK +eK +NW +NW +NW +eK +eK +eK +bp +aW +bp +"} +(72,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +kj +vT +ka +ka +Ru +Tk +Em +qc +YG +YG +YG +Tk +Em +mA +YG +cZ +XI +XI +XI +XI +XI +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +Wx +wE +gz +sR +dL +dL +dL +Hu +qO +gU +gU +gU +UQ +Hu +dL +Gl +Gl +dL +HO +yd +kY +kY +pp +kY +kY +Eo +kY +kY +oh +HO +dL +iS +IM +jQ +jQ +jQ +jQ +wj +jQ +jQ +jQ +jQ +jQ +jQ +rD +uD +dL +Gl +Gl +dL +km +ap +sY +sY +sY +sY +km +Ci +Ci +Ci +km +dL +We +We +We +We +JZ +We +We +We +We +We +We +dL +Gl +Gl +dL +eK +NW +eK +eK +eK +NW +eK +eK +bp +aW +bp +"} +(73,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +YG +DT +vv +vv +gW +YG +Em +pS +YG +YG +YG +YG +cZ +YG +YG +Em +XI +XI +XI +XI +dj +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +jZ +wE +wE +wi +dL +dL +dL +Hu +xu +EO +fM +gU +QP +Hu +dL +Gl +Gl +dL +HO +yd +kY +kY +pp +kY +kY +Eo +kY +kY +oh +HO +dL +iS +tG +jQ +jQ +jQ +jQ +jQ +jQ +jQ +ON +wj +ty +jQ +wj +iS +dL +Gl +Gl +dL +km +km +km +km +km +zo +km +km +km +km +km +dL +We +MO +aM +aY +aY +aM +aY +aY +aM +Hb +We +dL +Gl +Gl +dL +NW +eK +eK +eK +eK +eK +NW +eK +bp +aW +bp +"} +(74,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +mA +DT +vv +vv +gW +YG +Em +Cg +YG +YG +YG +YG +Em +YG +YG +Em +XI +XI +RW +XI +Nc +Em +dL +dL +dL +TE +VZ +VZ +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +sR +on +Wf +kA +sR +dL +dL +dL +Hu +Hu +Hu +Hu +KE +Hu +Hu +dL +Gl +Gl +dL +HO +HQ +kY +kY +kY +xp +kY +kY +kY +kY +My +HO +dL +iS +KH +vR +Dg +jQ +jQ +pB +jQ +jQ +ON +RE +ty +jQ +iY +iS +dL +Gl +Gl +dL +km +TS +KA +zo +zo +zo +zo +zo +KA +zo +km +dL +We +lo +aY +aY +aY +aY +aY +aY +aY +aY +We +dL +Gl +Gl +dL +NW +eK +eK +qI +eK +eK +NW +eK +bp +aW +bp +"} +(75,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +wP +DT +vv +vv +gW +YG +Em +LR +YG +YG +YG +FD +Em +YG +YG +Em +oG +XI +XI +XI +VY +Em +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +sR +sR +sR +sR +sR +dL +dL +dL +Hu +uZ +gU +xL +gU +Ml +Hu +dL +Gl +Gl +dL +HO +HO +HO +Tv +HO +HO +HO +Tv +HO +HO +HO +HO +dL +iS +iS +iS +iS +kT +iS +iS +iS +kT +iS +iS +iS +kT +iS +iS +dL +Gl +Gl +dL +km +zo +zo +zo +zo +zo +zo +zo +zo +zo +km +dL +We +bu +aY +aY +aY +OT +ig +JD +HD +aY +le +dL +Gl +Gl +dL +NW +eK +eK +eK +eK +eK +NW +eK +bp +is +bp +"} +(76,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +YG +YG +DT +vv +vv +gW +YG +Em +LR +YG +YG +YG +cG +Em +YG +YG +Em +XI +jD +Em +Em +Em +Em +Em +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Hu +Xf +gU +gU +cM +zx +WA +dL +Gl +Gl +dL +HO +Ge +kY +kY +kY +HO +qq +kY +lO +lO +kY +HO +dL +iS +Qj +jQ +ai +jQ +lb +iS +TT +jQ +sK +iS +sg +jQ +jQ +iS +dL +Gl +Gl +dL +km +eB +Jz +CX +Jz +jY +Jz +CX +Jz +eB +km +dL +We +ht +aY +aY +aY +OT +xb +ig +HD +aY +le +dL +Gl +Gl +dL +eK +NW +eK +eK +eK +NW +eK +eK +bp +aW +bp +"} +(77,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +Em +Em +mA +DT +vv +vv +gW +YG +Em +Bp +YG +YG +YG +PG +Em +YG +YG +Em +IS +Em +Em +eQ +aB +Ad +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Hu +xa +kH +gU +gU +kK +Hu +dL +Gl +Gl +dL +HO +Aj +kY +kY +kY +HO +xj +kY +xJ +xJ +kY +HO +dL +iS +hE +jQ +jQ +jQ +qm +iS +BQ +jQ +jQ +iS +Dk +jQ +jQ +uD +dL +Gl +Gl +dL +km +zo +zo +Es +zo +zo +zo +Es +zo +zo +km +dL +We +nn +aY +aY +aY +OT +ig +ig +HD +qX +We +dL +Gl +Gl +dL +eK +eK +NW +NW +NW +eK +eK +eK +bp +aW +bp +"} +(78,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +YG +DT +vv +vv +gW +YG +Em +EV +YG +YG +YG +rY +Em +YG +Tk +Em +Em +Em +Jn +XI +XI +XI +SZ +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Hu +Hu +Hu +Hu +Hu +Hu +Hu +dL +Gl +Gl +dL +HO +Az +kY +kY +hi +HO +jS +kY +xJ +xJ +kY +HO +dL +iS +qS +jQ +jQ +jQ +Pf +iS +BQ +jQ +jQ +iS +jQ +jQ +jQ +iS +dL +Gl +Gl +dL +km +kw +lC +Es +kw +lC +kw +Es +lC +kw +km +dL +We +Ho +aY +aY +aY +OT +ig +oW +HD +aY +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(79,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +kj +IP +wg +wg +PW +Tk +Em +Co +Co +YG +YG +pU +Em +YG +YG +YG +Em +av +XI +zF +zF +zF +XI +XI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +HO +xJ +Jg +xp +kY +HO +fQ +kY +Oc +ze +kY +HO +dL +iS +xP +jQ +ER +mm +KH +iS +KH +pB +XF +iS +jI +ly +XE +iS +dL +Gl +Gl +dL +km +km +km +km +km +km +km +km +km +km +km +dL +We +aY +aY +aY +aY +OT +As +ig +HD +aY +le +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(80,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +OK +YG +YG +YG +YG +YG +Em +Co +Co +YG +YG +cG +Em +YG +YG +YG +cZ +XI +XI +Un +mv +wU +XI +XI +wT +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Uu +Uu +Uu +Uu +Uu +mk +Uu +Uu +Uu +Uu +Uu +dL +dL +dL +dL +Gl +Gl +dL +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +dL +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +iS +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +We +ZE +aY +aY +aY +aY +aY +aY +aY +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(81,1,1) = {" +bp +qk +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +Em +Em +wT +wT +wT +Em +Em +Em +Em +wT +wT +wT +Em +Em +Em +Em +Em +Em +av +XI +zF +zF +zF +XI +XI +wT +dL +ei +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +Uu +Ry +Ry +Lz +Uu +me +VD +VD +hA +VD +VD +Uu +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +We +We +We +We +We +We +We +We +We +We +fY +aY +bt +sS +NP +aY +aY +RG +bQ +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(82,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +Tp +XI +XI +XI +Yn +Em +Em +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +NA +Lk +VD +Uu +Pz +VD +mn +VD +VD +VD +Uu +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +dL +dL +dL +We +Dw +BD +NM +BD +BD +NM +BD +BD +We +ht +aY +aY +We +We +We +We +We +We +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(83,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +Em +bD +XI +XI +Em +Em +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +NA +VD +qZ +Zb +VD +VD +WH +VD +VD +VD +Zb +VZ +VZ +VZ +VZ +Gl +Gl +dL +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +tf +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +BD +BD +BD +Th +BD +BD +We +aY +aY +aY +We +uY +aY +aM +aY +rg +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(84,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Em +wT +wT +wT +Em +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +TK +VD +VD +Uu +VD +VD +TR +VD +VD +vh +Uu +dL +dL +dL +dL +Gl +Gl +dL +tf +Ly +Ck +Za +Za +Ck +Za +tf +Gj +jP +Za +AS +hV +tf +pi +Sd +ge +Sd +cV +Wn +Cy +cz +Cy +us +ry +Fi +Qv +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +We +aY +aY +aY +We +aY +Ux +aY +aY +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(85,1,1) = {" +bp +aW +bp +dL +TE +dL +dn +dL +dn +dL +dn +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +ei +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Uu +Uu +Uu +Uu +lJ +VD +du +VD +VD +mn +mk +dL +dL +dL +dL +Gl +Gl +dL +tf +tJ +Za +Za +FV +Yg +Za +tf +Ld +OM +qh +EC +lG +tf +Rm +Sd +XP +Sd +sX +Wn +Cy +Jh +Ny +us +Fi +Fi +Fi +Hc +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +Sj +BD +We +aY +aY +Zo +We +YR +aY +aY +SX +qX +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(86,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Ok +VD +ui +Uu +VD +VD +Mj +VD +VD +mn +mk +dL +dL +dL +dL +Gl +Gl +dL +VH +xe +Za +Za +Ot +Yg +Za +ZN +pH +pH +pH +pH +pH +tf +mw +Sd +ur +Sd +lT +Wn +Jf +Jf +Jf +Fi +Fi +Fi +QZ +Hc +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +Bk +aY +aY +aY +JZ +aY +aY +aY +aY +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(87,1,1) = {" +bp +aW +bp +dL +TE +dL +dn +dL +dn +dL +dn +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +nb +VD +VD +Zb +VD +VD +cs +VD +VD +mn +mk +dL +dL +dL +dL +Gl +Gl +dL +tf +OY +Za +Za +Ot +Yg +Za +tf +pH +Ac +eS +qA +pH +tf +Xg +Sd +Sd +Sd +Sd +rd +Fi +Fi +Fi +Fi +Fi +Fi +Cy +Hc +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +We +Cw +aY +aY +We +ht +bt +YR +Ux +aY +We +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(88,1,1) = {" +bp +aW +bp +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +bp +qk +bp +dL +dL +Uu +WV +oX +VD +Uu +Ik +VD +VD +Sr +VD +mn +Uu +dL +dL +dL +dL +Gl +Gl +dL +tf +WT +Np +Za +Za +Np +pa +tf +pH +pH +pH +pH +pH +tf +Sd +Sd +Sd +Sd +Sd +Wn +dg +yb +Fi +Fi +xf +lS +Jh +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +bL +bL +bL +BD +BD +BD +We +bn +aY +Od +We +aY +aY +aY +aY +qX +We +dL +Gl +Gl +dL +bO +Mz +Mz +Mz +Mz +Mz +Mz +Mz +bp +aW +bp +"} +(89,1,1) = {" +bp +aW +bp +dL +TE +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +VZ +TE +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +Uu +dL +dL +dL +dL +Gl +Gl +dL +tf +tf +tf +tf +tf +tf +tf +tf +Ld +pH +pH +pH +lG +tf +rx +Sd +Sd +By +oV +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +BD +BD +BD +BD +BD +BD +We +bn +aY +FB +We +aY +Dm +Ux +aY +aY +We +dL +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(90,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +tf +Wq +Za +Za +tf +pH +pH +eb +pH +pH +pH +pH +pH +tf +ZZ +Sd +Sd +Sd +Sd +Wn +Sd +Sd +Wn +jp +Ae +Fi +Fi +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +BD +BD +Sn +Sj +BD +Sn +LN +gT +We +Gb +Gb +Gb +We +ZE +sj +dx +Hy +sj +We +dL +Gl +Gl +dL +rU +dL +dL +dL +ZK +dL +dL +dL +bp +aW +bp +"} +(91,1,1) = {" +bp +qk +bp +dL +dL +dL +sn +ub +vL +ub +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +dL +Gl +Gl +dL +tf +hZ +Za +Za +ZN +pH +pH +tf +Yo +hV +PT +pH +Ne +tf +mo +Sd +Sd +Sd +Sd +ch +Sd +Sd +rd +Fi +Fi +Fi +SO +Wn +dL +Gl +Gl +dL +dL +dL +dL +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +We +dL +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(92,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +dL +dL +fs +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +fs +dL +Gl +Gl +dL +tf +Ag +Np +wq +tf +pH +lG +tf +tf +yD +tf +eb +tf +tf +Wn +ch +Wn +QW +Wn +Wn +rx +Sd +Wn +dg +yb +Fi +Pb +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +dL +rU +dL +dL +ZK +dL +dL +dL +dL +bp +aW +bp +"} +(93,1,1) = {" +bp +aW +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +bp +dL +dL +fs +MU +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +fs +dL +Gl +Gl +dL +tf +tf +tf +tf +tf +fT +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +XJ +Sd +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +ZK +dL +bp +aW +bp +"} +(94,1,1) = {" +bp +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +bp +dL +dL +fs +aN +aN +fs +it +it +it +lM +it +it +it +fs +aN +aN +fs +dL +Gl +Gl +dL +tf +cC +Zs +JP +tf +pH +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +Sd +Sd +Wn +iD +Fi +PF +Kd +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(95,1,1) = {" +bp +aW +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +dL +dL +fs +nM +aN +it +rF +rF +rF +rF +rF +rF +rF +it +aN +aN +fs +dL +Gl +Gl +dL +tf +HU +Zs +Zs +Fj +pH +lG +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +rx +Sd +rd +Fi +Fi +PF +Zk +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(96,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +WZ +aN +it +rF +sa +rF +rF +rF +rF +rF +it +aN +aN +fs +dL +Gl +Gl +dL +vf +Zs +Zs +wb +tf +fT +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +XJ +xF +Wn +Fi +Fi +PF +PF +Hc +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +IJ +IJ +XH +XH +IJ +IJ +IJ +Gu +IJ +XH +XH +IJ +IJ +Mz +Mz +Mz +Mz +Mz +Mz +Mz +mC +Mz +se +dL +VW +Mz +Mz +Mz +bp +aW +bp +"} +(97,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +wh +aN +it +rF +sa +rF +rF +rF +rF +rF +it +aN +aN +fs +dL +Gl +Gl +dL +tf +yR +fL +Zs +tf +pH +pH +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +Sd +xF +Wn +yl +Fi +BN +Km +Wn +dL +Gl +Gl +dL +dL +dL +dL +dL +dL +dL +dL +IJ +Au +vO +vO +nK +IJ +AJ +vO +xW +vO +vO +vO +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(98,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +sa +rF +rF +rF +rF +rF +it +cr +aN +fs +dL +Gl +Gl +dL +tf +tf +tf +tf +tf +yD +yD +tf +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +Wn +QW +QW +Wn +Wn +Wn +Wn +Wn +Wn +dL +Gl +Gl +dL +bO +Mz +Mz +Mz +Mz +Mz +Mz +IJ +oE +vO +vO +vO +Gu +vO +vO +vO +zD +iI +fc +IJ +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(99,1,1) = {" +bp +qk +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +Yb +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +lM +rF +sa +rF +rF +rF +rF +rF +lM +aN +aN +fs +dL +Gl +Gl +FE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +rU +dL +dL +tU +dL +dL +dL +IJ +in +FM +SS +Rg +IJ +xK +vO +vO +Ds +fc +fc +ia +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(100,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +rF +rF +rF +rF +In +it +aN +aN +fs +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +dL +tU +tU +tU +tU +dL +IJ +IJ +IJ +IJ +IJ +IJ +xK +vO +vO +Ds +fc +fc +ia +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(101,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +ww +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +ax +rF +rF +In +In +it +aN +aN +fs +dL +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +rU +tU +tU +tU +tU +dL +dL +IJ +Fo +xW +vO +jw +IJ +xK +vO +UF +xk +tX +fc +IJ +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(102,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +tp +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +rF +rF +In +In +wu +it +aN +aN +fs +dL +Gl +Gl +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bO +Mz +ws +dL +tU +tU +dL +dL +dL +XH +Ez +vO +vO +vO +Gu +vO +FM +vO +vO +vO +vO +IJ +BC +dL +dL +dL +dL +dL +Us +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(103,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +it +rF +rF +rF +rF +In +wu +wu +it +aN +aN +fs +dL +Gl +Gl +dL +dL +KV +gE +gE +gE +gE +gE +KV +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +XH +vO +vO +vO +vO +IJ +IJ +IJ +Gu +IJ +IJ +IJ +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(104,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +zw +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +gk +gk +gk +rE +rE +gk +gk +gk +rE +rE +gk +gk +gk +rE +rE +gk +gk +gk +gk +dL +dL +dL +dL +dL +dL +dL +fs +lI +aN +fs +it +it +it +lM +it +it +it +fs +aN +aN +fs +dL +Gl +Gl +dL +dL +gE +Ks +gE +gE +gE +Ks +gE +wI +Rv +LV +Rv +Rv +LV +Rv +Rv +LV +Rv +Rv +LV +Rv +Rv +wI +wI +wI +dL +dL +dL +dL +dL +rU +dL +dL +el +Yt +dL +uh +Yt +dL +IJ +Wj +mT +do +AJ +IJ +gO +vO +vO +xR +Kq +vO +XH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(105,1,1) = {" +bp +qk +bp +dL +eK +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +eK +dL +gk +gk +rE +rE +gk +gk +gk +pY +pY +pY +pY +Ro +pY +pY +pY +pY +ao +pY +wQ +pY +pY +ao +pY +PM +gk +dL +dL +dL +dL +dL +dL +dL +fs +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +fs +dL +Gl +Gl +dL +dL +gE +gE +gE +gE +gE +gE +gE +wI +Rv +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +fu +Rv +wI +wI +dL +dL +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +IJ +IJ +IJ +IJ +IJ +IJ +Sf +vO +vO +AJ +AJ +vO +IJ +dL +dL +dL +dL +Us +dL +dL +dL +dL +dL +dL +dL +Us +dL +dL +bp +aW +bp +"} +(106,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +gk +Ro +pY +pY +pY +ao +pY +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +fs +zB +aN +aN +aN +aN +aN +aN +aN +aN +ft +AR +aC +KS +fs +dL +Gl +Gl +dL +dL +gE +gE +gE +gE +gE +gE +gE +wI +Rv +BY +Rv +wI +wI +wI +wI +Ec +wI +wI +wI +Rv +Rv +BY +Rv +vX +wI +wI +dL +dL +dL +rU +dL +dL +Yt +el +dL +uh +uh +dL +IJ +QR +vO +xW +yT +IJ +jj +vO +vO +AJ +AJ +vO +Gu +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(107,1,1) = {" +bp +aW +bp +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +pY +pY +pY +pY +pY +Nn +PM +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +fs +dL +Gl +Gl +dL +dL +wI +wI +wI +Rv +wI +wI +wI +wI +Rv +BY +Rv +wI +ej +LV +Rv +Rv +LV +nU +wI +wI +Rv +BY +Rv +vX +yY +wI +dL +dL +dL +rU +dL +dL +el +Yt +dL +Yt +Yt +dL +XH +ms +vO +vO +vO +Gu +vO +vO +vO +Mq +Mq +vO +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(108,1,1) = {" +bp +aW +bp +dL +dL +CH +CH +CH +CH +CH +CH +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +eW +pY +pY +pY +pY +pY +fD +pY +fD +pY +fD +pY +fD +pY +Vo +pY +fD +pY +fD +pY +pY +pY +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +FE +Gl +Gl +dL +dL +wI +Rv +Rv +Rv +Rv +LV +Rv +wI +Rv +BY +Ig +wI +iV +Rv +Rv +Rv +Rv +Rv +pn +wI +jb +BY +Rv +Rv +vX +wI +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +IJ +Gk +vO +Kx +aq +IJ +xT +fH +FM +vO +vO +vO +XH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(109,1,1) = {" +bp +aW +bp +dL +dL +CH +ir +PV +Dc +PV +CH +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +PM +pY +pY +vz +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +ZH +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +wI +Rv +BY +BY +BY +BY +BY +wI +Rv +BY +Rv +Ec +Rv +Rv +Rv +Rv +Rv +Rv +QA +wI +jb +BY +Rv +Rv +Rv +Rv +wI +dL +dL +rU +dL +dL +Yt +el +dL +Yt +Yt +dL +IJ +IJ +IJ +IJ +IJ +IJ +IJ +IJ +IJ +UJ +IJ +IJ +IJ +Mz +Mz +Mz +Mz +se +dL +VW +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +bp +aW +bp +"} +(110,1,1) = {" +bp +aW +bp +dL +dL +CH +PV +PV +PV +PV +DN +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +PM +pY +pY +vz +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +rN +AF +rN +rN +rN +rN +rN +ZH +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Gl +dL +dL +wI +pD +BY +BY +BY +BY +BY +hr +BY +BY +Rv +wI +xU +Rv +kS +Rv +Rv +Rv +vX +wI +jb +BY +BY +BY +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +uh +dL +dL +dL +dL +dL +dL +dL +IJ +Hn +Sa +Sa +XY +Yr +IJ +dL +KK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(111,1,1) = {" +bp +aW +bp +dL +dL +CH +CH +CH +CH +CH +CH +eK +eK +eK +eK +eK +eK +dL +rE +pY +pY +VK +pY +pY +pY +pY +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +rP +pY +pY +pY +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +BY +BY +BY +BY +BY +wI +Rv +BY +Rv +wI +vm +Sm +Rv +Rv +Rv +Sm +KB +wI +Rv +BY +Rv +Rv +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +IJ +Sa +Pn +Sa +Sa +Zw +IJ +dL +dL +dL +dL +dL +dL +KK +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(112,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +gk +pY +pY +pY +pY +pY +jc +PM +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +jO +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +vX +vX +vX +vX +Ur +wI +wI +hr +wI +wI +wI +wI +wI +ep +wI +wI +wI +wI +wI +Ec +wI +wI +BY +Rv +wI +dL +dL +rU +dL +dL +el +el +dL +Yt +uh +dL +Yt +Wz +dL +GC +Yt +dL +IJ +Ss +Cc +Sa +ue +eg +IJ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(113,1,1) = {" +bp +qk +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +gk +gk +dZ +pY +pY +pY +lg +pY +pY +fD +pY +fD +pY +fD +pY +fD +pY +fD +pY +fD +pY +fD +pY +pY +PM +rE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +pD +Rv +Rv +Rv +Rv +Rv +wI +Rv +Rv +Rv +wI +wI +Lp +rZ +rZ +rZ +rZ +wI +wI +Rv +Rv +Rv +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +Wz +Yt +dL +Yt +Yt +dL +IJ +RS +Sa +Sa +pj +ue +IJ +dL +dL +dL +dL +KK +dL +tU +tU +tU +tU +tU +dL +dL +dL +dL +bp +aW +bp +"} +(114,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +dL +dL +gk +gk +gk +gk +oA +gk +gk +pY +pY +pY +pY +dZ +pY +pY +pY +pY +lg +pY +wQ +pY +pY +lg +pY +PM +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +Rv +Rv +WU +tw +ul +wI +pD +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +Rv +Rv +Ig +wI +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +Yt +Yt +dL +GC +Yt +dL +IJ +Ss +Sa +Cc +Sa +Sa +UJ +dL +dL +dL +dL +dL +tU +tU +tU +tU +tU +tU +tU +dL +dL +dL +bp +aW +bp +"} +(115,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +VS +PZ +PZ +gk +gk +gk +gk +gk +gk +gk +gk +rE +rE +gk +gk +gk +rE +rE +gk +oA +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +TE +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +wI +wI +Ec +wI +wI +wI +wI +yq +Rv +yq +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +cq +Rv +Mt +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +el +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +GC +dL +IJ +Cc +Sa +Cc +Sa +LU +IJ +dL +KK +dL +dL +tU +tU +tU +Ma +Ma +Ma +Ma +tU +tU +tU +dL +bp +aW +bp +"} +(116,1,1) = {" +bp +aW +bp +dL +dL +QS +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +eK +gk +rQ +PZ +PZ +yp +PZ +PZ +ld +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +hW +HL +HL +HL +hW +hW +dL +dL +TE +dL +dL +hW +hW +HL +HL +hW +hW +dL +dL +wI +kS +Rv +Rv +Rv +Rv +lW +wI +Jr +Rv +TO +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +el +Yt +dL +Yt +uh +dL +Yt +Wz +dL +Yt +Yt +dL +IJ +AL +Sa +Sa +Sa +vU +IJ +ic +dL +dL +tU +tU +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +bp +aW +bp +"} +(117,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +gk +TG +PZ +PZ +PZ +PZ +PZ +BH +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +qR +Rx +Py +Rx +up +hW +dL +dL +TE +dL +dL +hW +if +fr +jh +OQ +hW +dL +dL +wI +Pd +Rv +Rv +Rv +Rv +Ig +wI +nT +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +Xm +wI +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +IJ +IJ +UJ +IJ +IJ +IJ +IJ +ml +dL +dL +tU +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +bp +aW +bp +"} +(118,1,1) = {" +bp +qk +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +tN +eK +Ki +eK +eK +Ki +wF +eK +eK +eK +gk +gk +Jk +PZ +PZ +PZ +Gw +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +BM +BM +BM +BM +BM +hW +hW +hW +cH +hW +hW +hW +if +jh +jh +bC +hW +dL +dL +wI +ko +Rv +Rv +sE +Rv +Rv +wI +Jr +Rv +kE +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +el +Yt +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +GC +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +tU +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +bp +is +bp +"} +(119,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +gk +gk +Fy +LK +TJ +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +HL +BM +BM +oL +BM +BM +hW +Rx +RT +BM +RT +Rx +hW +if +jh +jh +NJ +hW +dL +dL +wI +Of +Rv +xI +YU +Rv +Rv +wI +Jr +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +el +dL +Yt +Yt +dL +Wz +Yt +dL +Yt +Yt +dL +dL +dL +dL +dL +ub +rU +dL +dL +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +bp +aW +bp +"} +(120,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +eK +eK +dL +dL +gk +gk +gk +gk +gk +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +HL +BM +BM +BM +BM +BM +cH +BM +BM +BM +BM +BM +eM +jh +jh +jh +Dz +hW +dL +dL +wI +Ca +Rv +Rv +Rv +Rv +rJ +wI +nT +mR +yq +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +Xm +wI +BY +Ig +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +uh +Yt +dL +Yt +Yt +dL +GC +Yt +dL +dL +dL +dL +dL +SW +rU +dL +dL +KK +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +bp +aW +bp +"} +(121,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +zw +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +HL +BM +bE +Rx +Rl +ME +hW +hW +hW +cH +hW +hW +hW +jh +jh +jh +jh +hW +dL +dL +wI +kS +Rv +Rv +Rv +Rv +Rv +wI +Jr +Rv +Jr +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +nV +Rv +nV +wI +BY +Rv +wI +dL +dL +rU +dL +dL +Yt +Yt +dL +Yt +Yt +dL +Yt +Wz +dL +Yt +GC +dL +dL +dL +dL +dL +ub +rU +dL +dL +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +Ma +Ma +tU +dL +bp +aW +bp +"} +(122,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +BM +bE +UX +Rx +ME +hW +mX +mX +mX +mX +mX +hW +jh +jh +jh +jh +hW +dL +dL +wI +wI +wI +wI +wI +Ec +wI +wI +TO +Rv +TO +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +Dd +Rv +Dd +wI +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +tU +tU +Ma +Ma +Ma +Ma +Ma +Ma +tU +tU +dL +bp +aW +bp +"} +(123,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +BM +uW +pu +sc +BM +hW +mX +Px +Px +Px +mX +hW +mF +ZB +mG +St +hW +dL +dL +wI +UM +Rv +Rv +LV +Rv +Rv +wI +pD +Rv +Rv +fa +rZ +rZ +rZ +rZ +rZ +rZ +rZ +kL +Rv +Rv +Ig +wI +BY +Ig +wI +dL +dL +dt +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Mz +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +dL +dL +dL +dL +dL +dL +tU +tU +tU +Ma +Ma +Ma +tU +tU +dL +dL +bp +aW +bp +"} +(124,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +qg +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hW +hW +hW +hW +hW +hW +hW +mX +Px +Dj +bY +mX +hW +hW +hW +hW +hW +hW +dL +dL +wI +oz +BY +BF +BF +BY +Rv +wI +Rv +Rv +Rv +wI +wI +Zu +rZ +rZ +rZ +rZ +wI +wI +Rv +Rv +Rv +wI +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +iX +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +dL +dL +dL +dL +dL +tU +tU +tU +tU +tU +dL +dL +dL +bp +is +bp +"} +(125,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Nk +Aw +An +Aw +Aw +dL +dL +dL +dL +dL +hW +ha +BM +lq +hW +EK +EK +mX +Px +xh +Px +mX +EK +EK +hW +eF +tj +hW +dL +dL +wI +pD +Nb +Gf +eN +rf +Rv +wI +wI +Ec +wI +wI +wI +wI +wI +ep +wI +wI +wI +wI +wI +Ec +wI +wI +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +Xl +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(126,1,1) = {" +bp +qk +bp +dL +dL +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +eK +Ki +eK +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +xg +Ff +Ff +Ff +pt +Aw +aT +NH +jX +jX +jX +Om +Aw +dL +dL +dL +dL +dL +hW +eH +BM +BM +hW +EK +EK +mX +Px +Dj +Px +mX +EK +EK +hW +gP +jh +hW +dL +dL +wI +Rv +Nb +cS +Yx +rf +Ig +wI +Rv +BY +Rv +wI +ej +LV +Rv +Rv +Rv +LV +pn +wI +Rv +BY +Rv +Rv +BY +Ig +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +iX +hI +hI +Ea +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(127,1,1) = {" +bp +aW +bp +dL +dL +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +eK +dL +dL +dL +ww +dL +dL +dL +dL +dL +dL +dL +Aw +Ek +Ff +Ff +Ff +mi +Aw +jo +jX +jX +Br +Br +Br +An +eK +eK +eK +dL +dL +hW +Hd +BM +BM +cH +mX +mX +mX +Px +Px +Px +mX +mX +mX +hW +jh +jh +hW +dL +dL +wI +pD +Nb +aj +Lj +rf +BY +hr +BY +BY +Rv +wI +yV +Rv +kS +Rv +Rv +Rv +vX +wI +jb +BY +BY +BY +BY +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hI +hI +hI +hI +YP +hI +hI +hI +hI +YP +hI +hI +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(128,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Ff +Ff +FS +Ff +Ff +Aw +jX +jX +jX +Br +Br +KW +Aw +eK +eK +eK +dL +dL +hW +hW +hW +hW +hW +mX +Px +Px +Ej +Px +Px +Px +Px +mX +eM +jh +jh +hW +dL +dL +wI +Rv +BY +kN +kN +BY +Rv +wI +Rv +BY +Rv +Ec +Rv +Rv +Rv +Rv +Rv +Rv +QA +wI +jb +BY +Rv +Rv +Rv +Rv +wI +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +hI +hI +hI +hI +hI +hI +hI +hI +hI +hI +hI +hI +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(129,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rG +Ff +Ff +pF +Ff +Ff +rG +jX +kz +jX +jX +jX +jX +Nk +eK +eK +eK +dL +dL +hW +lx +BM +cL +hW +mX +bY +Px +Px +Dj +Px +bY +Px +mX +hW +jh +jh +hW +dL +dL +wI +Qf +Rv +Rv +Sm +Rv +Rv +wI +Rv +BY +Ig +wI +PH +Rv +Rv +Rv +Rv +Rv +KB +wI +jb +BY +Rv +Rv +vX +wI +wI +dL +dL +rU +dL +dL +dL +lK +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +nt +hI +hI +Ea +BC +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(130,1,1) = {" +bp +aW +bp +dL +dL +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +CH +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Ff +Ff +nN +Ff +wL +Aw +jX +jX +jX +Br +Br +KW +Aw +eK +eK +eK +dL +dL +HL +BM +BM +BM +cH +mX +mX +mX +bY +Px +Px +mX +mX +mX +hW +jh +jh +hW +dL +dL +wI +wI +wI +wI +wI +wI +wI +wI +Rv +BY +Rv +wI +vm +Sm +Rv +Rv +Sm +nU +wI +wI +Rv +BY +Rv +vX +DV +wI +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +hI +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +LZ +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +is +bp +"} +(131,1,1) = {" +bp +aW +bp +dL +dL +CH +fp +fp +PV +DN +dL +dL +dL +dL +dL +dL +CH +ir +PV +ir +PV +DN +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +OS +Ff +Ff +Ff +yB +Aw +jo +jX +jX +Br +Br +Br +An +eK +eK +eK +dL +dL +hW +XD +BM +BM +hW +EK +EK +mX +Px +Px +Px +mX +EK +EK +hW +gP +jh +hW +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +BY +Rv +wI +wI +wI +wI +Ec +wI +wI +wI +Rv +Rv +BY +Rv +vX +wI +wI +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +Ea +hI +nt +hI +hI +Ea +hI +hI +Ea +hI +hI +Ea +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +uN +dL +dL +bp +aW +bp +"} +(132,1,1) = {" +bp +aW +bp +dL +dL +CH +fp +fp +PV +CH +dL +dL +dL +dL +dL +dL +CH +PV +PV +PV +PV +CH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +TN +Ff +Ff +Ff +wL +Aw +aT +Xs +jX +jX +jX +Om +Aw +dL +dL +dL +dL +dL +hW +wA +Mn +sZ +hW +EK +EK +mX +mX +mX +mX +mX +EK +EK +hW +zK +Ip +hW +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +BY +Kc +Rv +wI +wI +dL +dL +dL +dL +rU +dL +dL +dL +lK +dL +dL +dL +dL +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +dL +dL +dL +dL +dL +dL +dL +dL +Xl +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(133,1,1) = {" +bp +qk +bp +dL +dL +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +CH +CH +CH +CH +CH +CH +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +Aw +dL +dL +dL +dL +dL +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +hW +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +Rv +Sm +Rv +Rv +Sm +Rv +Rv +Sm +Rv +Rv +Sm +Rv +Rv +wI +wI +wI +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +bp +"} +(134,1,1) = {" +bp +aW +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +wI +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +bp +bp +bp +bp +aW +bp +"} +(135,1,1) = {" +bp +aW +bp +bp +bp +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +lK +dL +dL +dL +dL +lK +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +aW +aW +aW +aW +bp +"} +(136,1,1) = {" +bp +aW +aW +Rz +Or +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +nu +aW +aW +aW +bp +"} +(137,1,1) = {" +bp +Ja +aW +Rz +Or +bp +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +rU +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +bp +aW +kg +aW +aW +is +bp +"} +(138,1,1) = {" +bp +vg +aW +Rz +Or +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +aW +aW +aW +aW +zS +bp +"} +(139,1,1) = {" +bp +iK +mz +aW +aW +aW +aW +mz +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +aW +mz +aW +aW +aW +aW +aW +mz +aW +aW +aW +zS +zS +bp +"} +(140,1,1) = {" +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +"} diff --git a/maps/redgate/fantasy_dungeon.dmm b/maps/redgate/fantasy_dungeon.dmm new file mode 100644 index 0000000000..6659eaa676 --- /dev/null +++ b/maps/redgate/fantasy_dungeon.dmm @@ -0,0 +1,22373 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/caves) +"ae" = ( +/obj/structure/table/bench/marble, +/mob/living/simple_mob/vore/vampire/count, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"ah" = ( +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"az" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"aG" = ( +/mob/living/simple_mob/animal/passive/bird/goldcrest, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"aR" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"aT" = ( +/obj/structure/cult/tome, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"bg" = ( +/obj/random/pacman, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"bj" = ( +/obj/effect/rune, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"bl" = ( +/obj/structure/flora/underwater/seaweed2, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"bp" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bloodsoup, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"bw" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"bB" = ( +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"bH" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"bM" = ( +/turf/simulated/mineral/crystal, +/area/redgate/fantasy/caves) +"bW" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/underground) +"cd" = ( +/obj/structure/bed/alien, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ci" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"cr" = ( +/obj/structure/table/alien/blue, +/obj/random/mech_toy, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"cy" = ( +/turf/simulated/wall/wood, +/area/redgate/fantasy/caves) +"cz" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"cD" = ( +/obj/structure/table/bench/marble, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"cI" = ( +/obj/structure/table/marble, +/obj/random/potion_base, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cK" = ( +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cO" = ( +/obj/structure/closet/alien, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"cS" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cU" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"cW" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"dc" = ( +/obj/structure/flora/underwater/seaweed3, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"df" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"dg" = ( +/obj/structure/table/marble, +/obj/item/capture_crystal/random, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"dp" = ( +/turf/simulated/wall/tgmc/rwall, +/area/redgate/fantasy/alienbasement) +"dx" = ( +/turf/simulated/floor/lava, +/area/redgate/fantasy/caves) +"dy" = ( +/obj/fiftyspawner/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"dA" = ( +/obj/item/weapon/towel/random, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"dI" = ( +/turf/simulated/floor/water/pool, +/area/redgate/fantasy/dungeon) +"dO" = ( +/obj/structure/closet/crate/chest, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"dP" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"dX" = ( +/mob/living/simple_mob/shadekin/yellow/retaliate/dark, +/turf/simulated/floor/weird_things/dark, +/area/redgate/fantasy/dark) +"ed" = ( +/obj/item/stack/material/fur, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"ei" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/material/knife/stone/bone, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ep" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"es" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"et" = ( +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/mines) +"ev" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/coin/iron, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ew" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/spoon{ + default_material = "gold" + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ez" = ( +/obj/item/clothing/gloves/ring/material/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"eP" = ( +/obj/structure/table/alien, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"eS" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"eW" = ( +/obj/item/instrument/violin/golden, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"fB" = ( +/obj/item/weapon/bluespace_crystal, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"fI" = ( +/obj/structure/closet/coffin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/obj/random/coin, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"fK" = ( +/turf/simulated/floor/gorefloor2, +/area/redgate/fantasy/mines) +"fL" = ( +/obj/random/roguemineloot, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"fM" = ( +/obj/structure/flora/underwater/grass3, +/obj/structure/flora/underwater, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"fR" = ( +/obj/random/internal_organ, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"fS" = ( +/obj/structure/closet/crate/chest, +/obj/random/fishing_junk, +/obj/random/fishing_junk, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/obj/item/weapon/reagent_containers/food/snacks/wormdeluxe, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"fT" = ( +/obj/structure/prop/alien/computer/hybrid, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"ga" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"gi" = ( +/obj/structure/table/alien/blue, +/obj/random/pouch, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"gj" = ( +/obj/random/bluespace, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"go" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"gp" = ( +/turf/simulated/mineral/icey, +/area/redgate/fantasy/mines) +"gH" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"gJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"gL" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"gT" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"hj" = ( +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/structure/prop/war/warhead4, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"hs" = ( +/turf/simulated/wall/tgmc/rwall{ + can_open = 1 + }, +/area/redgate/fantasy/alienbasement) +"hu" = ( +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"hQ" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"hR" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"hY" = ( +/obj/item/weapon/reagent_containers/food/snacks/bearstew, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"id" = ( +/obj/random/pottedplant, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ie" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/swimsuit/stripper/stripper_pink, +/obj/item/clothing/under/swimsuit/stripper/stripper_green, +/obj/item/clothing/under/swimsuit/stripper/mankini, +/obj/item/clothing/suit/iasexy, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"ii" = ( +/obj/structure/prop/rock/round, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"iu" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"iz" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/material/knife/machete/hatchet/stone/bone, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"iQ" = ( +/obj/structure/table/alien, +/obj/random/tool/alien, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"iU" = ( +/obj/structure/closet/alien, +/obj/random/multiple/voidsuit/vintage, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"jb" = ( +/obj/structure/prop/machine/green_egg, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"jc" = ( +/obj/item/weapon/bone/skull, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"jg" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"jn" = ( +/turf/simulated/wall/stonelogs, +/area/redgate/fantasy/ratbasement) +"jA" = ( +/obj/structure/dirtybed, +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"jB" = ( +/obj/structure/prop/alien/computer, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"jD" = ( +/obj/structure/table/marble, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"jF" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"jI" = ( +/obj/structure/cult/forge, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"jL" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"jR" = ( +/obj/machinery/light/small/torch, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"kc" = ( +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"km" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"kn" = ( +/turf/simulated/wall/dungeon, +/area/redgate/fantasy/dungeon) +"kx" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ky" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"kE" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_base, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/random/fantasy_item, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"kH" = ( +/obj/structure/bed/chair/sofa/bench/marble, +/mob/living/simple_mob/vore/vampire/count_nude, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"kL" = ( +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"kM" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"kP" = ( +/obj/item/clothing/accessory/medal/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"kS" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"kZ" = ( +/obj/structure/prop/alien/computer/camera/flipped, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"lc" = ( +/obj/structure/prop/transmitter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"lp" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ls" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"lu" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"lE" = ( +/obj/structure/bed/chair/sofa/corp/corner, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"lK" = ( +/turf/simulated/floor/water/digestive_enzymes, +/area/redgate/fantasy/dungeon) +"lL" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"lR" = ( +/mob/living/simple_mob/animal/space/bear/polar{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + vore_pounce_chance = 50 + }, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"lV" = ( +/obj/structure/prop/rock/sharp, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"lZ" = ( +/obj/structure/curtain{ + color = "#FF0000" + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ma" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"me" = ( +/mob/living/simple_mob/vore/demon/engorge{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ml" = ( +/turf/simulated/wall/stonebricks{ + can_open = 1 + }, +/area/redgate/fantasy/castle) +"mr" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"mu" = ( +/obj/structure/table/marble, +/obj/random/fantasy_item/better, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"mL" = ( +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"mS" = ( +/obj/random/potion_base, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"nc" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/fantasy/alienbasement) +"no" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"np" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"nD" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"nI" = ( +/obj/structure/closet/coffin, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"nM" = ( +/obj/structure/table/alien, +/obj/random/tool/power, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"nR" = ( +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"nY" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"oh" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"oj" = ( +/obj/structure/flora/underwater/grass4, +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"ok" = ( +/obj/structure/window/plastitanium{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ou" = ( +/obj/structure/prop/rock, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"ox" = ( +/obj/structure/table/alien/blue, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"oy" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/floor/gorefloor2, +/area/redgate/fantasy/mines) +"oE" = ( +/obj/structure/prop/fantasy/anvil, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"oF" = ( +/obj/random/rigsuit/chancetofail, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"oH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"oI" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/castle) +"oN" = ( +/obj/structure/dirtybed, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"oO" = ( +/obj/structure/table/rack/shelf/wood, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"oP" = ( +/obj/structure/table/alien/blue, +/obj/item/broken_device/random, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"oT" = ( +/mob/living/simple_mob/vore/vore_hostile/leaper, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"pb" = ( +/obj/structure/outcrop/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"pd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/fienddress, +/obj/item/clothing/under/fiendsuit, +/obj/random/potion_base, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"pg" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pn" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"pr" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"pt" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/obj/random/potion_base, +/obj/random/potion, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pH" = ( +/obj/structure/table/marble, +/obj/item/weapon/telecube/randomized, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pI" = ( +/obj/random/pouch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"pJ" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pM" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"pN" = ( +/obj/structure/closet/crate/chest, +/obj/random/material, +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"pW" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"qB" = ( +/obj/structure/closet/crate/wooden, +/obj/random/bluespace, +/obj/item/stack/material/fur, +/obj/item/stack/material/fur, +/obj/item/clothing/suit/tajaran/furs, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"qE" = ( +/obj/structure/bookcase, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"qF" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"qT" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/mines) +"qV" = ( +/obj/item/clothing/ears/earring/dangle/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"qY" = ( +/obj/item/weapon/strangerock, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"rb" = ( +/turf/simulated/floor/water/blood{ + outdoors = -1 + }, +/area/redgate/fantasy/dungeon) +"rg" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"rq" = ( +/obj/item/seeds/random, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"rt" = ( +/obj/structure/table/alien/blue, +/obj/random/multiple/underdark/mechtool, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"rA" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"rD" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"rJ" = ( +/mob/living/simple_mob/vore/alienanimals/space_jellyfish{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + appendage_color = "ff0000"; + color = "ff0000"; + name = "red jelly"; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/gorefloor, +/area/redgate/fantasy/mines) +"rM" = ( +/turf/simulated/floor/greengrid, +/area/redgate/fantasy/alienbasement) +"rS" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/castle) +"sa" = ( +/obj/structure/table/marble, +/obj/item/weapon/pen/crayon/red{ + name = "red chalk" + }, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"sb" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/underwater) +"sh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"sm" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"sw" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"sE" = ( +/obj/item/weapon/material/fishing_rod/modern/strong, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"sG" = ( +/mob/living/simple_mob/vore/vampire/queen, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"sI" = ( +/obj/structure/prop/alien/computer/camera, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"sR" = ( +/turf/simulated/shuttle/wall/alien/blue, +/area/redgate/fantasy/alienbasement) +"sT" = ( +/obj/structure/table/marble, +/obj/fruitspawner/bloodtomato, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"sZ" = ( +/obj/structure/closet/crate/chest, +/obj/item/clothing/suit/cultrobes/alt, +/obj/item/clothing/shoes/cult, +/obj/item/clothing/head/culthood/alt, +/obj/random/potion_base, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"tq" = ( +/obj/structure/cult/talisman, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"tt" = ( +/obj/structure/cult/pylon{ + color = "#00ff00"; + name = "bloodbob" + }, +/turf/simulated/floor/water/digestive_enzymes, +/area/redgate/fantasy/dungeon) +"tE" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wine, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"tI" = ( +/obj/structure/table/alien/blue, +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"tO" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + info = "Our search for the source has brought us to this planet, and we were quickly able to locate a seepage of the anomaly in the area. We set up this base immediately beside it, so that we can best study it. However, we are growing concerned as the material continues to spread beyond it's initial sprouting point and has begun to encroach directly on our buildings.

      Our plan was to move our base further back from the site and study from a distance, but we have begun to detect lifeforms traversing the void. Yellow eyes have been seen watching from beyond the safety of the cave, disappearing and reappearing seemingly at random. We weren't aware that anything could survive this, they could hold the key to our scenario and we are requesting immediate support to research this further.
      " + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"tV" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"ub" = ( +/obj/machinery/transhuman/resleever/abductor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"uo" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"uu" = ( +/obj/structure/table/rack/shelf/wood, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"uv" = ( +/obj/structure/table/alien/blue, +/obj/random/mug, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"uw" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"uy" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"uC" = ( +/turf/simulated/floor/water/indoors, +/area/redgate/fantasy/mines) +"uE" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/pickaxe/jackhammer, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"uJ" = ( +/obj/structure/prop/machine/solifier, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"uR" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"uT" = ( +/mob/living/simple_mob/vore/bat, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"uU" = ( +/mob/living/simple_mob/vore/alienanimals/space_jellyfish{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + appendage_color = "ff0000"; + color = "ff0000"; + name = "red jelly"; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/gorefloor2, +/area/redgate/fantasy/mines) +"uW" = ( +/obj/structure/prop/machine/complicator, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"vi" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"vt" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"vA" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"vJ" = ( +/obj/structure/prop/machine/nt_biocan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"vL" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"vV" = ( +/obj/effect/fake_sun/underwater, +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/underground) +"vX" = ( +/obj/structure/prop/rock/crystal_dust, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"vZ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/waiter, +/obj/item/clothing/under/waiter, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/under/dress/maid, +/obj/item/clothing/head/headband/maid, +/obj/item/clothing/head/headband/maid, +/obj/item/clothing/head/headband/maid, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wg" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wn" = ( +/obj/structure/table/rack/shelf/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"wq" = ( +/mob/living/simple_mob/vore/vore_hostile/gelatinous_cube, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ws" = ( +/obj/structure/prop/war/warhead4, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"wv" = ( +/mob/living/simple_mob/animal/space/carp/large/huge/vorny, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"wB" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"wD" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"wS" = ( +/obj/structure/prop/statue/pillar/dark, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"wY" = ( +/obj/structure/closet/crate/wooden, +/obj/random/meat, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"xj" = ( +/turf/simulated/goreeyes, +/area/redgate/fantasy/mines) +"xu" = ( +/mob/living/simple_mob/vore/vampire/countess_nude, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"xA" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"xB" = ( +/obj/structure/prop/alien/pod, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"xF" = ( +/mob/living/simple_mob/vore/aggressive/rat{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + vore_pounce_chance = 75 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"xH" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"xI" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/bone_clamp, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"xK" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/crypt) +"xN" = ( +/obj/random/plushie, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"xO" = ( +/mob/living/simple_mob/vore/alienanimals/skeleton/alt{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"xV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"xX" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"xY" = ( +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"xZ" = ( +/obj/random/carp_plushie, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"yd" = ( +/obj/structure/table/marble, +/obj/random/internal_organ, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yx" = ( +/obj/item/clothing/accessory/collar/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"yE" = ( +/obj/structure/outcrop/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"yF" = ( +/obj/structure/prop/rock/crystal, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"yI" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yJ" = ( +/obj/item/weapon/coin/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"yM" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yP" = ( +/obj/structure/dogbed, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"yS" = ( +/obj/structure/closet/crate/mimic/guaranteed{ + icon = 'icons/obj/closets/chest.dmi' + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yT" = ( +/obj/structure/simple_door/cult, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"yV" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/gun/energy/sickshot, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"yW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"zh" = ( +/obj/structure/table/alien/blue, +/obj/item/device/gps/mining, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"zj" = ( +/turf/simulated/mineral/icey, +/area/redgate/fantasy/underwater) +"zn" = ( +/obj/item/toy/plushie/carp/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"zs" = ( +/obj/structure/prop/war/warhead3, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"zv" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"zB" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"zH" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"zJ" = ( +/obj/item/stack/material/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"zS" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"zV" = ( +/obj/item/weapon/fossil/skull/horned, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"zW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Ah" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"Ai" = ( +/turf/simulated/floor/water/deep/pool, +/area/redgate/fantasy/dungeon) +"Aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Am" = ( +/obj/structure/closet/crate/wooden, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Ar" = ( +/obj/structure/prop/rock/flat, +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"Au" = ( +/obj/machinery/clonepod/transhuman/full/abductor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"Av" = ( +/turf/simulated/floor/gorefloor, +/area/redgate/fantasy/mines) +"AH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/marble, +/obj/item/weapon/bone/ribs, +/obj/item/weapon/bone/skull, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"AM" = ( +/obj/structure/window/plastitanium{ + dir = 1 + }, +/obj/structure/prop/war/warhead3, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"AV" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/potion_ingredient, +/obj/random/potion_base, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"Bf" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Bg" = ( +/obj/structure/simple_door/dungeon/locked, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Bh" = ( +/obj/machinery/door/airlock/angled_tgmc/secure{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Bm" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Bp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"Bs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/sliceable/lemoncake, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"BG" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"BJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour/rustic, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/structure/closet/walllocker/wooden/south, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"BL" = ( +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"BM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/rack/shelf/wood, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"BW" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/underground) +"BX" = ( +/obj/structure/closet/coffin, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Cc" = ( +/obj/item/weapon/bone/leg, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Ch" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Cz" = ( +/obj/item/weapon/shovel, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"CD" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"CK" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"CP" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"CS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"CT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"CY" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_mob/vore/alienanimals/catslug/custom/cryptslug{ + faction = "vampire" + }, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"CZ" = ( +/obj/structure/closet/alien, +/obj/random/tool/powermaint, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Dd" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/potion, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Dh" = ( +/obj/structure/table/woodentable, +/obj/random/potion, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Di" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Dn" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"DK" = ( +/obj/random/maintenance/medical, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"DM" = ( +/obj/effect/decal/mecha_wreckage/phazon, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"DR" = ( +/obj/structure/closet/crate/wooden, +/obj/random/fantasy_item, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"DX" = ( +/mob/living/simple_mob/vore/pakkun/sand, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"DZ" = ( +/obj/structure/table/rack/shelf/wood, +/obj/item/clothing/under/swimsuit/risque, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ek" = ( +/obj/structure/table/hardwoodtable, +/obj/item/clothing/accessory/shiny/gloves/poly, +/obj/item/clothing/accessory/shiny/socks/poly, +/obj/item/clothing/head/shiny_hood/poly, +/obj/item/clothing/head/shiny_hood/closed/poly, +/obj/item/clothing/under/shiny/catsuit/poly, +/obj/item/clothing/under/shiny/leotard/poly, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"El" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/potion, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Eq" = ( +/obj/structure/table/alien, +/obj/item/weapon/potion_material/glowing_gem, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/fantasy/alienbasement) +"EA" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/storage/backpack/cultpack, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"ED" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"EE" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"EJ" = ( +/obj/random/underdark, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"EN" = ( +/obj/item/weapon/shreddedp, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ER" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/potion, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"EU" = ( +/obj/structure/closet/crate/wooden, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"EV" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"EZ" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"Fh" = ( +/obj/structure/prop/alien/pod/open, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Fr" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Fs" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Fz" = ( +/obj/item/prop/alien/phasecoil, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"FF" = ( +/obj/fiftyspawner/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"FH" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/melee/cultblade, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"FR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"FV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ga" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"Gh" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"Gl" = ( +/obj/item/weapon/paper/alien, +/turf/simulated/wall/tgmc/rwall, +/area/redgate/fantasy/alienbasement) +"Gu" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Gy" = ( +/obj/structure/prop/alien/dispenser, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"GI" = ( +/obj/structure/prop/alien/dispenser/twoway, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"GN" = ( +/obj/structure/bed/bath, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"GX" = ( +/obj/structure/closet/crate/wooden, +/obj/item/trash/plate, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Hn" = ( +/mob/living/simple_mob/vore/demon{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + harm_intent_damage = 8; + health = 300; + melee_damage_lower = 5; + melee_damage_upper = 2; + vore_pounce_chance = 50 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Hx" = ( +/obj/item/weapon/bone, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Hz" = ( +/mob/living/simple_mob/vore/bigdragon/friendly, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"HB" = ( +/obj/structure/reagent_dispensers/cookingoil, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"HE" = ( +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"HG" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"HO" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"HP" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"HQ" = ( +/obj/structure/bed/chair/sofa/corp/left, +/obj/machinery/light/small/torch{ + dir = 1; + light_type = /obj/item/weapon/light/bulb/red + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"HX" = ( +/obj/structure/closet/cabinet, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ib" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Iq" = ( +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"Is" = ( +/obj/structure/flora/underwater/grass1, +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"IA" = ( +/obj/machinery/conveyor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"IB" = ( +/mob/living/simple_mob/vore/vore_hostile/abyss_lurker, +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"IQ" = ( +/obj/structure/largecrate/animal/pred, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"IR" = ( +/obj/random/potion_ingredient, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"IS" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"IU" = ( +/obj/structure/table/woodentable, +/obj/random/potion_base, +/obj/random/potion_base, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Ja" = ( +/obj/random/potion_ingredient, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Jc" = ( +/obj/structure/closet/crate/wooden, +/obj/random/multiple/underdark/ores, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Jk" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Jo" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Jp" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Jq" = ( +/obj/structure/theonepizza, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"JA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"JL" = ( +/obj/random/multiple/ore_pile, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ka" = ( +/obj/structure/reagent_dispensers/beerkeg/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Kf" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/fantasy_item, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Kh" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Kn" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"Ku" = ( +/obj/structure/table/alien/blue, +/obj/random/grenade/less_lethal, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Ky" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KA" = ( +/obj/structure/closet/coffin, +/obj/item/instrument/trombone, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KB" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"KP" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KR" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"KZ" = ( +/obj/structure/fence, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Lc" = ( +/obj/item/clothing/ears/earring/stud/gold, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Ld" = ( +/obj/random/fantasy_item, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"Le" = ( +/obj/structure/grille, +/obj/structure/window/plastitanium/full, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Lh" = ( +/obj/structure/table/marble, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Lm" = ( +/obj/structure/table/marble, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Lo" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_ingredient, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Ls" = ( +/obj/structure/table/marble, +/obj/item/capture_crystal, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Ly" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/potion_ingredient, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"LH" = ( +/obj/item/weapon/potion_material/golden_scale, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"LL" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"LO" = ( +/mob/living/simple_mob/vore/succubus, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Mg" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Mk" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Mp" = ( +/obj/structure/prop/alien/pod, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"Mx" = ( +/turf/simulated/mineral/icey, +/area/redgate/fantasy/underground) +"MC" = ( +/obj/item/roulette_ball/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"MD" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"ME" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/stone/bone, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"MO" = ( +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"MR" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/alienbasement) +"MY" = ( +/obj/structure/table/marble, +/obj/random/potion_base, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"MZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Nq" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Nr" = ( +/obj/structure/flora/underwater/seaweed1, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"Nt" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Nw" = ( +/obj/structure/prop/statue/sunkensail, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"NC" = ( +/obj/structure/closet/crate/wooden, +/obj/random/potion_base, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"NF" = ( +/turf/simulated/wall/dungeon{ + can_open = 1 + }, +/area/redgate/fantasy/dungeon) +"NK" = ( +/obj/item/stack/material/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"NL" = ( +/obj/item/clothing/mask/demon, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"NM" = ( +/turf/simulated/gore, +/area/redgate/fantasy/mines) +"NN" = ( +/obj/structure/table/alien, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"NQ" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/kettle/full, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"NU" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"NV" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"NY" = ( +/obj/structure/reagent_dispensers/bloodbarrel, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Of" = ( +/obj/item/weapon/fossil/plant, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Oh" = ( +/obj/structure/table/alien, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Op" = ( +/obj/structure/table/bench/marble, +/mob/living/simple_mob/vore/vampire/countess, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"OB" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"OE" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"OF" = ( +/turf/simulated/shuttle/wall/alien/blue/hard_corner, +/area/redgate/fantasy/alienbasement) +"OK" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Pa" = ( +/obj/structure/table/marble, +/obj/item/weapon/bone/leg, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Pb" = ( +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Pt" = ( +/turf/simulated/wall/stonebricks, +/area/redgate/fantasy/castle) +"Px" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"PA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/flatbread, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"PC" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"PG" = ( +/obj/structure/table/rack/shelf/wood, +/obj/random/potion_ingredient, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"PP" = ( +/obj/structure/balloon/bat, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"PU" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/water/digestive_enzymes, +/area/redgate/fantasy/dungeon) +"PY" = ( +/turf/simulated/floor/weird_things/dark, +/area/redgate/fantasy/dark) +"Qb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Qm" = ( +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"QJ" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"QL" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"QT" = ( +/obj/structure/table/alien, +/obj/item/broken_device/random, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Ra" = ( +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"Re" = ( +/obj/random/maintenance/security, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Rf" = ( +/obj/structure/closet/crate/chest, +/obj/random/fantasy_item, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Rk" = ( +/mob/living/simple_mob/vore/cryptdrake, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Ry" = ( +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/fantasy/alienbasement) +"RF" = ( +/obj/machinery/microwave/cookingpot, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"RW" = ( +/obj/structure/table/hardwoodtable, +/obj/item/clothing/mask/muzzle/ballgag, +/obj/item/clothing/mask/muzzle/ballgag/ringgag, +/obj/item/weapon/material/whip, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"RX" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"RZ" = ( +/obj/item/weapon/coin/gold, +/turf/simulated/mineral/floor/dirt, +/area/redgate/fantasy/caves) +"Sb" = ( +/obj/structure/table/alien/blue, +/obj/random/tool, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Sd" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Se" = ( +/obj/machinery/appliance/cooker/oven/yeoldoven, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Sk" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/snacks/bloodsoup, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Sn" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/snacks/bloodsoup, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Sx" = ( +/obj/structure/table/marble, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"SA" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/mines) +"SI" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"SJ" = ( +/obj/structure/table/alien, +/obj/random/janusmodule, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/fantasy/alienbasement) +"SZ" = ( +/obj/item/weapon/potion_material/folded_dark, +/turf/simulated/floor/weird_things/dark, +/area/redgate/fantasy/dark) +"Tk" = ( +/obj/structure/table/woodentable, +/obj/machinery/alembic{ + pixel_y = 8 + }, +/turf/simulated/floor/bmarble, +/area/redgate/fantasy/dungeon) +"Tl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"Tn" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Tr" = ( +/obj/random/multiple/ore_pile, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"TA" = ( +/obj/structure/table/alien/blue, +/obj/random/tool/alien, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"TB" = ( +/obj/machinery/light/small/torch{ + dir = 1; + light_type = /obj/item/weapon/light/bulb/red + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"TD" = ( +/mob/living/simple_mob/vore/alienanimals/succlet/moss, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"TO" = ( +/obj/random/multiple/underdark/ores, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"TV" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"TX" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"TY" = ( +/obj/structure/table/alien/blue, +/obj/random/gun/random, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Uc" = ( +/obj/structure/table/alien/blue, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Ul" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Ux" = ( +/turf/simulated/floor/flesh, +/area/redgate/fantasy/dungeon) +"UC" = ( +/obj/structure/table/marble, +/obj/random/material/refined, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"UI" = ( +/obj/random/outcrop, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/mines) +"UK" = ( +/obj/structure/prop/fantasy/grindstone, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"UV" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/bone/skull/unknown, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"UW" = ( +/obj/structure/table/alien, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Vl" = ( +/obj/structure/table/alien/blue, +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"Vo" = ( +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Vq" = ( +/obj/structure/prop/fantasy/kiln, +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Vv" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/fantasy/alienbasement) +"Vz" = ( +/mob/living/simple_mob/vore/weretiger{ + color = "#ffbe8c"; + name = "dungeon blacksmith" + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"VD" = ( +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"VQ" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"VR" = ( +/obj/structure/constructshell/cult, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"VU" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"VZ" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"Wd" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/fantasy/dungeon) +"Wm" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Wo" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"WB" = ( +/obj/structure/reagent_dispensers/bloodbarrel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"WE" = ( +/obj/structure/closet/crate/chest, +/obj/random/potion_ingredient, +/turf/simulated/floor/water/underwater, +/area/redgate/fantasy/underwater) +"WR" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/handcuffs/legcuffs/fuzzy, +/obj/item/weapon/handcuffs/fuzzy, +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Xd" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/crypt) +"Xp" = ( +/obj/structure/table/hardwoodtable, +/obj/random/potion_ingredient, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Xq" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Xr" = ( +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/beach/sand/desert, +/area/redgate/fantasy/caves) +"Xt" = ( +/obj/item/weapon/material/whip, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/dungeon) +"Xy" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"Xz" = ( +/obj/structure/table/alien/blue, +/obj/random/energy/sec, +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"XE" = ( +/obj/item/prop/alien/junk, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"XO" = ( +/obj/structure/barricade/cutout/cultist, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"XP" = ( +/obj/machinery/door/airlock/angled_tgmc/secure{ + dir = 4; + req_one_access = list(900) + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"XX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"XY" = ( +/obj/structure/bed/alien, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Yf" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Yg" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/mineral/floor/ignore_cavegen/cave, +/area/redgate/fantasy/caves) +"Yi" = ( +/obj/item/trash/tray, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/ratbasement) +"Yr" = ( +/obj/structure/reagent_dispensers/watertank/barrel, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"Yx" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/cult, +/area/redgate/fantasy/dungeon) +"Yy" = ( +/obj/machinery/door/airlock/angled_tgmc/secure, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/fantasy/alienbasement) +"YF" = ( +/obj/structure/table/marble, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen/fountain8, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"YP" = ( +/turf/simulated/floor/outdoors/ice{ + outdoors = -1 + }, +/area/redgate/fantasy/mines) +"Zp" = ( +/turf/simulated/flesh, +/area/redgate/fantasy/dungeon) +"Zq" = ( +/obj/structure/table/rack/shelf/wood, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"ZA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/obj/item/weapon/reagent_containers/glass/pint_mug, +/turf/simulated/floor/concrete, +/area/redgate/fantasy/castle) +"ZB" = ( +/obj/structure/dancepole, +/turf/simulated/floor/wmarble, +/area/redgate/fantasy/dungeon) +"ZI" = ( +/obj/item/prop/alien/junk, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/fantasy/alienbasement) +"ZK" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt, +/area/redgate/fantasy/caves) +"ZY" = ( +/turf/simulated/wall/stonebricks{ + can_open = 1 + }, +/area/redgate/fantasy/crypt) + +(1,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +vV +"} +(2,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +hu +hu +hu +hu +hu +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +dp +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(3,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +hu +hu +hu +hu +hu +hu +hu +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +CZ +vt +RX +vt +vt +vt +vt +RX +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(4,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +DR +hu +hu +hu +DX +hu +Xr +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +ox +np +np +np +dp +dp +dp +np +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(5,1,1) = {" +BW +ac +ac +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +bM +bM +bM +bM +ac +ac +ac +hu +hu +Gh +hu +hu +hu +hu +hu +hu +hu +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +rt +np +np +np +np +no +dp +np +vt +dp +BW +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(6,1,1) = {" +BW +ac +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +bM +bM +vX +yF +bM +bM +ac +ac +hu +hu +hu +hu +hu +hu +hu +hu +IR +hu +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +dp +dp +dp +dp +dp +TA +np +np +np +dp +dp +dp +np +vt +dp +BW +dp +yV +vt +Vl +vt +AM +zs +zs +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(7,1,1) = {" +BW +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +tV +dx +dx +tV +ac +ac +ac +bM +fB +fL +tV +fB +bM +bM +ac +ac +hu +hu +hu +tV +tV +hu +hu +hu +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +dp +ox +RX +vt +vt +vt +np +np +np +np +np +np +np +vt +dp +BW +dp +Ku +vt +vt +vt +ok +vt +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(8,1,1) = {" +BW +ac +ac +ac +dx +dx +dx +dx +dx +dx +dx +tV +tV +tV +dx +tV +yF +tV +tV +tV +tV +tV +tV +tV +tV +bM +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +tV +tV +tV +ac +ac +ac +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +dp +Sb +np +np +np +np +np +np +np +np +np +np +np +vt +dp +BW +dp +cO +vt +vt +vt +ok +TY +Mg +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(9,1,1) = {" +BW +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +tV +dx +dx +dx +tV +tV +tV +ac +bM +tV +tV +tV +tV +tV +yF +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +ac +ac +ac +ac +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +dp +vt +np +sR +sR +sR +Ry +Ry +sR +sR +sR +bw +np +vt +dp +BW +dp +Xz +vt +vt +vt +ok +vt +vt +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(10,1,1) = {" +BW +ac +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +tV +ac +bM +bM +tV +yF +fB +tV +tV +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +dp +vt +sR +OF +fT +bB +bB +bB +bB +Fh +OF +sR +ZI +Mg +dp +BW +dp +Uc +vt +vt +vt +hj +ws +ws +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(11,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +bM +bM +tV +tV +tV +tV +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +tV +tV +tV +ac +ac +ac +ac +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +dp +CD +Le +sI +Mk +bB +Eq +nc +bB +bB +bB +sR +np +vt +dp +dp +dp +dp +dp +XP +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(12,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +tV +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +bM +bM +vX +tV +bM +bM +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +ac +ac +ac +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +MR +vt +Le +kZ +Mk +bB +nc +SJ +bB +bB +bB +sR +np +vt +Pb +vt +RX +vt +vt +vt +vt +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(13,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +bM +bM +bM +bM +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +dX +PY +PY +PY +PY +PY +PY +BW +BW +MR +vt +sR +OF +jB +bB +bB +bB +bB +Mp +OF +sR +np +vt +vt +vt +vt +vt +vt +vt +Mg +dp +dp +dp +dp +dp +dp +dp +dp +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(14,1,1) = {" +BW +ac +dx +dx +dx +dx +dx +dx +dx +tV +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +dX +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +MR +vt +np +sR +sR +sR +Ry +Ry +sR +sR +sR +bw +np +vt +dp +dp +dp +dp +dp +vt +vt +vt +vt +vt +RX +vt +vt +vt +Pb +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(15,1,1) = {" +BW +ac +dx +dx +dx +dx +tV +tV +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +np +np +np +np +np +np +np +np +Fz +np +np +vt +dp +Vv +Vv +Vv +dp +vt +vt +vt +vt +vt +vt +vt +vt +vt +vt +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(16,1,1) = {" +BW +ac +dx +dx +dx +dx +tV +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +SZ +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +np +np +np +np +np +np +np +np +np +vt +MD +vt +dp +Vv +Vv +Vv +dp +vt +vt +dp +dp +dp +dp +Bh +dp +dp +dp +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(17,1,1) = {" +BW +ac +ac +tV +dx +dx +tV +tV +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +np +np +np +np +np +np +np +vt +vt +vt +dp +dp +dp +Vv +Vv +Vv +dp +vt +vt +dp +vi +vt +vt +vt +vt +dp +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(18,1,1) = {" +BW +ac +ac +tV +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +dX +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +vt +MD +vt +uv +oP +vt +vt +vt +MD +dp +hs +dp +dp +dp +dp +dp +dp +dp +vt +vt +dp +iU +rM +np +rM +gi +dp +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(19,1,1) = {" +BW +ac +ac +tV +tV +dx +dx +dx +dx +dx +dx +dx +dx +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +MR +dp +dp +dp +dp +dp +dp +Bh +dp +dp +dp +vt +oF +dp +jb +dp +dp +jb +dp +vt +Mg +dp +zh +rM +np +rM +ox +dp +BW +BW +BW +BW +BW +BW +qT +UI +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(20,1,1) = {" +BW +ac +ac +tV +tV +tV +dx +dx +dx +dx +dx +dx +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +Gu +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +MR +BW +BW +BW +BW +Vv +dp +dp +vt +dp +dp +dp +dp +dp +dp +CD +Au +Au +Mg +dp +vt +vt +dp +ox +rM +DM +rM +uE +dp +BW +BW +BW +BW +BW +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(21,1,1) = {" +BW +ac +tV +tV +tV +tV +tV +tV +dx +dx +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +Vv +dp +lc +vt +UW +Oh +eP +vt +vt +dp +vt +vt +vt +vt +dp +vt +vt +dp +cr +rM +np +rM +tI +dp +BW +BW +BW +BW +BW +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(22,1,1) = {" +BW +ac +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +Vv +dp +np +vt +nM +Oh +Oh +vt +vt +Yy +vt +vt +vt +vt +Yy +vt +vt +dp +BL +vt +pn +vt +vt +dp +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(23,1,1) = {" +BW +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +Vv +dp +CD +vt +vt +vt +vt +vt +Mg +dp +CD +ub +ub +Mg +dp +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(24,1,1) = {" +BW +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +Jc +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +Vv +dp +GI +vt +Bp +ci +Tl +vt +dO +dp +LL +dp +dp +NN +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(25,1,1) = {" +BW +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +dp +xB +vt +XX +bg +uw +vt +IA +dp +Gl +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(26,1,1) = {" +BW +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +Gu +tV +tV +tV +tV +tV +ac +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +Gy +vt +FR +ls +Px +vt +IA +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(27,1,1) = {" +BW +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +ac +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +CD +vt +vt +vt +vt +vt +kx +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(28,1,1) = {" +BW +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +yJ +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +uJ +vt +Oh +iQ +tO +vt +IA +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(29,1,1) = {" +BW +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +tV +tV +yJ +uo +tV +Lc +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +vJ +vt +QT +Oh +UW +uW +lp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(30,1,1) = {" +BW +ac +ac +ac +tV +tV +tV +tV +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +tV +tV +pb +tV +tV +LH +tV +tV +tV +yx +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +dp +dp +dp +dp +dp +dp +dp +dp +dp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(31,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +tV +tV +tV +tV +tV +tV +NK +Iq +FF +Iq +tV +tV +pb +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(32,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +Gu +tV +tV +tV +tV +tV +tV +tV +ac +ac +tV +tV +ac +ac +tV +pb +tV +tV +Iq +Iq +Iq +Iq +zn +RZ +LH +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +tV +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(33,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +ac +ac +tV +tV +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +dy +zJ +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +tV +tV +tV +tV +tV +tV +zV +tV +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +PY +PY +xY +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(34,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +tV +tV +Iq +Iq +Iq +Iq +Iq +Hz +RZ +Iq +Iq +Iq +Vo +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +tV +tV +ac +ac +tV +Cz +tV +tV +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +PY +xY +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(35,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +Iq +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +Of +tV +tV +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +sb +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(36,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +Iq +Iq +yE +Iq +Iq +Iq +Iq +Iq +eW +tV +yJ +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +sb +sb +xY +xY +xY +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(37,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +Iq +Iq +Iq +Iq +Iq +Iq +Iq +tV +zJ +tV +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +UI +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(38,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +tV +pb +tV +tV +qV +Iq +Iq +Iq +Iq +MC +kP +ez +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(39,1,1) = {" +BW +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +tV +ac +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +LH +Iq +Iq +Iq +NK +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(40,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +tV +ac +IQ +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +zJ +dy +tV +dy +tV +pb +aG +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +sb +sb +sb +sb +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(41,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +tV +ac +ac +ac +kS +ac +ac +ac +ac +ac +ac +tV +tV +yJ +tV +pb +tV +kE +yJ +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +sb +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +gp +gp +gp +gp +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(42,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +yJ +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +sb +sb +sb +xY +xY +WE +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +BW +BW +BW +BW +BW +BW +BW +BW +BW +gp +gp +gp +gp +gp +uC +uC +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(43,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +sb +sb +sb +xY +xY +xY +Nw +xX +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +gp +uC +uC +uC +uC +uC +uC +uC +gp +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(44,1,1) = {" +BW +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +sb +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +gp +uC +uC +uC +uC +uC +uC +uC +uC +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +"} +(45,1,1) = {" +BW +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +sb +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +gp +gp +uC +uC +Qm +km +Qm +Qm +uC +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(46,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +Gu +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +qT +gp +gp +sE +Qm +Qm +Qm +RF +gp +gp +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(47,1,1) = {" +BW +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +Gu +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +xY +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +qT +gp +gp +fS +Qm +Qm +es +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(48,1,1) = {" +BW +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +sb +sb +xY +xY +xY +xY +sb +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +qT +qT +gp +gp +Qm +Qm +gp +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(49,1,1) = {" +BW +ac +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +tV +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +sb +xY +sb +sb +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +qT +qT +gp +gp +Qm +gp +gp +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(50,1,1) = {" +BW +ac +ac +tV +tV +tV +qY +tV +tV +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +ac +tV +Ja +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +xY +xY +sb +sb +sb +xY +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +qT +qT +gp +gp +Qm +gp +gp +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +qT +qT +Qm +UI +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(51,1,1) = {" +BW +ac +tV +qY +tV +tV +tV +TD +tV +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +Yg +tV +tV +tV +ac +ac +cy +cy +cy +Jk +cy +cy +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +xY +sb +sb +Tr +xY +xY +sb +sb +sb +xY +xY +xY +xY +xZ +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +wv +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +qT +gp +gp +gp +Qm +gp +gp +gp +gp +gp +gp +Mx +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(52,1,1) = {" +BW +ac +tV +tV +TD +tV +XE +tV +tV +ac +ac +ac +tV +tV +tV +tV +tV +ac +ac +ac +wY +tV +tV +tV +tV +tV +tV +ac +ac +cy +Zq +cW +cW +cW +xV +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +zj +gp +gp +gp +YP +YP +YP +YP +YP +YP +YP +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(53,1,1) = {" +BW +ac +tV +tV +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +tV +tV +tV +tV +uR +tV +tV +ac +ac +cy +Dd +cW +cW +cW +BJ +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +sb +sb +xY +xY +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +xY +xY +xY +jF +sb +sb +sb +xY +xY +xY +xY +BW +qT +qT +gp +et +et +gp +gp +gp +gp +YP +YP +lV +YP +YP +YP +YP +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(54,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +ac +ac +ac +ac +ac +tV +tV +oN +tV +tV +ac +ac +ac +cy +ZK +cW +cW +cW +HO +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +xY +xY +xY +xY +xY +xY +sb +xY +xY +sb +sb +sb +xY +xY +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +xY +xY +xY +xY +BW +qT +gp +gp +SA +SA +gp +YP +YP +YP +YP +YP +YP +YP +YP +Ar +YP +gp +gp +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(55,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cy +cW +cW +cW +cW +Sd +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +BW +gp +gp +YP +YP +YP +YP +ou +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(56,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cy +Nq +qF +az +VZ +GN +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(57,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cy +cy +cy +cy +cy +cy +cy +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +Nr +mL +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +ii +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(58,1,1) = {" +BW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +tV +tV +ac +ac +ac +ac +ac +ac +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +mL +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +xY +xY +BW +gp +YP +YP +YP +ii +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(59,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +oI +Pt +Pt +Pt +Pt +Pt +rS +rS +rS +Pt +Pt +Pt +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cU +cU +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +xY +xY +xY +oj +Ra +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +BW +gp +lV +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(60,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +oI +Pt +EE +EE +oH +EE +oH +oH +oH +oH +oH +EE +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +xY +mL +xY +fM +Is +xY +xY +xY +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +ou +YP +YP +gp +BW +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(61,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +oI +Pt +wn +EE +wn +oH +oH +oH +oH +wn +EE +wn +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +sb +sb +sb +xY +dc +xY +xY +xY +xY +xY +xY +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +BW +gp +YP +YP +YP +YP +YP +YP +YP +ii +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(62,1,1) = {" +BW +BW +BW +BW +oI +Pt +Pt +Pt +Pt +Pt +Pt +Pt +wn +EE +zB +oH +oH +oH +oH +wn +EE +wn +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Yf +kn +kn +vL +cK +cK +cK +yI +cK +cK +cK +cK +cK +cK +cK +cK +wB +xY +xY +xY +xY +xY +xY +mL +xY +xY +sb +sb +xY +xY +xY +xY +xY +xY +sb +sb +sb +BW +gp +YP +Ar +YP +YP +YP +ou +YP +YP +YP +YP +YP +ii +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(63,1,1) = {" +BW +BW +BW +BW +oI +Pt +OE +ky +dP +ky +EE +Pt +EE +oH +oH +oH +EE +EE +EE +oH +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +gH +MO +MO +MO +MO +MO +MO +cK +cK +cK +cK +cK +cK +wB +xY +xY +xY +xY +xY +xY +xY +bl +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +BW +gp +YP +YP +ii +YP +lV +YP +YP +YP +Ar +YP +YP +YP +YP +YP +YP +gp +BW +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +EJ +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(64,1,1) = {" +BW +BW +BW +BW +oI +Pt +EE +zS +bp +zS +EE +Pt +wn +oH +uu +EE +EE +oH +EE +ev +EE +wn +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +DZ +MO +dI +dI +dI +dI +MO +cK +kn +kn +kn +kn +kn +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +BW +gp +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +YP +gp +BW +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +xA +Qm +UI +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(65,1,1) = {" +BW +BW +BW +BW +oI +Pt +EE +EE +EE +EE +EE +Pt +EE +EE +pM +EE +EE +EE +EE +pM +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +El +ah +ah +ah +Ib +hR +hR +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +dI +Ai +Ai +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +xY +sb +sb +sb +BW +gp +gp +gp +gp +gp +gp +gp +Qm +gp +gp +gp +gp +gp +gp +gp +gp +gp +BW +qT +qT +UI +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +UI +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(66,1,1) = {" +BW +BW +BW +BW +Pt +Pt +Pt +Pt +NV +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +NV +Pt +Pt +Pt +Pt +Pt +BW +kn +kn +kn +kn +kn +kn +jI +ah +ah +Hn +ah +Xp +hR +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +dI +Ai +Ai +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +xY +xY +xY +xY +xY +xY +xY +xY +xY +Ld +xY +sb +sb +sb +BW +qT +qT +qT +gp +gp +gp +gp +Qm +gp +gp +qT +gp +gp +gp +qT +qT +qT +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(67,1,1) = {" +BW +BW +BW +BW +Pt +hY +EE +ky +EE +EE +EE +EE +EE +ky +EE +EE +Pt +EE +Pt +EE +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +ah +ah +ah +ah +ah +ah +ah +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +dI +Ai +Ai +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +sb +sb +sb +sb +sb +BW +qT +qT +qT +qT +qT +gp +Qm +Qm +gp +gp +qT +qT +qT +qT +qT +qT +qT +BW +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(68,1,1) = {" +BW +BW +BW +BW +Pt +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +NV +EE +Pt +Kf +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +ah +ah +ah +Hn +ah +ah +ah +ah +ah +ah +zH +cK +cK +cK +cK +cK +MO +dI +dI +dI +dI +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +sb +sb +sb +sb +sb +BW +gp +gp +gp +gp +gp +gp +Qm +Qm +Qm +gp +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(69,1,1) = {" +BW +BW +BW +BW +Pt +gL +KZ +OB +wg +KZ +OB +gL +KZ +OB +gL +KZ +Pt +uy +Pt +Kf +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +ah +NL +ah +ah +ah +ah +ah +iu +ah +ah +zH +cK +cK +NU +cK +cK +MO +MO +MO +MO +MO +MO +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +BW +gp +Qm +ed +Qm +Qm +Qm +Qm +Qm +Qm +gp +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(70,1,1) = {" +BW +BW +BW +BW +Pt +lL +bH +PC +lL +jA +PC +lL +bH +PC +lL +bH +Pt +EE +Pt +EE +EE +EE +Pt +BW +kn +kn +kn +kn +kn +kn +jI +ah +ah +ah +ah +Hn +ah +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +NU +cK +cK +cK +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +WE +xY +xY +xY +xY +xY +sb +sb +sb +sb +sb +BW +gp +yP +Qm +Qm +Qm +gp +Qm +Qm +gp +gp +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(71,1,1) = {" +BW +BW +BW +BW +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +NV +Pt +Pt +ml +Pt +Pt +BW +kn +kn +kn +kn +kn +kn +hR +EA +hR +ah +ah +ah +ah +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cU +cU +kn +kn +kn +kn +kn +BW +BW +BW +sb +sb +sb +sb +sb +sb +sb +sb +xY +xY +xY +xY +sb +sb +sb +sb +sb +sb +BW +gp +Qm +lR +Qm +Qm +gp +gp +gp +gp +qT +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(72,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +cz +zS +zS +EE +Pt +zS +EE +EE +EE +EE +Ch +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +gp +gp +gp +qB +gp +gp +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(73,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +EE +Wm +EE +EE +Pt +Kh +EE +Ka +EE +kc +uy +Pt +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +nY +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +gp +gp +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(74,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +qE +EE +EE +EE +NV +EE +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +kn +kn +kn +kn +kn +kn +ah +ah +ah +Ib +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +xA +Qm +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(75,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +oI +oI +oI +Pt +qE +pM +EE +EE +Pt +ew +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +kn +kn +kn +kn +kn +kn +XO +ah +ah +ah +ah +ah +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(76,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +ZA +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +ah +ah +ah +ah +Ib +ah +ah +ah +ah +tq +ah +ah +ah +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +ie +VU +rA +tE +kn +kn +HX +yI +cK +cK +cK +NQ +QL +Bs +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +Qm +qT +qT +qT +qT +Qm +UI +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(77,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Jo +CK +zS +zS +oh +ky +vZ +Pt +MZ +EE +Ka +EE +kc +EE +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +ah +Yx +ah +ah +ah +ah +ah +ah +ah +ah +ah +ah +VR +ah +kn +kn +kn +kn +Aj +Yf +kn +kn +kn +kn +aR +rA +rA +pW +kn +kn +cK +cK +pg +pg +pg +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +UI +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +EJ +UI +qT +qT +qT +qT +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(78,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Ch +Di +PA +zS +oh +EE +EE +Pt +zW +EE +EE +EE +EE +uy +Pt +bW +kn +kn +kn +kn +kn +kn +kn +kn +kn +Yx +ah +kn +kn +kn +kn +kn +kn +ah +ah +ah +me +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +rA +Xt +rA +rA +lZ +cK +cK +cK +QL +QL +QL +cK +LO +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(79,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +EE +Di +zS +gJ +oh +EE +EE +NV +EE +EE +EE +EE +EE +Fs +Pt +bW +kn +kn +kn +Ek +WR +RW +kn +SI +ah +Yx +ah +NY +sw +kn +kn +kn +kn +ah +ah +ah +ah +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +rA +rA +rA +rA +lZ +cK +cK +cK +QL +QL +QL +cK +cK +cK +kn +kn +kn +kn +kn +xH +Ga +EZ +rA +rA +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(80,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +EE +EE +EE +EE +EE +EE +EE +Pt +Ch +Ch +Ch +EE +EE +Fs +Pt +bW +kn +kn +kn +ah +ah +ah +kn +iz +ah +ah +Wo +Hx +ah +kn +kn +kn +kn +aT +ah +ah +ah +ah +ah +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +Ah +Ah +Ah +Ah +kn +kn +cK +LO +VQ +VQ +VQ +cK +LO +cK +kn +kn +kn +kn +kn +rA +rA +rA +rA +rA +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(81,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +ep +Xy +ep +zS +ep +Xy +ep +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +bW +kn +kn +kn +ah +XY +ah +NF +ah +ah +Wo +ah +ah +fR +kn +kn +kn +kn +sZ +ah +VR +ah +ah +FH +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +Wd +Kn +HG +xN +kn +kn +cK +NU +cK +cK +cK +NU +cK +cK +kn +kn +kn +kn +kn +pd +rA +IS +sm +pW +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +xA +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +xA +Qm +UI +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(82,1,1) = {" +BW +BW +BW +BW +oI +oI +oI +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +Pt +rS +rS +rS +rS +rS +rS +rS +bW +kn +kn +kn +ah +ah +ah +kn +ah +Wo +cd +ah +ah +ah +kn +kn +kn +kn +ah +ah +ah +iu +ah +Xp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +yT +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +UI +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(83,1,1) = {" +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +UV +ah +Wo +ah +Wo +Cc +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +Tn +Bm +cK +Ky +rD +cK +HE +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +EJ +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(84,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +ei +iu +ah +ah +iu +ah +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +KP +QL +cK +Ky +QL +cK +rg +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(85,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Aj +Aj +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +QJ +QL +LO +Ky +QL +cK +FV +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +KB +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(86,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Aj +wS +cK +cK +cK +cK +wS +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +Ky +QL +cK +cK +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +KB +Qm +Qm +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(87,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +sT +sT +Sk +Sn +Dn +WB +kn +kn +kn +kn +ED +cK +yI +cK +cK +Lh +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cS +Aj +Aj +cK +bj +cK +Aj +Aj +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +LO +cK +cK +QL +QL +cK +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +KB +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(88,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +HB +Bf +cK +cK +cK +cK +kn +kn +kn +kn +cK +cK +cK +cK +cK +MY +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +sh +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +bj +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +hQ +QL +QL +cK +LO +cK +cK +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(89,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +ma +cK +xu +gT +cK +cK +kn +kn +kn +kn +cK +Lh +cK +cK +cK +Lh +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +Aj +Aj +kn +kn +kn +kn +kn +kn +cK +cK +bj +cK +Rk +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +KP +BG +QL +cK +cK +cK +cK +kn +kn +kn +kn +BW +BW +BW +jn +jn +jn +jn +jn +jn +jn +jn +jn +jn +jn +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(90,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +Se +cK +cK +cK +Bf +cK +gT +cK +kn +kn +kH +YF +CP +cK +cK +Lh +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Aj +Aj +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +bj +cK +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +lE +ga +cK +cK +NU +cK +Yr +kn +kn +kn +kn +BW +BW +BW +jn +Lo +NC +jn +VD +VD +EV +VD +VD +VD +jn +BW +BW +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(91,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +Lh +yd +ME +yd +Lh +cK +cK +cK +kn +kn +cK +Sn +cK +cK +cK +Lh +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +bj +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Yf +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +VD +VD +jn +dA +xF +VD +EU +VD +VD +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +xA +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +"} +(92,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +cK +cK +cK +cK +yd +kn +kn +kn +kn +cK +cK +kn +kn +cK +cK +cK +cK +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +wS +cK +cK +cK +cK +wS +cS +cK +kn +kn +kn +kn +kn +kn +IU +MO +PG +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +VD +VD +Nt +VD +VD +VD +VD +VD +xF +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +UI +Qm +Qm +Qm +Qm +Qm +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +"} +(93,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +Rf +cK +cK +cK +cK +Lh +kn +kn +kn +kn +cK +cK +kn +kn +cK +Ls +MO +dg +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +Aj +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +Tk +MO +MO +MO +NF +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +VD +pI +jn +VD +VD +xF +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(94,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +Yf +kn +kn +TX +MO +MO +MO +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +cK +Aj +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Dh +MO +PG +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +jn +jn +jn +jn +VD +Yi +VD +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +xA +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(95,1,1) = {" +BW +BW +kn +kn +cK +cK +cK +sh +cK +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +gT +cK +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +MO +MO +cK +cK +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +jn +VD +VD +VD +xF +VD +Am +jn +BW +BW +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +UI +Qm +Qm +Qm +Qm +Qm +UI +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(96,1,1) = {" +BW +BW +kn +kn +cK +wS +cK +cK +cK +cK +PP +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +uT +cK +kn +kn +cK +jD +MO +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +Yf +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +jn +HP +pr +VD +VD +VD +Ul +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(97,1,1) = {" +BW +BW +kn +kn +cK +cK +cK +cK +uT +cK +cK +cK +Aj +cK +yI +cK +cK +cK +cK +cK +cK +uT +cK +cK +cK +yI +cK +cK +cK +cK +cK +kn +kn +cK +jD +MO +cK +cK +cK +cK +cK +kn +id +id +id +id +kn +kn +kn +kn +kn +Aj +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +jn +VD +VD +VD +VD +xF +VD +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(98,1,1) = {" +BW +BW +kn +kn +cK +cK +PP +cK +cK +Aj +cK +cK +cK +cK +cK +Aj +Aj +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +MO +MO +cK +cK +kn +wq +cK +kn +cK +rq +rq +rq +kn +kn +kn +kn +kn +Aj +cK +kn +kn +Zp +lK +lK +lK +Ux +Zp +kn +kn +kn +kn +kn +kn +kn +cU +cU +kn +kn +kn +kn +cK +cK +kn +kn +Tn +df +df +wD +kn +BW +BW +BW +BW +BW +BW +jn +VD +VD +VD +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(99,1,1) = {" +BW +BW +kn +kn +cK +wS +cK +cK +cK +cK +uT +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +TX +MO +MO +MO +cK +kn +cK +cK +NF +cK +rq +rq +rq +kn +kn +kn +kn +kn +Aj +cK +kn +kn +Zp +tt +PU +lK +Ux +Zp +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +kn +kn +HQ +cK +cK +eS +kn +BW +BW +BW +BW +BW +BW +jn +GX +VD +VD +VD +VD +VD +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +EJ +Qm +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(100,1,1) = {" +BW +BW +kn +kn +cK +cK +cK +Aj +Aj +Aj +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +dg +MO +dg +cK +kn +TX +cK +kn +cK +rq +rq +rq +kn +kn +kn +kn +kn +cK +CS +kn +kn +Zp +Zp +Zp +Zp +Ux +cK +NF +cK +Ux +Ux +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +cK +lZ +cK +ZB +cK +cK +kn +BW +BW +BW +BW +BW +BW +jn +jn +jn +jn +jn +jn +jn +jn +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +BW +BW +BW +"} +(101,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +nI +cK +cK +cK +cK +kn +kn +cK +cK +kn +kn +cK +cK +cK +cK +cK +kn +cK +cK +kn +id +id +id +id +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +lu +Ux +Ux +Ux +cK +cK +kn +kn +cK +Yf +kn +kn +cK +cK +cK +lZ +cK +cK +cK +cK +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +qT +qT +qT +qT +qT +BW +BW +BW +"} +(102,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +jg +cK +Aj +cK +cK +wS +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cU +cU +kn +nR +cK +kL +Re +kn +kn +kn +kn +Ux +Ux +Ux +Ux +Ux +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +TB +cK +cK +cK +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +BW +BW +BW +"} +(103,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +cK +KA +cK +xO +Aj +Qb +Aj +Aj +cK +Aj +cK +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +cK +cK +DK +cK +kn +kn +kn +kn +cK +IB +Ux +Ux +Ux +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +Jp +Jp +Jp +Jp +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +BW +BW +BW +"} +(104,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +Aj +cK +cK +Qb +cK +cK +cK +xO +cK +cK +kn +kn +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +NF +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +Qm +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +BW +BW +BW +"} +(105,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +cK +jg +cK +cK +cK +cK +cK +cK +Aj +cK +Aj +cK +kn +kn +cK +cK +cK +cK +Yf +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +Ux +cK +cK +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +BW +BW +BW +"} +(106,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +TX +Aj +kn +kn +kn +kn +kn +kn +cK +cK +xO +Aj +Aj +cK +cK +cK +xO +Aj +Aj +cK +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +TB +cK +kn +kn +kn +kn +cK +cK +cK +cK +cK +NU +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +BW +BW +BW +"} +(107,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +Aj +Aj +Aj +cK +cK +wS +cK +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(108,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +BX +cK +cK +cK +cK +cK +jg +cK +cK +cK +kn +kn +kn +kn +kn +cK +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +Ux +Ux +MO +MO +MO +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(109,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +Zp +mS +Ux +Ux +Ux +Ux +Zp +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +kM +MO +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +xA +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +xA +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(110,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +sh +Aj +Aj +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +kn +Zp +Ux +Ux +Ux +oT +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +IB +Ux +Ux +Ux +MO +kn +kn +cK +cK +cK +cK +yI +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +BW +BW +BW +"} +(111,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +cK +cK +Aj +Aj +cK +cK +uT +Aj +Aj +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +kn +Zp +Ux +Ux +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +Ux +MO +kn +kn +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(112,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +cK +cK +Aj +Aj +Aj +cK +cK +uT +yI +cK +cK +cK +cK +kn +kn +Zp +Ux +Ux +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +Ux +Ux +Ux +Ux +MO +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +Qm +Qm +UI +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(113,1,1) = {" +BW +BW +kn +Fr +cK +pJ +cK +cK +ER +kn +kn +kn +JA +cK +kn +kn +kn +kn +kn +kn +cK +Aj +Aj +cK +Aj +cK +cK +Aj +Aj +Aj +cK +cK +cK +kn +Zp +Zp +vA +Ux +Ux +Ux +Ux +Ux +Ux +Ux +Ux +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +MO +MO +MO +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(114,1,1) = {" +BW +BW +kn +cI +Aj +Aj +cK +Aj +oO +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +NF +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +lK +Ux +Ux +Ux +Zp +Ux +Ux +Ux +Ux +Ux +Ux +cK +cK +cK +cK +cK +cK +wq +cK +yI +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +Qm +Qm +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(115,1,1) = {" +BW +BW +kn +Sx +cK +MO +CT +cK +cK +kn +kn +kn +cK +Aj +kn +kn +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +lK +lK +Ux +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +cK +wq +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +Aj +Aj +cK +cU +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(116,1,1) = {" +BW +BW +kn +Lh +cK +CY +CT +cK +Aj +Aj +cK +cK +cK +Aj +kn +kn +cK +Jq +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +Zp +lK +lK +lK +Ux +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +cK +gj +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +Aj +Aj +Aj +Aj +cU +Qm +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(117,1,1) = {" +BW +BW +kn +xI +Aj +Pa +CT +cK +Aj +Aj +Aj +cK +cK +Aj +kn +kn +cK +cK +cK +kL +kn +kn +kn +WB +cK +cK +cK +cK +cK +kn +kn +cK +cK +kn +Zp +Zp +Zp +lK +Ux +Ux +Ux +oT +Ux +Zp +kn +cK +cK +kn +cK +Ux +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +cK +cK +cK +kn +kn +cK +cK +kn +cK +cK +yI +gT +Lh +Lh +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(118,1,1) = {" +BW +BW +kn +ME +Aj +AH +CT +cK +cK +kn +kn +kn +cK +Aj +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +Bf +Bf +cK +kn +kn +cK +cK +kn +kn +kn +Zp +lK +lK +Ux +Ux +Ux +Ux +Zp +kn +cK +cK +kn +Ux +Ux +Ux +Ux +Ux +Zp +kn +kn +cK +cK +kn +kn +kn +NF +kn +kn +kn +cK +cK +kn +jg +cK +Bf +cK +cK +Bf +kn +kn +TX +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +UI +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +xj +NM +qT +qT +qT +qT +qT +BW +BW +BW +"} +(119,1,1) = {" +BW +BW +kn +sa +Aj +cK +cK +Aj +Ly +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +pt +cK +cK +pJ +pJ +pJ +cK +cK +kn +kn +cK +cK +cK +kn +kn +Zp +lK +lK +lK +lK +Ux +Zp +Zp +kn +cK +cK +NF +cK +Ux +oT +Ux +Ux +Zp +kn +kn +cK +cK +cK +cK +cK +yI +cK +cK +cK +cK +cK +cK +gT +cK +Bf +yS +gT +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +xA +Qm +Qm +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +Av +Av +NM +NM +NM +qT +qT +qT +BW +BW +BW +"} +(120,1,1) = {" +BW +BW +kn +yM +cK +EN +cK +Aj +BM +kn +kn +kn +JA +cK +kn +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +cK +cK +cK +kn +kn +cK +cK +cK +kn +kn +Zp +lK +lK +lK +lK +lK +Zp +kn +kn +cK +cK +kn +cK +Ux +Ux +Ux +Ux +Zp +kn +kn +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +gT +cK +Bf +cK +Bf +jL +cK +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +Av +Av +Av +Av +Av +NM +NM +qT +qT +BW +BW +BW +"} +(121,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Aj +cK +kn +kn +kn +kn +kn +kn +kn +MO +MO +MO +pJ +pJ +pJ +cK +cK +kn +kn +kn +cK +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kn +kn +TB +cK +kn +cK +Ux +Ux +Ux +AV +Zp +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +cK +cK +jc +cK +Lh +Lh +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Av +Av +Av +fK +Av +Av +Av +NM +NM +qT +BW +BW +BW +"} +(122,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +MO +MO +MO +MO +cK +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +Zp +Zp +Zp +Zp +Zp +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +qT +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Qm +Av +Av +fK +uU +fK +fK +rJ +Av +NM +qT +BW +BW +BW +"} +(123,1,1) = {" +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +cD +jD +jD +cD +MO +cK +wS +cK +kn +kn +kn +cK +Yf +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +cK +cK +yI +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +EJ +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +Qm +Qm +Av +Av +fK +fK +oy +fK +fK +Av +NM +qT +BW +BW +BW +"} +(124,1,1) = {" +BW +BW +BW +BW +BW +xK +xK +xK +xK +xK +xK +xK +ZY +ZY +xK +kn +kn +kn +kn +kn +kn +cD +jD +jD +ae +MO +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +MO +Ux +Ux +MO +MO +cK +kn +kn +kn +cK +Ux +Ux +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Av +Av +fK +fK +fK +fK +Av +xj +qT +BW +BW +BW +"} +(125,1,1) = {" +BW +BW +BW +BW +BW +xK +zv +zv +xK +zv +zv +xK +TV +jR +xK +kn +kn +kn +kn +kn +kn +cD +jD +jD +Op +MO +cK +cK +cK +cK +cK +cK +uT +cK +kn +kn +kn +cK +cK +cK +Ux +Ux +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +MO +cK +cK +cK +cK +Ux +Ux +Zp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +Qm +Qm +Qm +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Av +Av +fK +fK +fK +rJ +Av +NM +qT +BW +BW +BW +"} +(126,1,1) = {" +BW +BW +BW +xK +xK +xK +nD +nD +xK +nD +nD +xK +yW +yW +xK +kn +kn +kn +kn +kn +kn +cD +jD +jD +cD +MO +cK +wS +cK +kn +kn +kn +cK +cK +kn +kn +kn +cK +Ux +Ux +Ux +Ux +lK +lK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +Ux +Ux +MO +cK +cK +cK +Ux +Ux +Ux +Zp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +qT +qT +Qm +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +Av +Av +rJ +fK +Av +Av +Av +NM +qT +BW +BW +BW +"} +(127,1,1) = {" +BW +BW +BW +xK +nD +mr +nD +nD +mr +nD +nD +mr +nD +nD +xK +kn +kn +kn +kn +kn +kn +MO +MO +MO +MO +cK +cK +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +KR +Ux +Ux +IB +Ux +lK +lK +lK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +cK +Ux +Ux +IB +Ux +MO +cK +kn +kn +kn +Ux +lK +Zp +kn +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +UI +Qm +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +Av +Av +Av +Av +Av +Av +NM +qT +BW +BW +BW +"} +(128,1,1) = {" +BW +BW +BW +xK +nD +nD +nD +nD +go +nD +nD +go +nD +nD +xK +kn +kn +kn +kn +kn +kn +MO +MO +MO +pJ +pJ +pJ +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +cK +cK +Ux +Ux +Ux +Ux +Ux +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +Rf +cK +cK +cK +cK +cK +cK +kn +kn +kn +Ux +lK +Zp +kn +kn +UC +cK +cK +cK +cK +pN +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +xj +Av +Av +Av +NM +NM +qT +BW +BW +BW +"} +(129,1,1) = {" +BW +BW +BW +xK +nD +nD +xK +xK +xK +nD +nD +xK +nD +nD +xK +kn +kn +kn +kn +kn +kn +cK +wS +cK +cK +cK +cK +Bf +cK +kn +kn +kn +cK +cK +kn +kn +kn +cK +cK +Ux +Ux +Ux +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Ux +lK +Zp +kn +kn +Lh +cK +cK +oE +cK +cK +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +NM +NM +NM +NM +NM +qT +qT +BW +BW +BW +"} +(130,1,1) = {" +BW +BW +BW +xK +nD +nD +xK +xK +xK +zv +zv +xK +zv +zv +xK +kn +kn +kn +kn +kn +kn +OK +cK +cK +pJ +pJ +pJ +cK +cK +kn +kn +kn +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +yI +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +yI +Ux +Ux +Ux +Ux +lK +Zp +kn +kn +Vq +cK +cK +cK +cK +Yf +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +Qm +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(131,1,1) = {" +BW +BW +BW +xK +nD +nD +nD +Xd +xK +xK +xK +xK +xK +xK +xK +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +Bf +cK +cK +kn +kn +kn +kn +NF +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +cK +cK +cK +cK +cK +wq +cK +cK +cK +cK +cK +cK +cK +cK +Ux +Ux +lK +lK +lK +lK +Zp +kn +kn +Lh +cK +cK +UK +cK +cK +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +UI +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +"} +(132,1,1) = {" +BW +BW +BW +xK +nD +nD +nD +Xd +xK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +WB +cK +cK +cK +cK +cK +kn +kn +kn +cK +cK +cK +fI +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +NF +kn +kn +kn +kn +kn +Zp +Zp +Zp +Zp +Zp +Zp +kn +kn +Lm +cK +Vz +cK +cK +Lh +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(133,1,1) = {" +BW +BW +BW +xK +xK +xK +xK +xK +xK +kn +kn +kn +kn +rb +rb +rb +rb +rb +kn +kn +kn +kn +kn +kn +kn +Bg +kn +kn +kn +kn +kn +kn +cK +cK +cK +BX +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +cK +JL +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Lh +cK +cK +cK +Lh +pH +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +Qm +Qm +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(134,1,1) = {" +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +rb +cK +cK +cK +rb +kn +kn +kn +kn +kn +kn +kn +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +cK +JL +cK +TO +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(135,1,1) = {" +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +mu +cK +MO +cK +cK +kn +kn +kn +kn +kn +kn +kn +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +qT +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(136,1,1) = {" +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +Xq +MO +sG +MO +cK +cK +cK +cK +cK +cK +cK +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(137,1,1) = {" +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +mu +cK +MO +cK +cK +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(138,1,1) = {" +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +rb +cK +cK +cK +rb +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(139,1,1) = {" +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +rb +rb +rb +rb +rb +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} +(140,1,1) = {" +BW +BW +BW +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +BW +"} diff --git a/maps/redgate/fantasy_items.dm b/maps/redgate/fantasy_items.dm new file mode 100644 index 0000000000..69c82e2a1d --- /dev/null +++ b/maps/redgate/fantasy_items.dm @@ -0,0 +1,554 @@ + +/obj/item/device/healthanalyzer/scroll //reports all of the above, as well as name and quantity of nonmed reagents in stomach + name = "scroll of divination" + desc = "An unusual scroll that appears to report all of the details of a person's health when waved near them. Oddly, it seems to have a little metal chip up near the handles..." + advscan = 3 + origin_tech = list(TECH_MAGNET = 7, TECH_BIO = 8) + icon_state = "health_scroll" + + +/obj/item/weapon/tool/crowbar/alien/magic + name = "sentient crowbar" + desc = "A crowbar with a green gem set in it and a green ribbon tied to it, it floats lightly by itself and appears to be able to pry on its own. It almost feels like there is some sort of anti gravity generator running in it..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_crowbar) + icon_state = "crowbar_sentient" + +/obj/item/weapon/tool/screwdriver/alien/magic + name = "vintage screwdriver of revolving" + desc = "A vintage screwdriver that spins as fast as a drill with little aid, it has a red gem on the handle. It oddly sounds like a drill too..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_screwdriver) + icon = 'icons/obj/abductor.dmi' + icon_state = "screwdriver_old" + +/obj/item/weapon/weldingtool/alien/magic + name = "bellows of flame" + desc = "A set of bellows that have a yellow gem on the spout, they emit flames when pressed. Oddly seems to have a faint phoron smell to it..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_welder) + icon = 'icons/obj/abductor.dmi' + icon_state = "bellows" + +/obj/item/weapon/tool/wirecutters/alien/magic + name = "secateurs of organisation" + desc = "Extremely sharp secateurs, fitted with a glowing blue gem, said to be magically enhanced for speed. There seems to be a little whirring sound coming from beneath that gem..." + icon = 'icons/obj/abductor.dmi' + icon_state = "cutters_magic" + +/obj/item/weapon/tool/wrench/alien/magic + name = "pliers of molding" + desc = "A set of pliers that seems to mold to the shape of their target, housing a pink gem. Oddly seems to have a slightly slimey texture at the metal..." + catalogue_data = list(/datum/category_item/catalogue/anomalous/precursor_a/alien_wrench) + icon = 'icons/obj/abductor.dmi' + icon_state = "pliers" + +/obj/item/weapon/surgical/bone_clamp/alien/magic + icon = 'icons/obj/abductor.dmi' + toolspeed = 0.75 + icon_state = "bone_boneclamp" + name = "bone bone clamp" + desc = "A bone clamp made of bones for fixing bones using bones, it feels strangely adept. In fact, it doesn't really feel like actual bone at all..." + +// Bath + +/obj/structure/bed/bath + name = "wash tub" + desc = "A wooden tub that can be filled with water for washing yourself." + icon_state = "bath" + base_icon = "bath" + flags = OPENCONTAINER + var/amount_per_transfer_from_this = 5 + +/obj/structure/bed/bath/update_icon() + if(reagents.total_volume < 1) + icon_state = "bath" + else if(reagents.total_volume < 50) + icon_state = "bath1" + else if(reagents.total_volume < 150) + icon_state = "bath2" + else if(reagents.total_volume < 301) + icon_state = "bath3" + return // Doesn't care about material or anything else. + +/obj/structure/bed/bath/attackby(obj/item/I, mob/user) + if(istype(I, /obj/item/weapon/mop) || istype(I, /obj/item/weapon/soap)) //VOREStation Edit - "Allows soap and rags to be used on mopbuckets" + if(reagents.total_volume < 1) + to_chat(user, "\The [src] is out of water!") + else + reagents.trans_to_obj(I, 5) + to_chat(user, "You wet \the [I] in \the [src].") + playsound(src, 'sound/effects/slosh.ogg', 25, 1) + if(istype(I, /obj/item/weapon/reagent_containers/glass)) + update_icon() + return + else if(istype(I, /obj/item/weapon/grab)) + var/obj/item/weapon/grab/G = I + var/mob/living/affecting = G.affecting + if(has_buckled_mobs()) //Handles trying to buckle someone else to a chair when someone else is on it + to_chat(user, "\The [src] already has someone buckled to it.") + return + user.visible_message("[user] attempts to buckle [affecting] into \the [src]!") + if(do_after(user, 20, G.affecting)) + affecting.loc = loc + spawn(0) + if(buckle_mob(affecting)) + affecting.visible_message(\ + "[affecting.name] is buckled to [src] by [user.name]!",\ + "You are buckled to [src] by [user.name]!",\ + "You hear metal clanking.") + qdel(I) + + +/obj/structure/bed/bath/New() + create_reagents(300) + ..() + +//oven + +/obj/machinery/appliance/cooker/oven/yeoldoven + name = "oven" + desc = "Old fashioned cookies are ready, dear." + icon_state = "yeoldovenopen" + +/obj/machinery/appliance/cooker/oven/yeoldoven/update_icon() + if(!open) + if(!stat) + icon_state = "yeoldovenclosed_on" + if(cooking == TRUE) + icon_state = "yeoldovenclosed_cooking" + if(oven_loop) + oven_loop.start(src) + else + icon_state = "yeoldovenclosed_on" + if(oven_loop) + oven_loop.stop(src) + else + icon_state = "yeoldovenclosed_off" + if(oven_loop) + oven_loop.stop(src) + else + icon_state = "yeoldovenopen" + if(oven_loop) + oven_loop.stop(src) + +//toilet + +/obj/structure/toilet/wooden + name = "wooden toilet" + desc = "It's basically a hole in a box with a bucket inside. This one seems remarkably clean." + icon_state = "toilet3" + open = 1 + +/obj/structure/toilet/wooden/attack_hand(mob/living/user as mob) + return //No lid + +/obj/structure/toilet/wooden/attackby(obj/item/I as obj, mob/living/user as mob) //simpler interactions + if(istype(I, /obj/item/weapon/grab)) + user.setClickCooldown(user.get_attack_speed(I)) + var/obj/item/weapon/grab/G = I + + if(isliving(G.affecting)) + var/mob/living/GM = G.affecting + + if(G.state>1) + if(!GM.loc == get_turf(src)) + to_chat(user, "[GM.name] needs to be on the toilet.") + return + if(open && !swirlie) + user.visible_message("[user] starts to give [GM.name] a swirlie!", "You start to give [GM.name] a swirlie!") + swirlie = GM + if(do_after(user, 30, GM)) + user.visible_message("[user] gives [GM.name] a swirlie!", "You give [GM.name] a swirlie!", "You hear a toilet flushing.") + if(!GM.internal) + GM.adjustOxyLoss(5) + swirlie = null + else + user.visible_message("[user] slams [GM.name] into the [src]!", "You slam [GM.name] into the [src]!") + GM.adjustBruteLoss(5) + else + to_chat(user, "You need a tighter grip.") + + if(cistern && !istype(user,/mob/living/silicon/robot)) //STOP PUTTING YOUR MODULES IN THE TOILET. + if(I.w_class > 3) + to_chat(user, "\The [I] does not fit.") + return + if(w_items + I.w_class > 5) + to_chat(user, "The cistern is full.") + return + user.drop_item() + I.loc = src + w_items += I.w_class + to_chat(user, "You carefully place \the [I] into the cistern.") + return + +/obj/structure/toilet/wooden/New() + open = 1 //just to make sure it works + icon_state = "toilet3" + return + +/obj/structure/toilet/wooden/update_icon() + return + +//cooking pot + +/obj/machinery/microwave/cookingpot + name = "cooking pot" + icon_state = "cookingpot" + desc = "An old fashioned cooking pot above some logs." + +/obj/machinery/microwave/cookingpot/start() + src.visible_message("The cooking pot starts cooking.", "You hear a fire roar.") + src.operating = TRUE + src.icon_state = "cookingpot1" + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/abort() + operating = FALSE // Turn it off again aferwards + if(icon_state == "cookingpot1") + icon_state = "cookingpot" + SStgui.update_uis(src) + + +/obj/machinery/microwave/cookingpot/stop() + operating = FALSE // Turn it off again aferwards + if(icon_state == "cookingpot1") + icon_state = "cookingpot" + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/attackby(var/obj/item/O as obj, var/mob/user as mob) + if(src.broken > 0) + if(src.broken == 2 && O.is_screwdriver()) // If it's broken and they're using a screwdriver + user.visible_message( \ + "\The [user] starts to fix part of the cooking pot.", \ + "You start to fix part of the cooking pot." \ + ) + playsound(src, O.usesound, 50, 1) + if (do_after(user,20 * O.toolspeed)) + user.visible_message( \ + "\The [user] fixes part of the cooking pot.", \ + "You have fixed part of the cooking pot." \ + ) + src.broken = 1 // Fix it a bit + else if(src.broken == 1 && O.is_wrench()) // If it's broken and they're doing the wrench + user.visible_message( \ + "\The [user] starts to fix part of the cooking pot.", \ + "You start to fix part of the cooking pot." \ + ) + if (do_after(user,20 * O.toolspeed)) + user.visible_message( \ + "\The [user] fixes the cooking pot.", \ + "You have fixed the cooking pot." \ + ) + src.icon_state = "cookingpot" + src.broken = 0 // Fix it! + src.dirty = 0 // just to be sure + src.flags = OPENCONTAINER | NOREACT + else + to_chat(user, "It's broken!") + return 1 + + else if(src.dirty==100) // The microwave is all dirty so can't be used! + if(istype(O, /obj/item/weapon/reagent_containers/spray/cleaner) || istype(O, /obj/item/weapon/soap)) // If they're trying to clean it then let them + user.visible_message( \ + "\The [user] starts to clean the cooking pot.", \ + "You start to clean the cooking pot." \ + ) + if (do_after(user,20)) + user.visible_message( \ + "\The [user] has cleaned the cooking pot.", \ + "You have cleaned the cooking pot." \ + ) + src.dirty = 0 // It's clean! + src.broken = 0 // just to be sure + src.icon_state = "cookingpot" + src.flags = OPENCONTAINER | NOREACT + SStgui.update_uis(src) + else //Otherwise bad luck!! + to_chat(user, "It's dirty!") + return 1 + else if(is_type_in_list(O,acceptable_items)) + var/list/workingList = cookingContents() + if(workingList.len>=(max_n_of_items + circuit_item_capacity)) //Adds component_parts to the maximum number of items. changed 1 to actually just be the circuit item capacity var. + to_chat(user, "This [src] is full of ingredients, you cannot put more.") + return 1 + if(istype(O, /obj/item/stack) && O:get_amount() > 1) // This is bad, but I can't think of how to change it + var/obj/item/stack/S = O + new O.type (src) + S.use(1) + user.visible_message( \ + "\The [user] has added one of [O] to \the [src].", \ + "You add one of [O] to \the [src].") + return + else + // user.remove_from_mob(O) //This just causes problems so far as I can tell. -Pete - Man whoever you are, it's been years. o7 + user.drop_from_inventory(O,src) + user.visible_message( \ + "\The [user] has added \the [O] to \the [src].", \ + "You add \the [O] to \the [src].") + SStgui.update_uis(src) + return + else if (istype(O,/obj/item/weapon/storage/bag/plants)) // There might be a better way about making plant bags dump their contents into a microwave, but it works. + var/obj/item/weapon/storage/bag/plants/bag = O + var/failed = 1 + for(var/obj/item/G in O.contents) + if(!G.reagents || !G.reagents.total_volume) + continue + failed = 0 + if(contents.len>=(max_n_of_items + component_parts.len + circuit_item_capacity)) + to_chat(user, "This [src] is full of ingredients, you cannot put more.") + return 0 + else + bag.remove_from_storage(G, src) + contents += G + if(contents.len>=(max_n_of_items + component_parts.len + circuit_item_capacity)) + break + + if(failed) + to_chat(user, "Nothing in the plant bag is usable.") + return 0 + + if(!O.contents.len) + to_chat(user, "You empty \the [O] into \the [src].") + else + to_chat(user, "You fill \the [src] from \the [O].") + + SStgui.update_uis(src) + return 0 + + else if(istype(O,/obj/item/weapon/reagent_containers/glass) || \ + istype(O,/obj/item/weapon/reagent_containers/food/drinks) || \ + istype(O,/obj/item/weapon/reagent_containers/food/condiment) \ + ) + if (!O.reagents) + return 1 + for (var/datum/reagent/R in O.reagents.reagent_list) + if (!(R.id in acceptable_reagents)) + to_chat(user, "Your [O] contains components unsuitable for cookery.") + return 1 + return + else if(istype(O,/obj/item/weapon/grab)) + var/obj/item/weapon/grab/G = O + to_chat(user, "This is ridiculous. You can not fit \the [G.affecting] in this [src].") + return 1 + else if(O.is_screwdriver()) + default_deconstruction_screwdriver(user, O) + return + else if(O.is_crowbar()) + if(default_deconstruction_crowbar(user, O)) + return + else + user.visible_message( \ + "\The [user] begins [src.anchored ? "unsecuring" : "securing"] the cooking pot.", \ + "You attempt to [src.anchored ? "unsecure" : "secure"] the cooking pot." + ) + if (do_after(user,20/O.toolspeed)) + user.visible_message( \ + "\The [user] [src.anchored ? "unsecures" : "secures"] the cooking pot.", \ + "You [src.anchored ? "unsecure" : "secure"] the cooking pot." + ) + src.anchored = !src.anchored + else + to_chat(user, "You decide not to do that.") + else if(default_part_replacement(user, O)) + return + else if(istype(O, /obj/item/device/paicard)) + if(!paicard) + insertpai(user, O) + else + to_chat(user, "You have no idea what you can cook with this [O].") + ..() + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/broke() + src.icon_state = "cookingpotb" // Make it look all busted up and shit + src.visible_message("The cooking pot breaks!") //Let them know they're stupid + src.broken = 2 // Make it broken so it can't be used util fixed + src.flags = null //So you can't add condiments + src.operating = 0 // Turn it off again aferwards + SStgui.update_uis(src) + soundloop.stop() + src.ejectpai() // If it broke, time to yeet the PAI. + +/obj/machinery/microwave/cookingpot/dispose(var/message = 1) + for (var/atom/movable/A in cookingContents()) + A.forceMove(loc) + if (src.reagents.total_volume) + src.dirty++ + src.reagents.clear_reagents() + if(message) + to_chat(usr, "You dispose of the cooking pot contents.") + SStgui.update_uis(src) + +/obj/machinery/microwave/cookingpot/muck_start() + playsound(src, 'sound/effects/splat.ogg', 50, 1) // Play a splat sound + src.icon_state = "cookingpotbloody1" // Make it look dirty!! + +/obj/machinery/microwave/cookingpot/muck_finish() + src.visible_message("The cooking pot gets covered in muck!") + src.dirty = 100 // Make it dirty so it can't be used util cleaned + src.flags = null //So you can't add condiments + src.icon_state = "cookingpotbloody0" // Make it look dirty too + src.operating = 0 // Turn it off again aferwards + SStgui.update_uis(src) + soundloop.stop() + +// Magic bluespace stuff + + +/obj/item/clothing/gloves/bluespace/magic + name = "bracer of resilience" + desc = "A bracer that is said to make one resistent to size changing magic." + icon = 'icons/inventory/accessory/item_vr.dmi' + icon_state = "bs_magic" + +//harpoon + +/obj/item/weapon/bluespace_harpoon/wand + name = "teleportation wand" + desc = "An odd wand that weighs more than it looks like it should. It has a wire protruding from it and a glass-like tip, suggesting there may be more tech behind this than magic." + + icon = 'icons/obj/gun_vr.dmi' + icon_state = "harpoonwand-2" + +/obj/item/weapon/bluespace_harpoon/wand/update_icon() + if(transforming) + switch(mode) + if(0) + flick("harpoonwand-2-change", src) + icon_state = "harpoonwand-1" + if(1) + flick("harpoonwand-1-change",src) + icon_state = "harpoonwand-2" + transforming = 0 + +/* + * magic orb + */ + +/obj/item/weapon/gun/energy/taser/magic + name = "orb of lightning" + desc = "An orb filled with electrical energy, it looks oddly like a toy plasma orb..." + description_fluff = "" + icon_state = "orb" + +//Kettle + +/obj/machinery/chemical_dispenser/kettle //reskin of coffee dispenser + name = "kettle" + desc = "A kettle used for making hot drinks." + icon_state = "kettle" + ui_title = "kettle" + accept_drinking = 1 + +/obj/machinery/chemical_dispenser/kettle/full + spawn_cartridges = list( + /obj/item/weapon/reagent_containers/chem_disp_cartridge/coffee, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/cafe_latte, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/soy_latte, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/hot_coco, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/milk, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/cream, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/sugar, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/tea, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/ice, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/mint, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/orange, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/lemon, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/lime, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/berry, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/greentea, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/decaf, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/chaitea, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/decafchai + ) + +// teleporter + +/obj/item/device/perfect_tele/magic + name = "teleportation tome" + desc = "A large tome that can be used to teleport to special pages that can be removed from it. The spine seems to have some sort buzzing tech inside..." + icon = 'icons/obj/props/fantasy.dmi' + icon_state = "teleporter" + beacons_left = 3 + cell_type = /obj/item/weapon/cell/device + origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5) + +/obj/item/device/perfect_tele_beacon/magic + name = "teleportation page" + desc = "A single page from a tome, with a glowing blue symbol on it. It seems like the symbol is raised as though there were something running beneath it..." + icon = 'icons/obj/props/fantasy.dmi' + icon_state = "page" + +/obj/item/device/perfect_tele/magic/attack_self(mob/user, var/radial_menu_anchor = src) + if(loc_network) + for(var/obj/item/device/perfect_tele_beacon/stationary/nb in premade_tele_beacons) + if(nb.tele_network == loc_network) + beacons[nb.tele_name] = nb + loc_network = null //Consumed + + if(!(user.ckey in warned_users)) + warned_users |= user.ckey + tgui_alert_async(user,{" +This device can be easily used to break ERP preferences due to the nature of teleporting and tele-vore. +Make sure you carefully examine someone's OOC prefs before teleporting them if you are going to use this device for ERP purposes. +This device records all warnings given and teleport events for admin review in case of pref-breaking, so just don't do it. +"},"OOC Warning") + var/choice = show_radial_menu(user, radial_menu_anchor, radial_images, custom_check = CALLBACK(src, PROC_REF(check_menu), user), require_near = TRUE, tooltips = TRUE) + + if(!choice) + return + + else if(choice == "New Beacon") + if(beacons_left <= 0) + to_chat(user, "The tome can't support any more pages!") + return + + var/new_name = html_encode(tgui_input_text(user,"New pages's name (2-20 char):","[src]",null,20)) + if(!check_menu(user)) + return + + if(length(new_name) > 20 || length(new_name) < 2) + to_chat(user, "Entered name length invalid (must be longer than 2, no more than than 20).") + return + + if(new_name in beacons) + to_chat(user, "No duplicate names, please. '[new_name]' exists already.") + return + + var/obj/item/device/perfect_tele_beacon/magic/nb = new(get_turf(src)) + nb.tele_name = new_name + nb.tele_hand = src + nb.creator = user.ckey + beacons[new_name] = nb + beacons_left-- + if(isliving(user)) + var/mob/living/L = user + L.put_in_any_hand_if_possible(nb) + rebuild_radial_images() + + else + destination = beacons[choice] + rebuild_radial_images() + +//sizegun + +/obj/item/device/slow_sizegun/magic + name = "wand of growth and shrinking" + desc = "A wand said to be able to shrink or grow it's targets, it's encrusted with glowing gems and a... trigger?" + icon = 'icons/obj/gun_vr.dmi' + icon_state = "sizegun-magic-0" + base_icon_state = "sizegun-magic" + +//locked door + +/obj/structure/simple_door/dungeon/Initialize(mapload,var/material_name) + ..(mapload, material_name || "cult") + +/obj/structure/simple_door/dungeon/locked + locked = TRUE + breakable = FALSE + lock_id = "dungeon" + +/obj/item/weapon/simple_key/dungeon + name = "old key" + desc = "A plain, old-timey key, as one might use to unlock a door." + icon_state = "dungeon" + key_id = "dungeon" diff --git a/maps/redgate/hotsprings.dmm b/maps/redgate/hotsprings.dmm index 69ba2d4cd8..bcfe0db172 100644 --- a/maps/redgate/hotsprings.dmm +++ b/maps/redgate/hotsprings.dmm @@ -1,402 +1,21849 @@ -"as" = (/turf/simulated/floor/water{name = "hotspring"; temperature = 310},/area/redgate/hotsprings/outdoors) -"aY" = (/obj/random/maintenance/morestuff,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"be" = (/obj/structure/table/rack/shelf,/obj/item/device/slow_sizegun,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"bt" = (/obj/machinery/light/poi{dir = 1},/obj/structure/salvageable/computer_os,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"bF" = (/obj/structure/bed/chair/sofa/right/purp{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/redgate/hotsprings/house) -"bL" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"cv" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"cw" = (/obj/structure/fence/corner{dir = 5},/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"cx" = (/obj/structure/toilet{dir = 4},/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"dc" = (/obj/structure/railing/grey,/obj/effect/floor_decal/shuttles,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"dq" = (/obj/structure/prop/warmrocks{dir = 8},/turf/simulated/floor/outdoors/rocks{outdoors = -1},/area/redgate/hotsprings/westcave) -"ds" = (/obj/structure/fans/tiny,/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/redgate/hotsprings/house/hotspringhouse) -"dA" = (/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/head/hood/winter,/obj/item/clothing/head/hood/winter,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/shoes/boots/winter,/obj/structure/closet,/obj/random/firstaid,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/maglight,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"dC" = (/obj/item/weapon/pickaxe,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"dQ" = (/obj/structure/bed/chair/comfy/blue{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"dT" = (/turf/simulated/floor/water{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"ea" = (/turf/simulated/mineral/ignore_cavegen{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"ej" = (/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"eq" = (/obj/structure/prop/warmrocks{dir = 8},/turf/simulated/floor/outdoors/rocks,/area/redgate/hotsprings/outdoors) -"ex" = (/turf/simulated/mineral/ignore_cavegen{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"eD" = (/obj/structure/flora/grass/green,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"fa" = (/obj/structure/bed/chair/office/light{dir = 1},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"fB" = (/obj/structure/table/rack/shelf,/obj/item/key/snowmobile,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"fJ" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"fT" = (/obj/machinery/door/airlock{id_tag = "hotspringdorm1"; name = "Bedroom Door"},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"gr" = (/obj/structure/prop/warmrocks{dir = 4},/turf/simulated/floor/outdoors/rocks{outdoors = -1},/area/redgate/hotsprings/westcave) -"gL" = (/obj/machinery/light/flamp,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"hg" = (/obj/vehicle/train/engine/quadbike/snowmobile,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"hr" = (/obj/structure/fence,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"hv" = (/obj/structure/closet/crate/wooden,/obj/item/weapon/reagent_containers/food/drinks/bottle/goldschlager,/obj/item/weapon/reagent_containers/food/drinks/bottle/jager,/obj/item/weapon/reagent_containers/food/drinks/bottle/peppermintschnapps,/obj/item/weapon/reagent_containers/food/drinks/bottle/sake,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/space_mountain_wind,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/obj/item/weapon/reagent_containers/food/drinks/bottle/wine,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/meteor,/obj/item/weapon/reagent_containers/food/drinks/bottle/redeemersbrew,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"hA" = (/obj/structure/table/wooden_reinforced,/obj/item/toy/rock,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"hO" = (/obj/item/toy/bouquet,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"hR" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"hX" = (/obj/structure/table/woodentable,/obj/item/weapon/toy/snowglobe/snowvillage,/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"ic" = (/obj/random/tool/alien,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/succcave) -"ie" = (/obj/structure/table/rack,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"iE" = (/obj/item/weapon/paper/card/heart,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"iF" = (/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"iK" = (/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"iV" = (/obj/structure/table/rack/shelf,/obj/random/tool,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"iX" = (/turf/simulated/floor/outdoors/ice{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"ji" = (/turf/simulated/floor/water{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"jp" = (/turf/simulated/wall/durasteel,/area/redgate/hotsprings/redgate) -"jG" = (/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"jK" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rainbowdouble,/turf/simulated/floor/wood,/area/redgate/hotsprings/house/hotspringhouse) -"kf" = (/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"ki" = (/obj/structure/bed/chair/sofa/purp{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/redgate/hotsprings/house) -"ko" = (/obj/item/weapon/stool/padded,/obj/item/weapon/stool/padded{pixel_y = 10},/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"kt" = (/obj/structure/redgate/away,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"kR" = (/obj/structure/railing/grey{dir = 4},/obj/effect/floor_decal/industrial/warning/color/yellow,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"lb" = (/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"lp" = (/obj/machinery/light/poi{dir = 8},/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"me" = (/turf/simulated/mineral/cave{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"mn" = (/obj/structure/trash_pile,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"mr" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"mv" = (/obj/effect/floor_decal/shuttle/handicap,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"mA" = (/obj/item/weapon/bedsheet/purpledouble{pixel_x = 4},/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"mN" = (/obj/structure/flora/ausbushes/stalkybush,/turf/simulated/floor/outdoors/grass/sif{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15; tree_chance = 0},/area/redgate/hotsprings/outdoors) -"mR" = (/obj/structure/flora/mushroom,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"na" = (/obj/machinery/light/poi{dir = 1},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"nd" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"nV" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"oa" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"ol" = (/turf/simulated/wall/durasteel,/area/redgate/hotsprings/outdoors) -"oC" = (/obj/random/medical/pillbottle,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"oQ" = (/obj/structure/bonfire,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"oR" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"oY" = (/obj/structure/closet/crate/wooden,/obj/item/clothing/under/swimsuit/black,/obj/item/clothing/under/swimsuit/blue,/obj/item/clothing/under/swimsuit/cowbikini,/obj/item/clothing/under/swimsuit/earth,/obj/item/clothing/under/swimsuit/risque,/obj/item/clothing/under/swimsuit/stripper/mankini,/obj/item/clothing/under/shorts/green,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/under/shorts/black,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"pE" = (/turf/simulated/mineral/ignore_cavegen{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"pK" = (/turf/simulated/wall/log,/area/redgate/hotsprings/house/dorm1) -"pR" = (/obj/item/weapon/broken_bottle,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"pT" = (/obj/item/clothing/suit/storage/hooded/wintercoat/aformal,/obj/item/clothing/head/hood/winter/aformal,/obj/item/clothing/shoes/boots/winter,/obj/structure/closet,/obj/random/firstaid,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/maglight,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"pU" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/carpet/gaycarpet,/area/redgate/hotsprings/house) -"pV" = (/obj/effect/fake_sun/cool,/turf/simulated/floor/beach/water/ocean{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"qf" = (/obj/structure/flora/log2,/turf/simulated/floor/water{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"qk" = (/obj/machinery/button/windowtint{id = "hotspringdormW1"; layer = 3.3; name = "Window Tint Control"; pixel_x = 23; pixel_y = 4; range = 10},/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lamp/green{pixel_y = 2},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"qt" = (/obj/item/weapon/stool/padded{pixel_y = 10},/obj/item/weapon/stool/padded,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"qJ" = (/obj/structure/salvageable/autolathe,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"qQ" = (/turf/simulated/mineral/ignore_cavegen{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"rs" = (/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"sd" = (/obj/structure/prop/rock/crystal_dust,/turf/simulated/floor/outdoors/ice{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"sk" = (/obj/structure/fuel_port/empty{pixel_y = 28},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"sL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating{temperature = 258.15},/area/redgate/hotsprings/redgate) -"sX" = (/obj/random/contraband,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"tb" = (/turf/simulated/wall/wood,/area/redgate/hotsprings/house/dorm2) -"tg" = (/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"tH" = (/obj/random/coin,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/succcave) -"tL" = (/obj/structure/closet/walllocker_double{dir = 8; pixel_x = -28},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = -5},/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"tO" = (/turf/simulated/floor/weird_things/dark{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"tV" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"tZ" = (/turf/simulated/floor/water{name = "hotspring"; nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 310},/area/redgate/hotsprings/house/hotspringhouse) -"um" = (/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = 7; pixel_y = -5},/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"un" = (/obj/random/multiple/ore_pile,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"uu" = (/turf/simulated/floor/wmarble,/area/redgate/hotsprings/house) -"uC" = (/obj/structure/railing/grey{dir = 8},/obj/effect/floor_decal/industrial/warning/color/yellow,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"uD" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"uT" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"uU" = (/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"uW" = (/obj/random/mob/semirandom_mob_spawner/vore/retaliate,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"uZ" = (/obj/structure/prop/warmrocks{dir = 4},/turf/simulated/floor/outdoors/rocks,/area/redgate/hotsprings/outdoors) -"vb" = (/mob/living/simple_mob/shadekin/yellow/retaliate/dark,/turf/simulated/floor/weird_things/dark{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"vi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating{temperature = 258.15},/area/redgate/hotsprings/house) -"vm" = (/obj/structure/prop/rock/crystal,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"vo" = (/mob/living/simple_mob/vore/alienanimals/teppi,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"vA" = (/obj/item/weapon/reagent_containers/food/drinks/cans/beercan{pixel_x = 11; pixel_y = 4},/obj/item/weapon/reagent_containers/food/drinks/cans/beercan,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"vE" = (/obj/structure/flora/sif/frostbelle,/turf/simulated/floor/outdoors/grass/sif{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15; tree_chance = 0},/area/redgate/hotsprings/outdoors) -"vO" = (/turf/simulated/floor/water{name = "hotspring"; nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 310},/area/redgate/hotsprings/westcave) -"vP" = (/obj/machinery/shower{pixel_y = 19},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/borderfloorwhite/shifted{dir = 10},/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"vZ" = (/obj/structure/bed/chair/sofa/bench/right{dir = 1},/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"wL" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/hopdouble,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"wX" = (/turf/simulated/mineral/ignore_cavegen{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/succcave) -"xd" = (/turf/simulated/wall/log,/area/redgate/hotsprings/house/dorm2) -"xq" = (/obj/structure/bed/chair/sofa/left/purp,/turf/simulated/floor/carpet/gaycarpet,/area/redgate/hotsprings/house) -"xs" = (/obj/structure/fence{dir = 4},/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"xY" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"yp" = (/obj/structure/snowman,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"yt" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"yu" = (/turf/simulated/floor/outdoors/ice{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"yG" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 4},/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"yM" = (/obj/structure/table/woodentable,/obj/item/trash/candy/cb06,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"yU" = (/obj/structure/bonfire,/turf/simulated/floor/wmarble,/area/redgate/hotsprings/house) -"yW" = (/obj/structure/bookcase,/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"yZ" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"zu" = (/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,/turf/simulated/floor/outdoors/ice{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"zv" = (/turf/simulated/floor/beach/water/ocean{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"zx" = (/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"zB" = (/obj/structure/bed/double,/obj/item/weapon/bedsheet/hopdouble,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"zI" = (/obj/item/weapon/storage/toolbox/lunchbox/filled,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"zM" = (/obj/structure/fence/door,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"zP" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"zR" = (/obj/item/trash/coffee,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"zU" = (/obj/random/plushie,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Aj" = (/obj/item/capture_crystal/random,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"At" = (/obj/structure/bonfire,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"AM" = (/obj/structure/bed/chair/sofa/corner/purp{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/redgate/hotsprings/house) -"AV" = (/obj/structure/table/rack/shelf,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"AY" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"Be" = (/obj/structure/dirtybed,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"BM" = (/obj/structure/table/glass,/obj/item/weapon/pen,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"Ci" = (/obj/machinery/light/poi{dir = 4},/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"Cu" = (/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"CL" = (/obj/item/weapon/tool/screwdriver/brass,/obj/item/weapon/tool/wrench/brass{pixel_x = 5; pixel_y = -5},/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"CM" = (/obj/structure/prop/warmrocks{dir = 1},/turf/simulated/floor/outdoors/rocks{outdoors = -1},/area/redgate/hotsprings/westcave) -"CO" = (/obj/random/mouseray,/obj/random/cash/huge,/obj/item/clothing/ears/earring/dangle/diamond,/obj/item/clothing/gloves/ring/material/diamond,/obj/structure/closet/grave/dirthole,/obj/random/coin,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"CZ" = (/obj/structure/fence{dir = 8},/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Df" = (/obj/item/trash/beef,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Dq" = (/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"Dt" = (/obj/structure/simple_door/wood,/obj/structure/atmospheric_retention_field/underdoors,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"Dv" = (/obj/structure/prop/warmrocks,/turf/simulated/floor/outdoors/rocks,/area/redgate/hotsprings/outdoors) -"DA" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/storage/box/donkpockets/berry,/obj/item/weapon/storage/box/donkpockets/berry,/obj/item/weapon/storage/box/donkpockets/berry,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"DD" = (/turf/simulated/floor/water/deep{name = "deep hotspring"; temperature = 310},/area/redgate/hotsprings/outdoors) -"DN" = (/turf/simulated/floor/carpet/gaycarpet,/area/redgate/hotsprings/house) -"DO" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "hotspringdormW2"; name = "Tintable Window"},/turf/simulated/floor/plating{temperature = 258.15},/area/redgate/hotsprings/house/dorm2) -"DS" = (/obj/machinery/button/windowtint{id = "hotspringdormW2"; layer = 3.3; name = "Window Tint Control"; pixel_x = 23; pixel_y = 4; range = 10},/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lamp/green{pixel_y = 2},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"Ea" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"Eg" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/wmarble,/area/redgate/hotsprings/house) -"Et" = (/obj/structure/prop/warmrocks{invisibility = 101},/turf/simulated/floor/water{name = "hotspring"; nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 310},/area/redgate/hotsprings/westcave) -"EJ" = (/obj/machinery/light/poi,/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"EN" = (/obj/random/coin,/obj/item/weapon/storage/mre,/obj/item/trash/beans{pixel_x = -9},/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"EO" = (/obj/machinery/light/floortube{dir = 1},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"EQ" = (/obj/machinery/light/flicker,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"ES" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"Fn" = (/obj/random/coin,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"FR" = (/turf/simulated/floor/wood{nitrogen = 93.7835; oxygen = 20.7263; temperature = 310},/area/redgate/hotsprings/house/hotspringhouse) -"Gb" = (/obj/item/weapon/bluespace_crystal{pixel_x = -7; pixel_y = 1},/obj/item/weapon/bluespace_crystal{pixel_x = 6; pixel_y = 4},/obj/item/weapon/bluespace_crystal,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"Ge" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"Gs" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/gaycarpet,/area/redgate/hotsprings/house) -"GP" = (/turf/simulated/wall/log,/area/redgate/hotsprings/house/hotspringhouse) -"Hm" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_alc,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Hn" = (/obj/structure/prop/rock/crystal,/turf/simulated/floor/outdoors/ice{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"Ht" = (/turf/simulated/wall/snowbrick,/area/redgate/hotsprings/house) -"Hw" = (/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"HD" = (/obj/random/tool,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"HI" = (/obj/structure/flora/tree/pine,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Ik" = (/obj/structure/railing/grey,/obj/structure/prop/poicanister,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"In" = (/mob/living/simple_mob/vore/alienanimals/succlet,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/succcave) -"Ix" = (/obj/structure/sign/warning/cold,/turf/simulated/wall/durasteel,/area/redgate/hotsprings/redgate) -"Iy" = (/turf/simulated/floor/outdoors/rocks{outdoors = -1},/area/redgate/hotsprings/westcave) -"IE" = (/obj/structure/bed/chair/comfy/blue{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"IN" = (/obj/machinery/light/poi,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"IZ" = (/obj/machinery/door/airlock{id_tag = "hotspringdorm2"; name = "Bedroom Door"},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"Jq" = (/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"Ju" = (/obj/machinery/door/airlock/glass,/obj/structure/atmospheric_retention_field/underdoors,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"Kb" = (/obj/structure/table/woodentable,/obj/item/clothing/accessory/gaiter/snow,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Kt" = (/obj/structure/table/woodentable,/obj/item/trash/chips/snv,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"KB" = (/mob/living/simple_mob/vore/pakkun,/turf/simulated/floor/water{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"La" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating{temperature = 258.15},/area/redgate/hotsprings/outdoors) -"Lm" = (/obj/machinery/light/bigfloorlamp,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Ly" = (/obj/effect/floor_decal/industrial/warning/color/yellow,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"LJ" = (/obj/structure/flora/grass/brown,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"LM" = (/obj/structure/bed/chair/office{dir = 8},/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"LQ" = (/obj/machinery/door/airlock/freezer{name = "Automatic Door"},/obj/structure/atmospheric_retention_field/underdoors,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"Mp" = (/obj/structure/bonfire/permanent,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Mr" = (/obj/structure/table/wooden_reinforced,/obj/item/clothing/suit/storage/snowsuit/medical,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"MX" = (/obj/structure/table/woodentable,/obj/random/snack,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"MY" = (/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/succcave) -"Nf" = (/obj/structure/railing/grey,/obj/effect/floor_decal/shuttles/right,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Nl" = (/obj/fiftyspawner/log,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Nw" = (/obj/structure/table/rack/shelf,/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"ND" = (/obj/structure/barricade/planks,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"NI" = (/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 5},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"NR" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"NY" = (/turf/simulated/wall/wood,/area/redgate/hotsprings/house/dorm1) -"Oc" = (/turf/simulated/wall/wood,/area/redgate/hotsprings/house) -"Oz" = (/obj/structure/railing/grey,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"OT" = (/obj/machinery/light/small/poi{dir = 1},/turf/simulated/floor/tiled,/area/redgate/hotsprings/house) -"Pt" = (/obj/item/clothing/suit/storage/snowsuit,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"PL" = (/turf/simulated/mineral/cave{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"PX" = (/obj/structure/table/rack/shelf,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Qq" = (/obj/machinery/light/floortube,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Qu" = (/obj/structure/table/rack/shelf,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Qz" = (/obj/machinery/light/poi,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"QB" = (/obj/structure/dogbed,/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"Rc" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/redgate/hotsprings/house/hotspringhouse) -"Rp" = (/obj/machinery/light/floortube,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"RF" = (/obj/structure/flora/ausbushes/leafybush,/turf/simulated/floor/outdoors/grass/sif{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15; tree_chance = 0},/area/redgate/hotsprings/outdoors) -"RO" = (/turf/simulated/floor/wood,/area/redgate/hotsprings/house/hotspringhouse) -"RS" = (/obj/structure/prop/warmrocks{dir = 1},/turf/simulated/floor/outdoors/rocks,/area/redgate/hotsprings/outdoors) -"RW" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"RX" = (/obj/machinery/button/remote/airlock{dir = 8; id = "hotspringdorm1"; name = "Door Lock"; pixel_x = -25; specialfunctions = 4},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm1) -"Ta" = (/obj/structure/railing/grey{dir = 4},/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Td" = (/mob/living/simple_mob/vore/greatwolf,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Tn" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"Ty" = (/obj/machinery/computer/security/telescreen{pixel_x = 30},/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"Tz" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/simulated/floor/outdoors/grass/sif{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15; tree_chance = 0},/area/redgate/hotsprings/outdoors) -"TA" = (/obj/random/contraband,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/eastcave) -"TL" = (/obj/machinery/space_heater,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"TM" = (/mob/living/simple_mob/vore/alienanimals/succlet/big,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/succcave) -"Ud" = (/obj/structure/curtain/open/bed,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/house/lovercave) -"Uk" = (/obj/structure/filingcabinet{pixel_x = -9},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"Uu" = (/obj/structure/table/standard,/obj/random/coin,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"UB" = (/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"UH" = (/obj/structure/prop/warmrocks,/turf/simulated/floor/outdoors/rocks{outdoors = -1},/area/redgate/hotsprings/westcave) -"UI" = (/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"UM" = (/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"UW" = (/obj/structure/flora/grass/both,/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Vk" = (/obj/structure/bed/chair/sofa/bench/left{dir = 1},/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Vx" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"VJ" = (/obj/machinery/light/poi{dir = 1},/obj/machinery/telecomms/relay/preset/station{name = "redgate telecomms relay"},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"VU" = (/obj/structure/table/standard,/obj/structure/sink/countertop{dir = 8},/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"VV" = (/obj/structure/simple_door/wood,/obj/structure/atmospheric_retention_field/underdoors,/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"Wc" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/redgate) -"Wo" = (/obj/machinery/button/remote/airlock{dir = 8; id = "hotspringdorm2"; name = "Door Lock"; pixel_x = -25; specialfunctions = 4},/turf/simulated/floor/carpet/sblucarpet,/area/redgate/hotsprings/house/dorm2) -"Wq" = (/obj/structure/fence/corner{dir = 8},/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"WF" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"Xh" = (/obj/structure/table/woodentable,/obj/item/clothing/suit/storage/snowsuit/security,/turf/simulated/floor/wood,/area/redgate/hotsprings/house) -"Xq" = (/obj/vehicle/boat{dir = 4},/turf/simulated/floor/beach/water/ocean{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"XD" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/item/weapon/storage/fancy/egg_box,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"XI" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_coffee,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"XM" = (/turf/simulated/floor/outdoors/grass/sif{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15; tree_chance = 0},/area/redgate/hotsprings/outdoors) -"Ya" = (/turf/simulated/floor/outdoors/snow{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Yf" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/freezer,/area/redgate/hotsprings/house) -"Ym" = (/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lamp/green{pixel_y = 2},/turf/simulated/floor/wood,/area/redgate/hotsprings/house/hotspringhouse) -"Yy" = (/mob/living/simple_mob/animal/passive/fish/icebass,/turf/simulated/floor/beach/water/ocean{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"YB" = (/obj/effect/floor_decal/shuttle/loading,/turf/simulated/floor/tiled/steel{nitrogen = 93.7835; outdoors = 1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/outdoors) -"Zk" = (/obj/structure/table/woodentable,/turf/simulated/floor/outdoors/dirt{nitrogen = 93.7835; outdoors = -1; oxygen = 20.7263; temperature = 243.15},/area/redgate/hotsprings/westcave) -"Zm" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "hotspringdormW1"; name = "Tintable Window"},/turf/simulated/floor/plating{temperature = 258.15},/area/redgate/hotsprings/house/dorm1) -"ZC" = (/obj/machinery/portable_atmospherics/canister/phoron{start_pressure = 0},/turf/simulated/floor/tiled/steel,/area/redgate/hotsprings/outdoors) -"ZF" = (/turf/simulated/wall/log,/area/redgate/hotsprings/house) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"as" = ( +/turf/simulated/floor/water{ + name = "hotspring"; + temperature = 310 + }, +/area/redgate/hotsprings/outdoors) +"aY" = ( +/obj/random/maintenance/morestuff, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"be" = ( +/obj/structure/table/rack/shelf, +/obj/item/device/slow_sizegun, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"bt" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/structure/salvageable/computer_os, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"bF" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/hotsprings/house) +"bL" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"cv" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"cw" = ( +/obj/structure/fence/corner{ + dir = 5 + }, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"cx" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"dc" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/shuttles, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"dq" = ( +/obj/structure/prop/warmrocks{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks{ + outdoors = -1 + }, +/area/redgate/hotsprings/westcave) +"ds" = ( +/obj/structure/fans/tiny, +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house/hotspringhouse) +"dA" = ( +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/head/hood/winter, +/obj/item/clothing/head/hood/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/structure/closet, +/obj/random/firstaid, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"dC" = ( +/obj/item/weapon/pickaxe, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"dQ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"dT" = ( +/turf/simulated/floor/water{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"ea" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"ej" = ( +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"eq" = ( +/obj/structure/prop/warmrocks{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks, +/area/redgate/hotsprings/outdoors) +"ex" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"eD" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"fa" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"fB" = ( +/obj/structure/table/rack/shelf, +/obj/item/key/snowmobile, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"fJ" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"fT" = ( +/obj/machinery/door/airlock{ + id_tag = "hotspringdorm1"; + name = "Bedroom Door" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"gr" = ( +/obj/structure/prop/warmrocks{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks{ + outdoors = -1 + }, +/area/redgate/hotsprings/westcave) +"gL" = ( +/obj/machinery/light/flamp, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"hg" = ( +/obj/vehicle/train/engine/quadbike/snowmobile, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"hr" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"hv" = ( +/obj/structure/closet/crate/wooden, +/obj/item/weapon/reagent_containers/food/drinks/bottle/goldschlager, +/obj/item/weapon/reagent_containers/food/drinks/bottle/jager, +/obj/item/weapon/reagent_containers/food/drinks/bottle/peppermintschnapps, +/obj/item/weapon/reagent_containers/food/drinks/bottle/sake, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/space_mountain_wind, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer/meteor, +/obj/item/weapon/reagent_containers/food/drinks/bottle/redeemersbrew, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"hA" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/toy/rock, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"hO" = ( +/obj/item/toy/bouquet, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"hR" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"hX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/toy/snowglobe/snowvillage, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"ic" = ( +/obj/random/tool/alien, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/succcave) +"ie" = ( +/obj/structure/table/rack, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"iE" = ( +/obj/item/weapon/paper/card/heart, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"iF" = ( +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"iK" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"iV" = ( +/obj/structure/table/rack/shelf, +/obj/random/tool, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"iX" = ( +/turf/simulated/floor/outdoors/ice{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"ji" = ( +/turf/simulated/floor/water{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"jp" = ( +/turf/simulated/wall/durasteel, +/area/redgate/hotsprings/redgate) +"jG" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"jK" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rainbowdouble, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house/hotspringhouse) +"kf" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"ki" = ( +/obj/structure/bed/chair/sofa/purp{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/hotsprings/house) +"ko" = ( +/obj/item/weapon/stool/padded, +/obj/item/weapon/stool/padded{ + pixel_y = 10 + }, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"kt" = ( +/obj/structure/redgate/away, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"kR" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/color/yellow, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"lb" = ( +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"lp" = ( +/obj/machinery/light/poi{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"me" = ( +/turf/simulated/mineral/cave{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"mn" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"mr" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"ms" = ( +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"mv" = ( +/obj/effect/floor_decal/shuttle/handicap, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"mA" = ( +/obj/item/weapon/bedsheet/purpledouble{ + pixel_x = 4 + }, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"mN" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/outdoors/grass/sif{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15; + tree_chance = 0 + }, +/area/redgate/hotsprings/outdoors) +"mR" = ( +/obj/structure/flora/mushroom, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"na" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"nd" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"nV" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"oa" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"ol" = ( +/turf/simulated/wall/durasteel, +/area/redgate/hotsprings/outdoors) +"oC" = ( +/obj/random/medical/pillbottle, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"oQ" = ( +/obj/structure/bonfire, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"oR" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"oY" = ( +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/swimsuit/black, +/obj/item/clothing/under/swimsuit/blue, +/obj/item/clothing/under/swimsuit/cowbikini, +/obj/item/clothing/under/swimsuit/earth, +/obj/item/clothing/under/swimsuit/risque, +/obj/item/clothing/under/swimsuit/stripper/mankini, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/black, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"pE" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"pK" = ( +/turf/simulated/wall/log, +/area/redgate/hotsprings/house/dorm1) +"pR" = ( +/obj/item/weapon/broken_bottle, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"pT" = ( +/obj/item/clothing/suit/storage/hooded/wintercoat/aformal, +/obj/item/clothing/head/hood/winter/aformal, +/obj/item/clothing/shoes/boots/winter, +/obj/structure/closet, +/obj/random/firstaid, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"pU" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/hotsprings/house) +"pV" = ( +/obj/effect/fake_sun/cool, +/turf/simulated/floor/water/deep/ocean{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"qf" = ( +/obj/structure/flora/log2, +/turf/simulated/floor/water{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"qk" = ( +/obj/machinery/button/windowtint{ + id = "hotspringdormW1"; + layer = 3.3; + name = "Window Tint Control"; + pixel_x = 23; + pixel_y = 4; + range = 10 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"qt" = ( +/obj/item/weapon/stool/padded{ + pixel_y = 10 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"qJ" = ( +/obj/structure/salvageable/autolathe, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"qQ" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"rs" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"sd" = ( +/obj/structure/prop/rock/crystal_dust, +/turf/simulated/floor/outdoors/ice{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"sk" = ( +/obj/structure/fuel_port/empty{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"sL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating{ + temperature = 258.15 + }, +/area/redgate/hotsprings/redgate) +"sX" = ( +/obj/random/contraband, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"tb" = ( +/turf/simulated/wall/wood, +/area/redgate/hotsprings/house/dorm2) +"tg" = ( +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"tH" = ( +/obj/random/coin, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/succcave) +"tL" = ( +/obj/structure/closet/walllocker_double{ + dir = 8; + pixel_x = -28 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = -5 + }, +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"tO" = ( +/turf/simulated/floor/weird_things/dark{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"tV" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"tZ" = ( +/turf/simulated/floor/water{ + name = "hotspring"; + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 310 + }, +/area/redgate/hotsprings/house/hotspringhouse) +"um" = ( +/obj/item/weapon/reagent_containers/food/drinks/shaker{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"un" = ( +/obj/random/multiple/ore_pile, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"uu" = ( +/turf/simulated/floor/wmarble, +/area/redgate/hotsprings/house) +"uC" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/color/yellow, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"uD" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"uT" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"uU" = ( +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"uW" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"uZ" = ( +/obj/structure/prop/warmrocks{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks, +/area/redgate/hotsprings/outdoors) +"vb" = ( +/mob/living/simple_mob/shadekin/yellow/retaliate/dark, +/turf/simulated/floor/weird_things/dark{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"vi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating{ + temperature = 258.15 + }, +/area/redgate/hotsprings/house) +"vm" = ( +/obj/structure/prop/rock/crystal, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"vo" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"vA" = ( +/obj/item/weapon/reagent_containers/food/drinks/cans/beercan{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cans/beercan, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"vE" = ( +/obj/structure/flora/sif/frostbelle, +/turf/simulated/floor/outdoors/grass/sif{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15; + tree_chance = 0 + }, +/area/redgate/hotsprings/outdoors) +"vO" = ( +/turf/simulated/floor/water{ + name = "hotspring"; + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 310 + }, +/area/redgate/hotsprings/westcave) +"vP" = ( +/obj/machinery/shower{ + pixel_y = 19 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/borderfloorwhite/shifted{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"vZ" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 1 + }, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"wL" = ( +/obj/structure/bed/double, +/obj/item/weapon/bedsheet/hopdouble, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"wX" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/succcave) +"xd" = ( +/turf/simulated/wall/log, +/area/redgate/hotsprings/house/dorm2) +"xq" = ( +/obj/structure/bed/chair/sofa/left/purp, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/hotsprings/house) +"xs" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"xY" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"yp" = ( +/obj/structure/snowman, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"yt" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/champagne, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"yu" = ( +/turf/simulated/floor/outdoors/ice{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"yG" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"yM" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candy/cb06, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"yU" = ( +/obj/structure/bonfire, +/turf/simulated/floor/wmarble, +/area/redgate/hotsprings/house) +"yW" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"yZ" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"zu" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/floor/outdoors/ice{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"zv" = ( +/turf/simulated/floor/water/deep/ocean{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"zx" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"zB" = ( +/obj/structure/bed/double, +/obj/item/weapon/bedsheet/hopdouble, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"zI" = ( +/obj/item/weapon/storage/toolbox/lunchbox/filled, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"zM" = ( +/obj/structure/fence/door, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"zP" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"zR" = ( +/obj/item/trash/coffee, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"zU" = ( +/obj/random/plushie, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Aj" = ( +/obj/item/capture_crystal/random, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"At" = ( +/obj/structure/bonfire, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"AM" = ( +/obj/structure/bed/chair/sofa/corner/purp{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/hotsprings/house) +"AV" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"AY" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"Be" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"BM" = ( +/obj/structure/table/glass, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"Ci" = ( +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"Cu" = ( +/obj/structure/flora/pottedplant/overgrown, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"CL" = ( +/obj/item/weapon/tool/screwdriver/brass, +/obj/item/weapon/tool/wrench/brass{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"CM" = ( +/obj/structure/prop/warmrocks{ + dir = 1 + }, +/turf/simulated/floor/outdoors/rocks{ + outdoors = -1 + }, +/area/redgate/hotsprings/westcave) +"CO" = ( +/obj/random/mouseray, +/obj/random/cash/huge, +/obj/item/clothing/ears/earring/dangle/diamond, +/obj/item/clothing/gloves/ring/material/diamond, +/obj/structure/closet/grave/dirthole, +/obj/random/coin, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"CZ" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Df" = ( +/obj/item/trash/beef, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Dq" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"Dt" = ( +/obj/structure/simple_door/wood, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"Dv" = ( +/obj/structure/prop/warmrocks, +/turf/simulated/floor/outdoors/rocks, +/area/redgate/hotsprings/outdoors) +"DA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/storage/box/donkpockets/berry, +/obj/item/weapon/storage/box/donkpockets/berry, +/obj/item/weapon/storage/box/donkpockets/berry, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"DD" = ( +/turf/simulated/floor/water/deep{ + name = "deep hotspring"; + temperature = 310 + }, +/area/redgate/hotsprings/outdoors) +"DN" = ( +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/hotsprings/house) +"DO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hotspringdormW2"; + name = "Tintable Window" + }, +/turf/simulated/floor/plating{ + temperature = 258.15 + }, +/area/redgate/hotsprings/house/dorm2) +"DS" = ( +/obj/machinery/button/windowtint{ + id = "hotspringdormW2"; + layer = 3.3; + name = "Window Tint Control"; + pixel_x = 23; + pixel_y = 4; + range = 10 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 2 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"Ea" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"Eg" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/redgate/hotsprings/house) +"Et" = ( +/obj/structure/prop/warmrocks{ + invisibility = 101 + }, +/turf/simulated/floor/water{ + name = "hotspring"; + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 310 + }, +/area/redgate/hotsprings/westcave) +"EJ" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"EN" = ( +/obj/random/coin, +/obj/item/weapon/storage/mre, +/obj/item/trash/beans{ + pixel_x = -9 + }, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"EO" = ( +/obj/machinery/light/floortube{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"EQ" = ( +/obj/machinery/light/flicker, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"ES" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"Fn" = ( +/obj/random/coin, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"FR" = ( +/turf/simulated/floor/wood{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 310 + }, +/area/redgate/hotsprings/house/hotspringhouse) +"Gb" = ( +/obj/item/weapon/bluespace_crystal{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/weapon/bluespace_crystal{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/weapon/bluespace_crystal, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"Ge" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"Gs" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/gaycarpet, +/area/redgate/hotsprings/house) +"GP" = ( +/turf/simulated/wall/log, +/area/redgate/hotsprings/house/hotspringhouse) +"Hm" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_alc, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Hn" = ( +/obj/structure/prop/rock/crystal, +/turf/simulated/floor/outdoors/ice{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"Ht" = ( +/turf/simulated/wall/snowbrick, +/area/redgate/hotsprings/house) +"Hw" = ( +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"HD" = ( +/obj/random/tool, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"HI" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Ik" = ( +/obj/structure/railing/grey, +/obj/structure/prop/poicanister, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"In" = ( +/mob/living/simple_mob/vore/alienanimals/succlet, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/succcave) +"Ix" = ( +/obj/structure/sign/warning/cold, +/turf/simulated/wall/durasteel, +/area/redgate/hotsprings/redgate) +"Iy" = ( +/turf/simulated/floor/outdoors/rocks{ + outdoors = -1 + }, +/area/redgate/hotsprings/westcave) +"IE" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"IN" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"IZ" = ( +/obj/machinery/door/airlock{ + id_tag = "hotspringdorm2"; + name = "Bedroom Door" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"Jq" = ( +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"Ju" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"Kb" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/gaiter/snow, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Kt" = ( +/obj/structure/table/woodentable, +/obj/item/trash/chips/snv, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"KB" = ( +/mob/living/simple_mob/vore/pakkun, +/turf/simulated/floor/water{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"La" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating{ + temperature = 258.15 + }, +/area/redgate/hotsprings/outdoors) +"Lm" = ( +/obj/machinery/light/bigfloorlamp, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Ly" = ( +/obj/effect/floor_decal/industrial/warning/color/yellow, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"LJ" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"LM" = ( +/obj/structure/bed/chair/office{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"LQ" = ( +/obj/machinery/door/airlock/freezer{ + name = "Automatic Door" + }, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"Mp" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Mr" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/clothing/suit/storage/snowsuit/medical, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"MX" = ( +/obj/structure/table/woodentable, +/obj/random/snack, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"MY" = ( +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/succcave) +"Nf" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/shuttles/right, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Nl" = ( +/obj/fiftyspawner/log, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Nw" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"ND" = ( +/obj/structure/barricade/planks, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"NI" = ( +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"NR" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"NY" = ( +/turf/simulated/wall/wood, +/area/redgate/hotsprings/house/dorm1) +"Oc" = ( +/turf/simulated/wall/wood, +/area/redgate/hotsprings/house) +"Oz" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"OT" = ( +/obj/machinery/light/small/poi{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/redgate/hotsprings/house) +"Pt" = ( +/obj/item/clothing/suit/storage/snowsuit, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"PL" = ( +/turf/simulated/mineral/cave{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"PX" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/reagent_containers/food/drinks/bottle/gin, +/obj/item/weapon/reagent_containers/food/drinks/bottle/gin, +/obj/item/weapon/reagent_containers/food/drinks/bottle/gin, +/obj/item/weapon/reagent_containers/food/drinks/bottle/gin, +/obj/item/weapon/reagent_containers/food/drinks/bottle/gin, +/obj/item/weapon/reagent_containers/food/drinks/bottle/gin, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Qq" = ( +/obj/machinery/light/floortube, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Qu" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/ale, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Qz" = ( +/obj/machinery/light/poi, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"QB" = ( +/obj/structure/dogbed, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"Rc" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house/hotspringhouse) +"Rp" = ( +/obj/machinery/light/floortube, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"RF" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/outdoors/grass/sif{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15; + tree_chance = 0 + }, +/area/redgate/hotsprings/outdoors) +"RO" = ( +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house/hotspringhouse) +"RS" = ( +/obj/structure/prop/warmrocks{ + dir = 1 + }, +/turf/simulated/floor/outdoors/rocks, +/area/redgate/hotsprings/outdoors) +"RW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"RX" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "hotspringdorm1"; + name = "Door Lock"; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm1) +"Ta" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Td" = ( +/mob/living/simple_mob/vore/greatwolf, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Tn" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"Ty" = ( +/obj/machinery/computer/security/telescreen{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"Tz" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/outdoors/grass/sif{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15; + tree_chance = 0 + }, +/area/redgate/hotsprings/outdoors) +"TA" = ( +/obj/random/contraband, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/eastcave) +"TL" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"TM" = ( +/mob/living/simple_mob/vore/alienanimals/succlet/big, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/succcave) +"Ud" = ( +/obj/structure/curtain/open/bed, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/house/lovercave) +"Uk" = ( +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"Uu" = ( +/obj/structure/table/standard, +/obj/random/coin, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"UB" = ( +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"UH" = ( +/obj/structure/prop/warmrocks, +/turf/simulated/floor/outdoors/rocks{ + outdoors = -1 + }, +/area/redgate/hotsprings/westcave) +"UI" = ( +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"UM" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"UW" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Vk" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 1 + }, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Vx" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"VJ" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/obj/machinery/telecomms/relay/preset/station{ + name = "redgate telecomms relay" + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"VU" = ( +/obj/structure/table/standard, +/obj/structure/sink/countertop{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"VV" = ( +/obj/structure/simple_door/wood, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"Wc" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/redgate) +"Wo" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "hotspringdorm2"; + name = "Door Lock"; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/redgate/hotsprings/house/dorm2) +"Wq" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"WF" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"Xh" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/suit/storage/snowsuit/security, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house) +"Xq" = ( +/obj/vehicle/boat{ + dir = 4 + }, +/turf/simulated/floor/water/deep/ocean{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"XD" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/item/weapon/storage/fancy/egg_box, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"XI" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_coffee, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"XM" = ( +/turf/simulated/floor/outdoors/grass/sif{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15; + tree_chance = 0 + }, +/area/redgate/hotsprings/outdoors) +"Ya" = ( +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Yf" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/freezer, +/area/redgate/hotsprings/house) +"Ym" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 2 + }, +/turf/simulated/floor/wood, +/area/redgate/hotsprings/house/hotspringhouse) +"Yy" = ( +/mob/living/simple_mob/animal/passive/fish/icebass, +/turf/simulated/floor/water/deep/ocean{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"YB" = ( +/obj/effect/floor_decal/shuttle/loading, +/turf/simulated/floor/tiled/steel{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/outdoors) +"Zk" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/outdoors/dirt{ + nitrogen = 93.7835; + outdoors = -1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/redgate/hotsprings/westcave) +"Zm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hotspringdormW1"; + name = "Tintable Window" + }, +/turf/simulated/floor/plating{ + temperature = 258.15 + }, +/area/redgate/hotsprings/house/dorm1) +"ZC" = ( +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 0 + }, +/turf/simulated/floor/tiled/steel, +/area/redgate/hotsprings/outdoors) +"ZF" = ( +/turf/simulated/wall/log, +/area/redgate/hotsprings/house) (1,1,1) = {" -eaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgtgeaeaeaeaeaeaeatgtgtgtgtgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgeaeatgtgtgtgeaeatgtgeaeakftgeaeaeatgtgeaeaeatgtgtgtgeaeaeaeaPttgCOsXeaeaeaeaeaeaeaeaeaeaeameeamemememeeaeameeaeaeaqQPLPLPLqQPLqQPLPLqQqQPLPLPLPLPLPLJqJqJqPLPLqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgtgeaeaeaeaeatgtgtgtgtgtgtgtgeaeaeaeaeatgeaeatgtgeaeatgeaeaeakftgtgtgtgeaeaeaeaeaeaeamememeeamemememememememememememePLPLPLPLPLPLPLPLPLPLPLPLPLPLPLJqJqJqtOFnJqqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQiXiXiXjijijijiqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgeaeaeaNltgtgtgeaeaeaeaeaeaeaeaeatgtgtgtgeaeaeatgtgtgtgtgtgtgtgeaeaeaeaeaeaeamememememememememememememememememePLPLqQPLPLPLPLPLPLPLPLPLqQPLPLFntOtOtOJqJqqQqQqQqQqQJqJqJqJqJqJqJqJqqQqQqQiXiXiXiXHniXiXiXjijijijijiqQqQqQqQqQqQqQ -eaeaeaeatgtgtgtgeaeaeaeaeaeaeaeamntgtgtgtgtgtgeaeatgtgtgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeamememememememememememememememememePLPLPLqQPLPLPLPLPLqQPLPLPLPLPLJqtOvbtOJqJqqQqQqQqQJqJqqQqQqQqQJqJqiXiXiXiXiXiXiXiXiXiXiXiXiXjijijijijijiqQqQqQqQqQ -eaeaeaoYtgeaeatgtgeaeaeaeatgtgtgtgtgtgtgtgtgeaeaeaeaeatgtgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeameeamemememememememememememememePLPLPLPLPLPLqQPLPLPLPLPLPLPLPLJqJqtOJqJqqQqQqQqQJqJqqQqQqQqQqQJqJqiXiXiXiXiXHniXiXiXiXiXiXiXiXiXjijijijijiqQqQqQqQ -eaeaeatgtgtgeaeatgtgeaeatgtgtgtgtgtgtgtgtgeaeaeaeaeaeaeatgtgtgeaeaeaeaeaeaoQoQeaeaeaeaeaeaeatgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeamememememememememememememememePLPLPLPLPLPLPLPLPLPLPLPLPLPLPLJqJqJqJqFnqQqQqQvmJqJqvmqQqQqQqQJqJqiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXjijijiqQqQqQqQ -eaeaCMgrUHdqeaeaeatgtgtgtgtgtgtgeaeaeatgtgNleaeaeaeaeaeaeatgtgtgeaeaNltgtgtgtgXIcvHmeaeaeatgtgeaeaeaeaeaeaeaEtEtEtEtEtEteaeaeaeaeaeaeamememememeeamemememememememememePLPLPLPLPLqQPLPLPLPLPLPLqQqQqQqQqQJqJqJqqQqQqQJqJqJqJqqQqQqQqQJqJqJqJqiXiXiXsdiXiXiXiXHniXiXiXiXiXiXiXjijiqQqQqQqQ -eaeadqvOvOgreaeaeaeaeatgtgtgeaeaeaeaeaeatgtgsXpReaeaeaeaeaeatgtgeatgtgtgMXtgzRZktgtgpReaeatgtgeaeaeaeaeaeaEtvOvOvOvOvOvOEtEteaeaeaeaeamemememememememememememememememePLPLqQPLPLPLPLPLPLqQqQqQqQqQqQqQqQJqqQqQqQqQqQiXGbJqJqJqqQqQqQJqJqJqJqiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXqQqQqQqQ -eaeaIyvOvOdqeaeaeaeaeatgtgtgeaeaeaeaeaNwtgtgtgtgmneaeaeaeaeatgtgtgtgtgtgKttgtgZktgtgtgeaeaeatgtgeaeaeaeaCMvOvOvOvOvOvOvOvOvOEteaeaeaeamemememememememememememememememeqQPLPLPLPLPLPLqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQiXiXiXJqvmqQqQqQJqJqDqJqJqiXiXiXiXiXiXiXiXiXiXiXiXHniXiXiXqQqQqQqQqQ -eaeaIyvOvOIyeaeaeaeatgtgtgtgeaeaeaeaeaPXpRtgtghveaeaeaeatgtgtgtgtgtgtgtgtgtgtgyMZkKbtgeaeaeaeatgtgtgeaeadqgrCMvOvOvOvOvOvOvOvOEteaeaeamemememememememememememememeeamePLPLPLPLPLqQqQqQqQqQqQqQqQJqundCqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQJqJqJqJqJqiXiXiXiXiXiXiXiXiXiXiXiXiXiXiXqQqQqQqQqQ -eaeaeaIyIyeaeaeaeaeatgtgkftgeaeaeaeaeaQutgmnyteaeaeaeatgtgeaeatgtgtgtgtgtgtgtgtgtgtgtgeaeaeaeaeaeatgtgtgtgtgUHCMgrUHgrUHvOvOvOvOdqeamememememememememememememememememePLPLPLPLqQqQqQqQqQqQqQJqJqJqJqunqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQJqJqJqJqJqiXiXiXiXiXiXiXiXiXiXzuiXiXiXqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeatgtgtgtgNleaeaeaeaeaeaeaeaeaeaeaeaTLeaeaeaNltgtgeaeakokokoqtDfumeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgtgdqgrCMUHCMIyeameeamememememememeeamememememememePLPLqQqQqQqQqQqQqQqQqQJqqQJqJqAjqQqQqQqQqQqQqQqQqQFnqQqQqQqQqQqQqQqQJqJqJqJqiXiXiXiXiXiXiXiXiXiXiXiXiXqQqQqQqQqQqQ -eaeaeaeaeaeaeaeatgeatgtgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgtgtgtgtgtgtgtgmememeeamemememememememememeeamemeqQqQqQqQqQqQqQqQqQqQJqJqqQqQqQqQqQqQqQqQqQqQqQqQqQJqqQqQqQqQqQqQqQqQqQJqJqJqJqiXiXiXiXiXHniXiXiXiXiXiXqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeatgtgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgtgtgtgtgtgtgeaeaeamemememememememeeamemememeeaeaqQqQqQqQqQqQqQqQqQqQYaqQqQqQqQqQqQqQqQqQqQqQqQqQqQJqJqJqqQqQqQqQqQqQqQJqJqJqJqJqiXiXiXiXiXiXiXiXiXiXiXqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgtgtgMptgtgtgeaeaeamemememememememememememeeaeaeaqQqQqQqQYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQqQqQqQJqJqTAJqqQqQqQqQqQJqJqJqJqJqiXiXiXiXiXiXiXiXiXiXJqJqJqTAqQqQ -eaeaeaeaeaeaeaeamntgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgtgtgtgtgtgeaeaeaeamemememememememememeeaeaeaeaeaqQqQYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQJqJqJqJqJqqQqQqQqQqQJqJqJqJqJqJqJqiXiXiXiXiXiXiXqQqQqQNDqQqQ -eaeaeaeatgeaeaeatgtgtgeaeaeaeatgzUNleaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgtgtgtgtgtgtgeaeaeaeaeamememememememeeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQJqJqJqJqqQqQqQqQqQJqJqJqJqJqJqJqiXiXiXiXiXiXqQqQqQJqJqqQ -eaeaeaeaeaeaeaeaNltgtgtgeaeatgtgeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeatgtgtgtgeatgtgtgtgeaeaeaeaeamemeeameeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQJqJqJqJqJqqQqQqQqQqQqQqQJqJqJqJqJqiXiXiXiXiXqQqQqQqQJqqQ -eaeaeaeaeaeaeaeaeatgtgtgtgeatgtgeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeatgtgtgeaeaeaeaeaeaeaeaeaeaeamememeeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYauWYaYaYapEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQJqDqJqJqqQqQqQqQqQqQqQJqJqJqJqiXiXiXiXiXqQqQqQqQJqqQ -eaeaeaeaeaeaeaeaeaeatgtgtgtgtgeaeaeaeaeaYaYaYaHIYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeamemeeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQJqJqJqJqJqqQqQqQqQqQJqJqJqiXiXiXiXqQqQqQqQENJqqQ -eaeaeaeaeaeaeaeaeaeaeatgtgtgtgeaeaeaeaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQJqJqqQJqJqJqqQqQqQqQJqJqiXiXHniXqQqQqQCLJqJqqQ -eaeaeaeaeaeaeaeaeaeaeaeaeatgtgeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaeaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEpEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaqQqQqQqQqQJqJqqQqQJqJqqQqQqQqQJqJqiXHniXiXqQqQqQJqhgJqqQ -eaeaeaeaeaeaeaeaeaeaeaeaeatgtgeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEpEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaYaYaqQqQqQJqJqqQqQqQJqJqqQqQqQJqiXiXiXiXqQqQqQqQEaoCBeqQ -eaeaeaeaeaeaeaeaeaeaeaeaeatgtgeaYaYaYaYaYaYaYaHIYaYaYaHIYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEpEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaYaYaYaqQqQJqJqqQqQqQqQJqJqJqJqJqiXiXiXqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaeaeaeatgYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaXMYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQJqJqqQqQqQqQJqJqJqJqJqiXHnqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQJqqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQJqJqqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMYaYaXMXMYaXMXMYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQJqJqJqqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMYaXMXMXMXMTzXMXMXMXMYaXMYaYaXMYaYaYaYaYaHIYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQaYJqJqJqqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMYaXMXMvEXMmNTzTzTzXMXMTzXMXMYaYaXMXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQJqJqJqJqqQqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaXMXMXMXMmNDvequZRSDvRSTzXMvEXMXMXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEpEpEpEYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQJqJqJqqQqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaXMTzTzuZRSasasasasasasuZmNTzXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYapEpEpEpEYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQJqJqJqqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaeaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaXMTzTzDvasasasasasasasasDvXMTzTzYaXMXMHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQYaqQqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaYaXMXMTzRSasasDDDDDDasasasRSXMTzXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQqQqQqQ -eaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMXMuZasasasDDDDasasasuZXMXMXMYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQqQqQ -eaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaXMXMeqasasasasasasaseqXMXMRFYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQqQ -eaeaYaYaYaYazxYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMequZRSasasasuZRSDvXMXMRFUWXMXMYaYaYaYaHIYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQqQ -eaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMXMmNXMuZDvRSeqTzTzXMXMXMeDUWYaXMYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQ -eaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaXMXMXMmNXMXMXMXMXMXMXMXMXMYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQ -eaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaYaYaXMXMXMXMXMXMYaYaYaYaXMYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQ -eaeaeaeaeaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaXMXMXMXMYaYaXMXMYaYaYaXMXMYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQ -eaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaXMYaYaYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYatgtgeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeatgtgtgeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeatgtgeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeatgtgtgtgeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaeaeaeaeaeaeatgtgtgtgeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYauWYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaHIYaYaYaYaHIYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeatgtgtgtgeaeaeaeaeaGPGPGPGPGPGPYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeatgtgtgeaeaeaeaeaeaGPtZtZFRjKGPYaYaYaYaYaYaYaYaYaYaYaYauWYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeatgtgeaeaeaeaeaeaeaGPtZtZROYmGPYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeatgtgtgUHtggLeaeaeaGPRORORORcGPYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeatgtggrvOCMtgtgeaeaGPGPGPdsGPGPYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaololLaLaLaololYaYaYaqQqQqQqQ -eaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeatgdqvOvOvOgrtgeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaoliFiFiFiFqJolYaYaYaqQqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeagLtgCMvOvOdqtgeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaoliFhRfBAViFololYaYaYaqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeatgtggrUHgLeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaoliFEOiFEOiFskolYaYaYaqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaJuiFiFiFiFiFZColYaYaYaqQqQqQ -eaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaoliFRpiFRpiFnVolYaYaYaYaqQqQ -exexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaoliFAVbeiViFololYaYaYaYaqQqQ -exexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaoliFiFiFiFHDolYaYaYaYaYaqQqQ -exexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeaeaeaeaeaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaololLaLaLaololYaYaYaYaYaqQqQ -exexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQ -exexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaqQqQ -exexexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwX -exexexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwX -exexexexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwX -exexexexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYazxYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYauWYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -exexexexexexuUuUexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -exexexexvAzIuUiEexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexmAuUhOuUexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwXwX -exexexexuUuUAtuUexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwXwX -exexexexexuUuUuUuUexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwXwXwX -exexexexexuUuUuUuUexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwXwXwX -exexexexexexexUdexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYauWYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXtHMYwXwX -exexexexexexexuUuUuUexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXMYInicMYwX -exexexexexexexexexuUuUuUYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXMYMYMYMYwX -exexexexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXInMYMYInwX -exexexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXMYTMMYMYwX -exexexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXMYMYMYMYwX -exexexexexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXMYMYMYInwX -exexexexexexexexexYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaoRoRoRoRoRoRoRoRoRoRoRTaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXMYMYwXwX -exexexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXMYwXwX -exexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIUIUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXMYwXwX -exexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIUIUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXMYMYwXwX -exexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIUIUIYaUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaMYMYMYwXwXwX -exexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIUIYaYaUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaNRUIUIUIUIUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDeDYaYaeDYaeDYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaNRUIUIUIUIUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDUWYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaNRUIUIUIUIUIUIUIUIUIUIUIUIUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDYaUWUWYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYauCLyLyLyLyLyLyLyLyLyLyLyLyLyLykRYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexexexYaYaHIYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaLJHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaNRUIYBmvUIUIUIYBYBUIUIUIYBYBUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaNRUIUIQqUIUIUIUIUIUIUIUIQqUIUIoaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexexYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYafJOzOzOzOzOzdcNfUIdcNfOzOzOzIkyGYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exexexexYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -exYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -YaYaYaYaYaYaYaYaYaeDHIYaHIYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -YaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDHIYawXwXwXwXwXwX -YaYaYaYaYaYaYaYaeDYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwXwX -YaYaYaYaHIYaYaHIYaYaHIYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDYaYawXwXwXwXwX -YaHIYaYaYaHIYaYaeDYaeDeDYaYaHIYaHIYaeDYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaWqCZzMxsxsxsxsxscwYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -YaYaYaYaYaYaeDYaYaYaYaYaeDYaeDYaYaYaeDHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYahrYaYaYaYaypYaYahrYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -YaYaYaHIYaeDYaYaYaYaLJYaYaYaYaYaHIeDeDYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYahrYaYaYaYaYaYaYahrYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpjpIxLQIxjpjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -HIYaYaYaYaYaYaYaHIYaYaHIYaYaYaeDYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYahrYaYaYaVkvZLmHtHtHtYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpjpjpjpdAnaejnadAjpjpjpjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -YaYaYaYaYaYaYaYaYaeDYaYaYaUWHIYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFZFZFDtZFZFZFZFHtyUHtZFpKpKZmZmpKYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpBMxYjppTejejejdAjpejuTjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -YaYaYaYaeDYaHITdmRYaYaHIYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFXDHwHwHwYfOcyWuuEguuyWNYESrsqkpKYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYasLfaejjpdAejejejdAjpejUusLYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -YaYaHIYaYaYaYaUWYaYaYaYaYaYaYazxHIUWUWYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaviiKHwHwHwVUOcUBpUGspUUBNYRXrswLpKYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYasLejyZjpjpjpbLjpjpjpjGNIsLYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYawXwXwXwXwX -YaYaYaYaYaUWYaeDYaHIUWTdHIYaYaUWYaLJYaYaYaUWYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaviWFHwHwHwRWOcUBpUGspUUBfTrsrsrspKYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpUkejjpbtejejejVJjpejDAjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -YaYaYaYaHIYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFRWHwINHwHwTnUBpUGspUUBNYdQMrzPpKYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYajpjpbLjpejejejejejjpbLjpjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwXwX -YaHIYaYaYaYaYaYaYaUWYaYaYaHIYaUWYaYaYaHIYaYaYaYaYaYaHIYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaZFOcOcOcOcOcOclpDNDNDNCiNYNYNYNYpKYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpndejbLejejktejejbLejndjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDYaYaYaYaeDYaYaYaYaYaYaYawXwXwXwX -YaYaYaUWYaYaLJHIYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFieOTvPOchXLMUBDNAMxqUBtbGeUMDSxdYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYasLejyZjpEQejejejQzjpjGejsLYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYawXwXwXwX -YaYaUWLJHIUWYaLJLJYaHIYaHIYaYamRYaHIYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFtLlblbOcXhUBUBDNkiDNTytbWoUMzBxdYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYasLejejjpjpsLsLsLjpjpejejsLYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYavoeDYaYaYaYaYaYaYaYaYawXwXwX -YaLJYaYaYaYaLJYaLJYaLJYaYaYaHIYaYaLJYaYaHIYaLJLJLJHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFcxlblbtVUBUBUBDNbFDNUBIZUMUMUMxdYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYasLejejejnaejWcejnaejejejsLYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDYaYaYawXwXwX -YaYaLJLJYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaLJLJYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFlblbuDOcCuQBUBEJUBUBCutbIEVxhAxdYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpejejejejAYAYmrejejejejjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaeDYaYaYaYaYaYaYavoYaYaYaYawXwX -YaLJYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaZFZFviZFZFZFZFVVZFviviZFxdxdDODOxdYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYajpjpjpejejejejejejejjpjpjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUWYaHIYaYaYaYaYaYaYawXwX -YaYaYaHIYaYaHIHILJYaYaHIYaYaYaYaTdLJHIYaLJYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpjpjpejejejjpjpjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaeDYaYaYaYaUWYaYaYawXwX -YaYaYaYaLJYaYaYaYaYaYaYaHIYaHIYaYaLJYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYajpIxLQIxjpYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaUWYaYaYaYaYaYaYaYaYaYaYaYaYaYawX -YaYaYaYaYaYaHIUWYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaLJYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaHIYaUWYaYaYaYaYawX -YaYaYaHIYaYaYaYaYaYaYaYaLJYaHIYaYaYaYaYaYaHIYaYaHIYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaXMYaXMXMYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaYaYawX -YaHIYaYaYaYaYaYaYaYaYaYaYaYaYaUWYaHIYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaXMXMYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaHIYaYaYawX -YaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaHIYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaHIYaYaYavoYaYaLJYawX -YaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaLJYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYayuyuyuYaYaYaYaYayuYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYayuyuyuyuYaYaYaYaYaYaYaYaYaXMYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaHIYaYaYaYaYaYaYaYaLJYaYaYawX -YaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYayuyuyuyuyuyuyuYaYaYayuyuYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYayuyuyuyuyuyuyuYaYaYaYaYaYaYaYaYayuyuyuyuyuyuYaYaYaYaYaYaYaYayuyuyuyuYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYaYayuyu -YaYaYaYaYaYaYayuyuyuyuyuyuyuyuyuyuyuYaYaYaYaYaYaYaYaYaYaYaYaYayuyuyuyuyuyuyuyuyuYaYaYaYaYaYaYaYaYaYayuyuyuyuyuyuyuyuyuYayuyuyuyuYaYaYaYaYayuyuYayuyuyuyuyuyuyuyuyuYaYaYayuyuyuyuyuyuyuyuyuyuyuYaYaYaYayuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuYaYaYaYaYaYaYaYaYaYaYaYaYaYayuyuyuyuyuyu -YaYaYaYaYayuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuYaYaYaYaYaYayuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuYayuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuYaYayuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuYaYaYaYaYaYayuyuyuyuyuyuyuyuyuyuyu -yuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyu -yuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyu -yuyuyuyuyuyuyuyuyuyuyuyudTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTyuyudTdTdTdTdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdT -yuyuyuyuyuyuyuyuyudTdTdTdTdTdTdTdTdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTyuyudTdTdTdTdTdTdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTyuyuyuyudTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTdT -yuyuyuyuyuyuyuyuyudTdTdTdTdTdTdTdTdTdTdTqfdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTyuyuyuyuyuyuyuyuyuyuyudTdTdTdTdTdTdTdTdTdTdTdTKBdTdTdTyuyuyuyuyudTyuyuyuyuyuyuyuyudTdTdTdTyuyuyudTdTdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTdTdTdT -yuyuyuyuyuyuyuyudTdTdTdTdTdTdTdTdTdTdTdTdTdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTdTyuyuyuyuyuyudTyuyudTdTdTdTdTyuyuyuyuyuyudTdTdTdTdTdTdTyuyuyudTdTdTyuyuyuyuyuyudTdTdTdTdTdTyudTdTdTdTdTdTdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTdTdTdTdTKBdTdT -yuyuyuyuyudTdTdTdTdTdTdTdTdTdTdTdTKBdTdTdTdTdTdTdTyuyuyuyuyuyuyuyuyudTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyuyudTdTzvdTdTdTdTyuyuyuyudTdTdTdTdTdTyuyuyuyuyuyuyuyudTdTdTdTdTdTdTyuyudTdTdTdTdTyuyuyuyuyudTdTdTdTdTdTyudTdTdTdTdTdTdTdTdTyuyuyuyuyuyuyuyuyudTyuyudTdTdTdTdTdTdTdTdTdTdTzv -yuyuyuyudTdTdTdTdTzvzvzvzvzvzvzvzvdTdTdTdTdTdTdTdTdTyuyuyuyuyuyudTdTqfdTdTdTyuyuyuyuyuyuyuyuyuyuyuyuyudTdTdTdTdTdTzvzvzvdTKBdTdTyuyuyudTdTdTdTdTyuyuyuyuyuyuyuyuyuyudTdTdTdTdTdTdTdTdTdTdTdTdTdTyuyuyuyudTdTdTdTdTKBdTdTdTdTdTdTdTdTdTdTdTyuyuyuyuyuyuyudTdTyuyudTdTdTdTdTdTdTzvzvzvzvzv -yuyuyudTdTdTzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvdTdTdTdTdTdTdTdTdTdTdTdTdTzvzvdTdTyuyuyuyuyuyuyuyuyuyuyudTdTzvzvzvzvzvzvzvzvzvzvdTdTyuyuyudTdTzvdTdTyuyuyuyuyuyuyuyuyuyudTdTdTdTdTdTdTdTdTdTzvzvdTdTdTdTyuyudTdTdTzvzvzvdTdTdTzvzvzvzvzvzvdTdTyuyuyuyuyuyuyudTdTdTdTdTdTdTzvzvzvzvzvzvzvzvzv -yuyuyuzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvdTdTdTdTdTdTzvzvzvzvzvzvzvdTdTyuyuyuyuyuyuyuyuyudTdTzvzvzvzvzvzvzvzvzvzvzvzvdTdTyuyudTzvzvdTdTdTyuyuyuyuyuyuyuyuyudTdTdTzvzvzvzvzvzvzvzvzvzvzvzvdTdTdTdTzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvdTdTyuyuyuyudTdTdTzvzvzvzvzvzvzvzvzvzvzvzvzvzvzv -yuyuzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvyuzvzvyuyuyuyudTzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvdTdTyuyuyuyuyuyuyuyudTdTdTzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvyuyuyudTdTzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzv -yuyuzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvyuyuzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvzvdTdTyuyuyuyuyuyudTdTdTzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvyuyuzvzvzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzv -zvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvXqzvzvzvzvyuzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvyuyuyuyudTzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvyuyuzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvzvzv -zvpVzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvyuyuyuyuzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzv -zvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvYyzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzvzv +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +"} +(2,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +LJ +Ya +LJ +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +pV +zv +"} +(3,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +CM +dq +Iy +Iy +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +UW +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +zv +"} +(4,1,1) = {" +ea +ea +ea +ea +ea +ea +oY +tg +gr +vO +vO +vO +Iy +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UW +LJ +Ya +LJ +Ya +HI +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +"} +(5,1,1) = {" +ea +ea +ea +ea +ea +tg +tg +tg +UH +vO +vO +vO +Iy +ea +ea +ea +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +vA +mA +uU +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +HI +Ya +Ya +HI +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(6,1,1) = {" +ea +ea +ea +ea +ea +tg +ea +tg +dq +gr +dq +Iy +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +zI +uU +uU +uU +uU +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +eD +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +UW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(7,1,1) = {" +ea +ea +ea +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +zx +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +ex +ex +ex +ex +ex +ex +ex +ex +ex +uU +uU +hO +At +uU +uU +ex +ex +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +eD +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +LJ +Ya +LJ +Ya +Ya +HI +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(8,1,1) = {" +ea +ea +ea +ea +ea +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ex +ex +ex +ex +ex +ex +ex +ex +uU +iE +uU +uU +uU +uU +Ud +uU +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Td +UW +eD +Ya +Ya +HI +LJ +Ya +Ya +Ya +HI +Ya +UW +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(9,1,1) = {" +ea +ea +ea +ea +ea +ea +tg +tg +ea +ea +ea +ea +ea +ea +tg +ea +ea +mn +tg +Nl +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +uU +uU +ex +uU +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +eD +Ya +Ya +HI +Ya +mR +Ya +Ya +Ya +Ya +Ya +LJ +LJ +Ya +Ya +LJ +Ya +Ya +Ya +Ya +HI +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +Yy +zv +zv +"} +(10,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +tg +tg +ea +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +uU +uU +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +HI +Ya +UW +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(11,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +tg +ea +ea +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +uU +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +HI +Ya +Ya +HI +eD +Ya +LJ +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +HI +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(12,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +tg +tg +ea +ea +ea +tg +tg +tg +tg +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ex +ex +ex +ex +ex +ex +ex +ex +ex +ex +uU +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +HI +Ya +HI +Ya +Td +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +LJ +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(13,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +kf +tg +tg +ea +ea +ea +ea +ea +tg +tg +tg +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ex +ex +ex +ex +ex +ex +ex +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +HI +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +HI +Ya +LJ +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(14,1,1) = {" +ea +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +Yy +zv +zv +zv +"} +(15,1,1) = {" +ea +ea +ea +ea +ea +ea +tg +tg +tg +ea +ea +ea +ea +Nl +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +tg +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +eD +Ya +Ya +HI +Ya +Ya +Ya +LJ +Ya +Ya +Ya +HI +Ya +Ya +Ya +HI +Ya +HI +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(16,1,1) = {" +ea +ea +ea +ea +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +zx +UW +Ya +UW +Ya +mR +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(17,1,1) = {" +ea +ea +ea +ea +ea +mn +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +zU +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +HI +Ya +Ya +Ya +HI +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Td +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(18,1,1) = {" +ea +ea +ea +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Nl +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +HI +UW +LJ +Ya +Ya +Ya +HI +LJ +Ya +Ya +LJ +LJ +Ya +Ya +HI +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +KB +dT +zv +zv +zv +zv +zv +zv +zv +"} +(19,1,1) = {" +ea +ea +ea +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +eD +eD +Ya +Ya +Ya +UW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(20,1,1) = {" +ea +ea +ea +ea +ea +tg +tg +tg +tg +ea +Nw +PX +Qu +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +HI +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(21,1,1) = {" +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +pR +tg +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +LJ +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +yu +yu +yu +yu +yu +qf +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(22,1,1) = {" +ea +ea +ea +ea +ea +tg +tg +ea +Nl +tg +tg +tg +mn +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(23,1,1) = {" +ea +ea +ea +ea +tg +tg +ea +ea +ea +sX +tg +tg +yt +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(24,1,1) = {" +ea +ea +ea +tg +tg +ea +ea +ea +ea +pR +tg +hv +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +HI +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +zx +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +HI +Ya +LJ +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(25,1,1) = {" +ea +tg +tg +tg +tg +ea +ea +ea +ea +ea +mn +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +LJ +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(26,1,1) = {" +ea +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +"} +(27,1,1) = {" +ea +tg +ea +ea +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +XM +XM +XM +XM +XM +Ya +Ya +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +Yy +zv +zv +Yy +"} +(28,1,1) = {" +ea +tg +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +tg +TL +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +XM +Ya +XM +XM +Tz +Tz +XM +XM +XM +XM +XM +XM +Ya +Ya +XM +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +eD +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +"} +(29,1,1) = {" +ea +tg +tg +ea +ea +tg +tg +tg +ea +ea +ea +tg +tg +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +XM +XM +Tz +Tz +Tz +XM +XM +XM +XM +XM +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +UW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +LJ +LJ +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +"} +(30,1,1) = {" +ea +tg +tg +ea +ea +ea +tg +tg +tg +ea +ea +tg +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +Ya +XM +vE +XM +uZ +Dv +RS +uZ +eq +eq +mN +mN +XM +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +UW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +"} +(31,1,1) = {" +ea +tg +tg +ea +ea +ea +ea +tg +tg +tg +tg +tg +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +XM +XM +mN +RS +as +as +as +as +uZ +XM +XM +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +"} +(32,1,1) = {" +ea +ea +tg +tg +Nl +ea +ea +ea +tg +tg +tg +tg +tg +Nl +ea +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +mN +Dv +as +as +as +as +as +RS +uZ +XM +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +"} +(33,1,1) = {" +ea +ea +ea +tg +tg +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +XM +Tz +Tz +eq +as +as +DD +as +as +as +Dv +XM +XM +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(34,1,1) = {" +ea +ea +ea +tg +tg +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +XM +Tz +uZ +as +as +DD +DD +as +as +RS +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(35,1,1) = {" +ea +ea +tg +tg +tg +ea +ea +ea +Nl +tg +tg +tg +tg +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +Tz +RS +as +as +DD +DD +as +as +eq +XM +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +qf +dT +zv +zv +zv +zv +zv +zv +"} +(36,1,1) = {" +ea +ea +tg +tg +ea +ea +ea +ea +tg +tg +tg +tg +tg +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +XM +Dv +as +as +as +as +as +uZ +Tz +XM +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +HI +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +LJ +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +Yy +zv +"} +(37,1,1) = {" +ea +ea +ea +tg +ea +ea +ea +ea +tg +MX +Kt +tg +tg +ko +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +Ya +XM +XM +RS +as +as +as +as +as +RS +Tz +XM +Ya +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(38,1,1) = {" +ea +ea +ea +tg +ea +ea +ea +oQ +tg +tg +tg +tg +tg +ko +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Tz +Tz +uZ +as +as +as +eq +Dv +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(39,1,1) = {" +ea +tg +kf +tg +ea +ea +ea +oQ +tg +zR +tg +tg +tg +ko +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +XM +mN +Dv +RS +uZ +XM +XM +XM +XM +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +"} +(40,1,1) = {" +ea +tg +tg +ea +ea +ea +ea +ea +XI +Zk +Zk +yM +tg +qt +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +XM +Ya +XM +vE +Tz +XM +XM +XM +XM +XM +XM +Ya +XM +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +"} +(41,1,1) = {" +ea +tg +ea +ea +ea +ea +ea +ea +cv +tg +tg +Zk +tg +Df +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +XM +Tz +Tz +XM +RF +RF +eD +Ya +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +zv +"} +(42,1,1) = {" +ea +tg +ea +ea +ea +ea +ea +ea +Hm +tg +tg +Kb +tg +um +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +XM +Ya +Tz +XM +XM +Ya +UW +UW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +"} +(43,1,1) = {" +ea +tg +ea +ea +ea +ea +ea +ea +ea +pR +tg +tg +tg +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +XM +XM +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +Xq +zv +zv +"} +(44,1,1) = {" +ea +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +XM +Ya +Ya +Ya +XM +XM +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +zv +"} +(45,1,1) = {" +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ZF +ZF +vi +vi +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +"} +(46,1,1) = {" +ea +ea +ea +ea +tg +tg +tg +ea +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Wq +hr +hr +hr +ZF +XD +iK +WF +RW +Oc +ie +tL +cx +lb +ZF +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +"} +(47,1,1) = {" +ea +ea +ea +ea +tg +ea +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +Ya +Ya +Ya +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +CZ +Ya +Ya +Ya +ZF +Hw +Hw +Hw +Hw +Oc +OT +lb +lb +lb +vi +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +"} +(48,1,1) = {" +ea +ea +ea +tg +tg +ea +ea +ea +ea +ea +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +zM +Ya +Ya +Ya +Dt +Hw +Hw +Hw +IN +Oc +vP +lb +lb +uD +ZF +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +"} +(49,1,1) = {" +ea +ea +tg +tg +ea +ea +ea +ea +ea +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +xs +Ya +Ya +Ya +ZF +Hw +Hw +Hw +Hw +Oc +Oc +Oc +tV +Oc +ZF +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +"} +(50,1,1) = {" +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +xs +Ya +Ya +Vk +ZF +Yf +VU +RW +Hw +Oc +hX +Xh +UB +Cu +ZF +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +"} +(51,1,1) = {" +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +xs +yp +Ya +vZ +ZF +Oc +Oc +Oc +Tn +Oc +LM +UB +UB +QB +ZF +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +"} +(52,1,1) = {" +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +xs +Ya +Ya +Lm +ZF +yW +UB +UB +UB +lp +UB +UB +UB +UB +VV +XM +XM +Ya +XM +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(53,1,1) = {" +ea +ea +ea +ea +tg +ea +ea +ea +ea +ea +CM +dq +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +gL +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +uW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +xs +Ya +Ya +Ht +Ht +uu +pU +pU +pU +DN +DN +DN +DN +EJ +ZF +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +zv +"} +(54,1,1) = {" +ea +ea +ea +ea +tg +ea +ea +ea +ea +Et +vO +gr +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +tg +tg +tg +tg +tg +tg +dq +tg +tg +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +cw +hr +hr +Ht +yU +Eg +Gs +Gs +Gs +DN +AM +ki +bF +UB +vi +Ya +Ya +Ya +XM +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +zv +"} +(55,1,1) = {" +ea +ea +ea +ea +tg +ea +ea +ea +Et +vO +vO +CM +UH +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +tg +ea +ea +ea +tg +tg +tg +tg +ea +tg +gr +vO +CM +tg +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ht +Ht +uu +pU +pU +pU +DN +xq +DN +DN +UB +vi +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +zv +"} +(56,1,1) = {" +ea +ea +ea +kf +tg +ea +ea +ea +Et +vO +vO +vO +CM +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +tg +tg +ea +ea +tg +tg +tg +ea +ea +UH +vO +vO +vO +gr +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ZF +yW +UB +UB +UB +Ci +UB +Ty +UB +Cu +ZF +Ya +Ya +Ya +XM +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +zv +"} +(57,1,1) = {" +ea +ea +Pt +tg +tg +ea +ea +ea +Et +vO +vO +vO +gr +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +tg +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +tg +tg +tg +tg +tg +ea +ea +ea +tg +CM +vO +vO +UH +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +pK +NY +NY +fT +NY +NY +tb +tb +IZ +tb +xd +Ya +Ya +Ya +XM +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(58,1,1) = {" +ea +ea +tg +tg +tg +ea +ea +ea +Et +vO +vO +vO +UH +tg +tg +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +tg +tg +tg +tg +ea +ea +ea +ea +gL +tg +gr +dq +gL +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +pK +ES +RX +rs +dQ +NY +Ge +Wo +UM +IE +xd +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(59,1,1) = {" +ea +ea +CO +tg +tg +ea +ea +ea +Et +vO +vO +vO +gr +tg +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +tg +tg +tg +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Zm +rs +rs +rs +Mr +NY +UM +UM +UM +Vx +DO +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +Yy +zv +zv +zv +"} +(60,1,1) = {" +ea +ea +sX +tg +ea +ea +ea +ea +Et +vO +vO +vO +UH +dq +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Zm +qk +wL +rs +zP +NY +DS +zB +UM +hA +DO +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(61,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +ea +Et +vO +vO +vO +gr +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +pK +pK +pK +pK +pK +pK +xd +xd +xd +xd +xd +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(62,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +ea +Et +vO +vO +vO +CM +tg +tg +Mp +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +GP +GP +GP +GP +GP +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +XM +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +KB +zv +zv +zv +zv +zv +zv +zv +"} +(63,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Et +vO +vO +UH +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +GP +tZ +tZ +RO +GP +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(64,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Et +vO +CM +tg +tg +tg +tg +tg +tg +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +GP +tZ +tZ +RO +GP +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +"} +(65,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +dq +Iy +tg +tg +tg +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +GP +FR +RO +RO +ds +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +"} +(66,1,1) = {" +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +tg +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +GP +jK +Ym +Rc +GP +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +zv +"} +(67,1,1) = {" +ea +ea +ea +ea +me +me +ea +ea +ea +ea +ea +ea +me +me +me +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +GP +GP +GP +GP +GP +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +zv +"} +(68,1,1) = {" +ea +ea +ea +me +me +me +me +ea +me +me +me +me +me +ea +me +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +Yy +zv +zv +"} +(69,1,1) = {" +ea +ea +ea +me +me +me +ea +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(70,1,1) = {" +ea +ea +ea +me +me +me +me +me +me +me +me +me +me +me +ea +me +me +me +me +me +me +me +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(71,1,1) = {" +ea +ea +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +"} +(72,1,1) = {" +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +me +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +dT +dT +zv +zv +zv +zv +"} +(73,1,1) = {" +ea +ea +ea +me +me +me +me +me +ea +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +yu +yu +dT +dT +dT +zv +zv +zv +"} +(74,1,1) = {" +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +yu +yu +yu +yu +yu +dT +zv +zv +zv +"} +(75,1,1) = {" +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +yu +yu +yu +yu +yu +yu +zv +zv +zv +"} +(76,1,1) = {" +ea +ea +me +me +me +me +me +me +me +me +me +me +me +ea +me +me +me +me +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +"} +(77,1,1) = {" +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +me +me +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +"} +(78,1,1) = {" +ea +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +"} +(79,1,1) = {" +ea +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +"} +(80,1,1) = {" +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +uW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +dT +dT +dT +dT +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +"} +(81,1,1) = {" +ea +ea +ea +me +me +me +me +me +me +me +me +me +me +me +ea +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +dT +dT +dT +dT +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +"} +(82,1,1) = {" +ea +ea +ea +me +me +me +me +me +me +me +me +ea +me +me +me +ea +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +dT +dT +dT +dT +dT +dT +yu +yu +yu +dT +dT +zv +zv +zv +"} +(83,1,1) = {" +ea +ea +ea +me +me +me +me +me +me +me +me +me +me +me +me +ea +ea +ea +ea +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +dT +dT +dT +dT +dT +dT +dT +dT +dT +dT +dT +zv +zv +zv +"} +(84,1,1) = {" +qQ +qQ +qQ +PL +PL +PL +PL +PL +PL +PL +qQ +PL +PL +PL +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +dT +dT +KB +dT +dT +dT +dT +dT +dT +zv +zv +zv +zv +"} +(85,1,1) = {" +qQ +qQ +PL +PL +PL +PL +PL +PL +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +"} +(86,1,1) = {" +qQ +qQ +PL +PL +qQ +PL +PL +PL +PL +qQ +PL +PL +PL +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(87,1,1) = {" +qQ +qQ +PL +PL +PL +qQ +PL +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(88,1,1) = {" +qQ +qQ +qQ +PL +PL +PL +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(89,1,1) = {" +qQ +qQ +PL +PL +PL +PL +PL +PL +qQ +PL +PL +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +uW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(90,1,1) = {" +qQ +qQ +qQ +PL +PL +PL +qQ +PL +PL +PL +PL +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +Ya +Ya +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(91,1,1) = {" +qQ +qQ +PL +PL +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(92,1,1) = {" +qQ +qQ +PL +PL +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(93,1,1) = {" +qQ +qQ +qQ +PL +PL +qQ +PL +PL +PL +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +NR +NR +NR +uC +NR +NR +fJ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(94,1,1) = {" +qQ +qQ +qQ +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +qQ +qQ +Jq +Ya +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UI +UI +UI +UI +UI +Ly +UI +UI +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +Yy +zv +zv +zv +"} +(95,1,1) = {" +qQ +qQ +PL +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +Jq +Jq +Jq +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UI +UI +UI +UI +UI +Ly +YB +UI +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +jp +sL +sL +jp +jp +jp +sL +sL +sL +jp +jp +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(96,1,1) = {" +qQ +qQ +PL +PL +qQ +PL +PL +PL +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +uW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UI +UI +UI +Ya +UI +UI +UI +Ly +mv +Qq +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +BM +fa +ej +Uk +jp +nd +ej +ej +ej +ej +jp +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +zv +"} +(97,1,1) = {" +qQ +qQ +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +Jq +Jq +Jq +qQ +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +Ya +Ya +UI +UI +UI +Ly +UI +UI +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +xY +ej +yZ +ej +bL +ej +yZ +ej +ej +ej +jp +jp +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +"} +(98,1,1) = {" +qQ +qQ +PL +PL +PL +PL +PL +PL +qQ +qQ +qQ +un +Jq +Jq +qQ +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +UI +UI +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +jp +jp +jp +jp +jp +jp +bL +jp +jp +ej +ej +ej +jp +Ya +Ya +Ya +XM +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +zv +"} +(99,1,1) = {" +qQ +qQ +PL +Jq +Fn +Jq +Jq +Jq +qQ +qQ +qQ +dC +un +Aj +qQ +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +UI +UI +dc +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +dA +pT +dA +jp +bt +ej +ej +EQ +jp +na +ej +ej +jp +jp +Ya +Ya +XM +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +"} +(100,1,1) = {" +qQ +qQ +PL +Jq +tO +tO +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +YB +UI +Nf +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ix +na +ej +ej +jp +ej +ej +ej +ej +sL +ej +AY +ej +ej +Ix +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +"} +(101,1,1) = {" +qQ +qQ +Jq +Jq +tO +vb +tO +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +YB +UI +UI +Ya +UI +UI +Ya +UI +UI +UI +Ya +LQ +ej +ej +ej +bL +ej +ej +kt +ej +sL +Wc +AY +ej +ej +LQ +XM +XM +XM +Ya +XM +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +"} +(102,1,1) = {" +qQ +qQ +Jq +tO +tO +tO +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +pE +pE +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +UI +UI +dc +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ix +na +ej +ej +jp +ej +ej +ej +ej +sL +ej +mr +ej +ej +Ix +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(103,1,1) = {" +qQ +qQ +Jq +Fn +Jq +Jq +Jq +Fn +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +pE +pE +pE +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +UI +UI +Nf +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +dA +dA +dA +jp +VJ +ej +ej +Qz +jp +na +ej +ej +jp +jp +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(104,1,1) = {" +qQ +qQ +PL +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +UI +UI +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +jp +jp +jp +jp +jp +jp +bL +jp +jp +ej +ej +ej +jp +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(105,1,1) = {" +qQ +qQ +PL +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +YB +Qq +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +ej +ej +jG +ej +bL +ej +jG +ej +ej +ej +jp +jp +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(106,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +YB +UI +Oz +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +uT +Uu +NI +DA +jp +nd +ej +ej +ej +ej +jp +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +KB +zv +zv +zv +zv +zv +zv +zv +"} +(107,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +qQ +vm +Jq +iX +iX +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +oR +UI +UI +UI +UI +UI +UI +UI +UI +Ly +UI +UI +Ik +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +jp +jp +sL +sL +jp +jp +jp +sL +sL +sL +jp +jp +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +Yy +zv +zv +zv +zv +"} +(108,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Gb +iX +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ta +oa +oa +oa +oa +oa +oa +oa +oa +kR +oa +oa +yG +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(109,1,1) = {" +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +Jq +iX +qQ +qQ +Fn +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +Yy +zv +zv +zv +"} +(110,1,1) = {" +qQ +qQ +qQ +qQ +Jq +Jq +qQ +vm +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(111,1,1) = {" +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +Jq +vm +qQ +qQ +qQ +qQ +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(112,1,1) = {" +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +uW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(113,1,1) = {" +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +TA +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(114,1,1) = {" +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(115,1,1) = {" +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(116,1,1) = {" +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Dq +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(117,1,1) = {" +qQ +qQ +qQ +qQ +Jq +iX +iX +iX +Jq +Jq +Dq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +"} +(118,1,1) = {" +qQ +qQ +qQ +qQ +qQ +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +"} +(119,1,1) = {" +qQ +qQ +qQ +qQ +qQ +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +zv +zv +"} +(120,1,1) = {" +qQ +qQ +qQ +qQ +qQ +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +aY +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +"} +(121,1,1) = {" +qQ +qQ +qQ +qQ +iX +iX +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +zv +zv +"} +(122,1,1) = {" +qQ +qQ +qQ +qQ +iX +iX +Hn +iX +sd +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +"} +(123,1,1) = {" +qQ +qQ +qQ +qQ +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +qQ +qQ +qQ +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +Jq +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +dT +zv +zv +zv +zv +"} +(124,1,1) = {" +qQ +qQ +qQ +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +"} +(125,1,1) = {" +qQ +qQ +qQ +iX +Hn +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +qQ +Jq +Jq +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +"} +(126,1,1) = {" +qQ +qQ +qQ +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +qQ +Jq +Jq +Jq +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +Yy +zv +zv +"} +(127,1,1) = {" +qQ +qQ +qQ +ji +iX +iX +iX +iX +Hn +iX +iX +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +Jq +Jq +qQ +qQ +qQ +qQ +qQ +Jq +Jq +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ol +ol +ol +ol +Ju +ol +ol +ol +ol +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +vo +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +"} +(128,1,1) = {" +qQ +qQ +qQ +ji +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +Hn +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ol +iF +iF +iF +iF +iF +iF +iF +ol +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +LJ +LJ +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +yu +yu +dT +zv +zv +zv +zv +zv +zv +"} +(129,1,1) = {" +qQ +qQ +qQ +ji +ji +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +Jq +Jq +Jq +Jq +Jq +iX +iX +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +La +iF +hR +EO +iF +Rp +AV +iF +La +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +UW +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(130,1,1) = {" +qQ +qQ +qQ +ji +ji +ji +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +La +iF +fB +iF +iF +iF +be +iF +La +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(131,1,1) = {" +qQ +qQ +qQ +qQ +ji +ji +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +Hn +iX +iX +Hn +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +La +iF +AV +EO +iF +Rp +iV +iF +La +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +"} +(132,1,1) = {" +qQ +qQ +qQ +qQ +ji +ji +ji +iX +iX +iX +Hn +iX +zu +iX +iX +iX +iX +iX +iX +iX +iX +iX +Hn +iX +iX +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +ms +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ol +qJ +iF +iF +iF +iF +iF +HD +ol +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(133,1,1) = {" +qQ +qQ +qQ +qQ +ji +ji +ji +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +ms +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ol +ol +ol +sk +ZC +nV +ol +ol +ol +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +eD +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(134,1,1) = {" +qQ +qQ +qQ +qQ +qQ +ji +ji +ji +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +ms +ms +ms +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +ol +ol +ol +ol +ol +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +eD +vo +Ya +Ya +Ya +UW +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +"} +(135,1,1) = {" +qQ +qQ +qQ +qQ +qQ +ji +ji +ji +ji +iX +iX +iX +iX +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +ms +ms +ms +ms +ms +ms +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +MY +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +UW +Ya +Ya +Ya +Ya +vo +Ya +Ya +yu +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +Yy +zv +zv +zv +"} +(136,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +ji +ji +ji +iX +qQ +qQ +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +ms +ms +ms +ms +ms +ms +ms +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +wX +wX +wX +wX +wX +wX +wX +wX +MY +MY +In +MY +MY +MY +wX +wX +wX +wX +MY +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +HI +Ya +LJ +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(137,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Jq +qQ +qQ +qQ +qQ +qQ +CL +Jq +Ea +ms +ms +ms +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +wX +wX +wX +wX +wX +wX +wX +wX +tH +In +MY +MY +TM +MY +MY +MY +wX +wX +MY +MY +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(138,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +TA +ND +Jq +qQ +qQ +EN +Jq +hg +oC +ms +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Ya +Ya +Ya +Ya +Ya +Ya +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +MY +ic +MY +MY +MY +MY +MY +MY +MY +MY +MY +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +Ya +LJ +Ya +Ya +yu +yu +yu +yu +dT +dT +dT +KB +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(139,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +Jq +Jq +Jq +Jq +Jq +ms +Be +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +MY +MY +In +MY +MY +In +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +Ya +Ya +Ya +Ya +Ya +Ya +yu +yu +yu +yu +yu +dT +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +"} +(140,1,1) = {" +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +qQ +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +wX +yu +yu +yu +yu +yu +dT +dT +dT +dT +zv +zv +zv +zv +zv +zv +zv +zv +zv "} diff --git a/maps/redgate/innland.dmm b/maps/redgate/innland.dmm index 367d6f01db..e723903268 100644 --- a/maps/redgate/innland.dmm +++ b/maps/redgate/innland.dmm @@ -270,9 +270,7 @@ }, /area/redgate/wilds) "de" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, +/obj/structure/sign/poster, /turf/simulated/floor/carpet/bcarpet, /area/redgate/structure/powered) "df" = ( @@ -296,7 +294,7 @@ /area/redgate/structure/powered) "dh" = ( /obj/structure/sign/poster{ - pixel_y = 32 + dir = 1 }, /turf/simulated/floor/plating, /area/redgate/structure/powered) @@ -322,7 +320,7 @@ /area/redgate/structure/powered) "dn" = ( /obj/structure/sign/poster{ - pixel_y = 32 + dir = 1 }, /turf/unsimulated/floor/steel{ icon = 'icons/turf/floors_vr.dmi'; @@ -389,7 +387,7 @@ dir = 5 }, /obj/structure/sign/poster{ - pixel_y = 32 + dir = 1 }, /turf/simulated/floor/tiled, /area/redgate/structure/powered) @@ -432,6 +430,7 @@ layer = 5 }, /obj/item/weapon/reagent_containers/dropper, +/obj/structure/sign/poster, /turf/unsimulated/floor/steel{ icon_state = "white" }, @@ -779,9 +778,7 @@ /turf/simulated/floor/plating, /area/redgate/structure/powered) "eR" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, +/obj/structure/sign/poster, /turf/unsimulated/floor/steel{ icon = 'icons/turf/floors_vr.dmi'; icon_state = "wood" @@ -944,9 +941,6 @@ /obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ pixel_x = -3 }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, /obj/structure/extinguisher_cabinet{ pixel_y = -32 }, @@ -958,6 +952,16 @@ /obj/structure/bonfire/permanent, /turf/simulated/floor/reinforced, /area/redgate/structure/powered) +"pX" = ( +/obj/structure/table/woodentable, +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon = 'icons/turf/floors_vr.dmi'; + icon_state = "wood" + }, +/area/redgate/structure/powered) "ub" = ( /turf/simulated/floor/water, /area/redgate/wilds) @@ -969,12 +973,32 @@ base_desc = "Soft, plush green grass. It feels nice under your feet~" }, /area/redgate/structure/powered) +"Bs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_cavegen/cave{ + desc = "It's finely packed dirt. It is soft, and comfortable to walk on."; + name = "dirt" + }, +/area/redgate/structure/powered) "Ha" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/carpet/bcarpet, /area/redgate/structure/powered) +"Ug" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/unsimulated/floor/steel{ + icon_state = "white" + }, +/area/redgate/structure/powered) (1,1,1) = {" kw @@ -3287,7 +3311,7 @@ ct ct ct cQ -cQ +aL cQ ct ct @@ -3428,9 +3452,9 @@ ct ct ct cQ -cQ -cQ -cQ +aL +br +aL cQ ct ct @@ -3571,7 +3595,7 @@ ct ct ct cQ -cQ +aL cQ ct ct @@ -3724,7 +3748,7 @@ ge cQ cQ af -aj +pX ap ap dA @@ -5286,7 +5310,7 @@ df ap ap af -dT +Ug dT dT dT @@ -7010,7 +7034,7 @@ ct bG dl dl -bO +Bs cq le cq @@ -18193,9 +18217,9 @@ lb lb lb lb -aL -aL -aL +cq +cq +cq lb lb lb @@ -18335,9 +18359,9 @@ lb lb lb cq -aL -br -aL +cq +cq +cq cq lb lb @@ -18477,9 +18501,9 @@ lb lb lb lb -aL -aL -aL +cq +cq +cq lb lb lb diff --git a/maps/redgate/islands.dmm b/maps/redgate/islands.dmm new file mode 100644 index 0000000000..c166b0e0a1 --- /dev/null +++ b/maps/redgate/islands.dmm @@ -0,0 +1,21617 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ah" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"az" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/turf/simulated/floor/carpet/green, +/area/redgate/islands/dorm1) +"aL" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"aP" = ( +/obj/item/weapon/material/shard/titaniumglass, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/islands/alienship) +"bg" = ( +/obj/structure/flora/log1, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"bi" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"bo" = ( +/obj/item/weapon/circuitboard/broken, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"bt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/toy/desk/officetoy, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"bv" = ( +/obj/structure/flora/tree/palm, +/turf/simulated/floor/outdoors/grass, +/area/redgate/islands/ocean) +"bH" = ( +/obj/structure/prop/machine/tgmc_console3/starts_on, +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"bM" = ( +/obj/structure/bed/chair/sofa/corp/corner, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"bT" = ( +/obj/structure/bed/chair/sofa/right/purp, +/turf/simulated/floor/carpet/purple, +/area/redgate/islands/dorm2) +"ca" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"ch" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"cp" = ( +/obj/structure/table/marble, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"cu" = ( +/obj/structure/cult/pylon{ + color = "#00ff00"; + name = "bloodbob" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/ocean) +"dc" = ( +/obj/effect/landmark/map_data/islands, +/obj/effect/fake_sun/warm, +/turf/unsimulated/wall/planetary/normal/virgo4, +/area/redgate/islands/ocean) +"dh" = ( +/obj/structure/prop/rock/waterflat, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"dj" = ( +/obj/structure/closet/firecloset/full, +/obj/random/firstaid, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"dk" = ( +/obj/item/weapon/oar, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/islands/ocean) +"dr" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/toy/desk/newtoncradle, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"dt" = ( +/obj/item/weapon/picnic_blankets_carried, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"dD" = ( +/obj/item/weapon/bone/skull/unknown, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"dF" = ( +/obj/structure/sink{ + pixel_y = 18 + }, +/obj/item/frame/mirror{ + pixel_y = 35 + }, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/redgate/islands/bathroom) +"dS" = ( +/obj/structure/table/marble, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"dX" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"ea" = ( +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"es" = ( +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"ew" = ( +/turf/simulated/wall/wood{ + can_open = 1 + }, +/area/redgate/islands/office) +"ey" = ( +/obj/item/broken_device/random, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"ez" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"eG" = ( +/obj/item/weapon/beach_ball, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"eH" = ( +/obj/structure/salvageable/shuttle_console, +/turf/simulated/shuttle/floor/alienplating/blue/half{ + dir = 1 + }, +/area/redgate/islands/alienship) +"eR" = ( +/obj/random/mob/semirandom_mob_spawner/vore/passive, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"eU" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/livingroom) +"eX" = ( +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"fc" = ( +/obj/structure/grille, +/obj/item/weapon/material/shard/titaniumglass, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"fd" = ( +/obj/item/clothing/head/helmet/alien, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/islands/alienship) +"fr" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"fv" = ( +/obj/vehicle/boat/dragon{ + dir = 8 + }, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"fL" = ( +/obj/vehicle/boat/dragon, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"fW" = ( +/mob/living/simple_mob/animal/passive/fish/measelshark, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"fY" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"ga" = ( +/obj/machinery/door/airlock/silver{ + id_tag = "IslandDorm2" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"gr" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "IslandDorm2"; + pixel_x = 27; + specialfunctions = 4 + }, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"gH" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/toy/desk/fan, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"gJ" = ( +/obj/effect/floor_decal/milspec/color/orange, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"gS" = ( +/obj/machinery/computer/security/telescreen{ + pixel_y = -31 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"gT" = ( +/obj/structure/salvageable/shuttle_console, +/obj/item/weapon/material/shard/titaniumglass, +/turf/simulated/shuttle/floor/alienplating/blue/half{ + dir = 1 + }, +/area/redgate/islands/alienship) +"hu" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"hv" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/gear) +"hy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"hC" = ( +/obj/structure/prop/rock/watersharp, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"hE" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"hP" = ( +/obj/structure/table/marble, +/obj/structure/closet/walllocker_double/kitchen/west, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/machinery/light, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"hS" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/toy/desk/fan, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"hU" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"hX" = ( +/obj/structure/prop/rock/small/water, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"if" = ( +/obj/structure/table/gold, +/obj/item/clothing/mask/gas/half{ + name = "diving mask" + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask" + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask" + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask" + }, +/turf/simulated/floor/concrete, +/area/redgate/islands/oxygen) +"it" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup, +/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"iu" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -24 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"iv" = ( +/turf/simulated/shuttle/wall/alien/blue, +/area/redgate/islands/alienship) +"ix" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"iL" = ( +/turf/simulated/wall/solidrock/mossyrockpoi, +/area/redgate/islands/ocean) +"iQ" = ( +/obj/machinery/door/airlock/silver{ + id_tag = "IslandDorm1" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"iS" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"iT" = ( +/turf/simulated/floor/outdoors/dirt, +/area/redgate/islands/cave) +"iX" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman, +/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor, +/obj/item/weapon/book/bundle/custom_library/fiction/ghostship, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"jt" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/office) +"jv" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"jH" = ( +/turf/simulated/floor/outdoors/rocks, +/area/redgate/islands/ocean) +"jT" = ( +/obj/structure/prop/rock/small/wateralt, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"kd" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/fountain7, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"kf" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"ks" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"kx" = ( +/mob/living/simple_mob/animal/passive/fish/pike, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"ky" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"kU" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/kitchen) +"kV" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"lo" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/alienship) +"lr" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"lv" = ( +/obj/machinery/door/airlock/sandstone, +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"ly" = ( +/obj/structure/loot_pile/surface/alien, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"lC" = ( +/turf/simulated/floor/water/beach/corner{ + dir = 8 + }, +/area/redgate/islands/ocean) +"lJ" = ( +/obj/item/weapon/material/shard/titaniumglass, +/obj/structure/bed/chair/bay/chair/padded/purple{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"lN" = ( +/mob/living/simple_mob/animal/passive/fish/javelin, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"lU" = ( +/obj/structure/prop/alien/computer/camera/flipped, +/turf/simulated/shuttle/floor/alienplating/blue/half{ + dir = 1 + }, +/area/redgate/islands/alienship) +"mb" = ( +/obj/machinery/door/airlock/sandstone, +/turf/simulated/floor/concrete, +/area/redgate/islands/oxygen) +"mj" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"mq" = ( +/obj/item/modular_computer/console{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"mL" = ( +/obj/structure/prop/alien/pod/open, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"mX" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/fishing) +"nb" = ( +/turf/simulated/floor/outdoors/grass, +/area/redgate/islands/ocean) +"nc" = ( +/obj/structure/ladder_assembly, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/ocean) +"nn" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"nt" = ( +/obj/structure/prop/rock/flat, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"nx" = ( +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"nE" = ( +/obj/structure/bed/chair/sofa/corp/right, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"nL" = ( +/obj/structure/flora/log2, +/turf/simulated/floor/water/ocean, +/area/redgate/islands/ocean) +"nQ" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"ok" = ( +/turf/unsimulated/wall/planetary/normal/virgo4, +/area/redgate/islands/ocean) +"oF" = ( +/obj/machinery/telecomms/server, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"oJ" = ( +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"oL" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"oX" = ( +/obj/structure/prop/rock/round, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"pa" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/redgate/islands/bathroom) +"pc" = ( +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"pn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/secretladder) +"po" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/grass, +/area/redgate/islands/ocean) +"pw" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"px" = ( +/obj/structure/inactive_stairs/west/bottom, +/obj/structure/inactive_stairs/west/bottom{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"pX" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"qb" = ( +/obj/structure/flora/bboulder1, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"qn" = ( +/obj/machinery/button/windowtint{ + id = "IslandWindow2"; + pixel_x = 20; + pixel_y = 21 + }, +/turf/simulated/floor/carpet/green, +/area/redgate/islands/dorm1) +"qo" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"qq" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"qA" = ( +/obj/machinery/floodlight{ + dir = 4; + on = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"qD" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"qF" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, +/obj/item/weapon/book/custom_library/fiction/myrock, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"qU" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/redgate/islands/bathroom) +"rb" = ( +/obj/structure/temple, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"re" = ( +/turf/simulated/floor/water/beach{ + dir = 5 + }, +/area/redgate/islands/ocean) +"rg" = ( +/turf/simulated/floor/carpet/green, +/area/redgate/islands/dorm1) +"rj" = ( +/obj/structure/table/steel_reinforced, +/obj/random/mug, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"rA" = ( +/obj/structure/table/gold, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/oxygen/yellow, +/turf/simulated/floor/concrete, +/area/redgate/islands/oxygen) +"rT" = ( +/obj/structure/bed/chair/sofa/right/green{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"rX" = ( +/turf/simulated/floor/water/beach{ + dir = 9 + }, +/area/redgate/islands/ocean) +"sq" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"sB" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/ocean) +"sF" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"sK" = ( +/obj/structure/closet/grave{ + name = "disturbed dirt" + }, +/obj/random/mainttoyloot/nofail, +/obj/random/medical, +/obj/random/contraband/nofail, +/obj/random/cash/huge, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"sO" = ( +/obj/item/weapon/material/shard/titaniumglass, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"sR" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"sU" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/dorm2) +"th" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"ti" = ( +/turf/simulated/floor/lava, +/area/redgate/islands/ocean) +"tA" = ( +/obj/item/weapon/oar, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"tD" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/redgate/islands/ocean) +"tE" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/volcano) +"tW" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"up" = ( +/obj/structure/table/hardwoodtable, +/obj/random/toy, +/turf/simulated/floor/carpet, +/area/redgate/islands/diningroom) +"uX" = ( +/mob/living/simple_mob/animal/passive/crab, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"vh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"vn" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/ladder) +"vv" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/livingroom) +"vE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"vN" = ( +/obj/structure/prop/rock/small/water, +/turf/simulated/floor/water/ocean, +/area/redgate/islands/ocean) +"vU" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/fishing) +"vX" = ( +/mob/living/simple_mob/vore/seagull, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"wp" = ( +/obj/structure/table/hardwoodtable, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"ww" = ( +/turf/simulated/floor/tiled/kafel_full/gray, +/area/redgate/islands/bathroom) +"wy" = ( +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"wE" = ( +/obj/machinery/floodlight{ + on = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"wH" = ( +/obj/machinery/button/windowtint{ + id = "IslandWindow1"; + pixel_x = 20; + pixel_y = 21 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/islands/dorm2) +"xg" = ( +/obj/structure/table/steel_reinforced, +/obj/random/toolbox, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"xm" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/grass, +/area/redgate/islands/ocean) +"xr" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/livingroom) +"xt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/redgate/islands/telecomms) +"xu" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"xN" = ( +/obj/structure/table/hardwoodtable, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"xW" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "IslandDorm1"; + pixel_x = -27; + specialfunctions = 4 + }, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"yi" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"yF" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"yH" = ( +/obj/machinery/vending/fishing, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/fishing) +"yI" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"zg" = ( +/obj/structure/inactive_stairs/west/top, +/obj/structure/inactive_stairs/west/top{ + pixel_y = 16 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"zu" = ( +/obj/structure/table/marble, +/obj/structure/sink/countertop{ + dir = 1 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"zA" = ( +/obj/machinery/telecomms/relay/preset/station{ + name = "rig telecomms" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"zR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/redgate/islands/gear) +"zS" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/diningroom) +"zT" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"Am" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/volcano) +"AB" = ( +/obj/structure/closet/alien, +/obj/random/tool/alien, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"AC" = ( +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"AQ" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet, +/area/redgate/islands/diningroom) +"AT" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"AV" = ( +/obj/structure/closet/cabinet, +/obj/random/forgotten_tram, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"Ba" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"Bp" = ( +/turf/simulated/floor/water/ocean, +/area/redgate/islands/ocean) +"Bq" = ( +/obj/structure/flora/tree/palm, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"By" = ( +/obj/structure/ladder/updown, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/secretladder) +"BA" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tank, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"BI" = ( +/obj/structure/bed/chair/comfy/rounded/blue, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"BJ" = ( +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/islands/alienship) +"BK" = ( +/turf/simulated/floor/water/beach/corner{ + dir = 1 + }, +/area/redgate/islands/ocean) +"BL" = ( +/turf/simulated/floor/concrete, +/area/redgate/islands/oxygen) +"BR" = ( +/turf/simulated/floor/water/beach{ + dir = 4 + }, +/area/redgate/islands/ocean) +"BV" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"Ca" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"Ch" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"Cu" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"CD" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"CQ" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"CT" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/oar, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/fishing) +"Dl" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"Dx" = ( +/obj/structure/grille/broken, +/obj/item/weapon/material/shard/titaniumglass, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"DD" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/redgate/islands/diningroom) +"DN" = ( +/obj/structure/bed/chair/sofa/purp, +/turf/simulated/floor/carpet/purple, +/area/redgate/islands/dorm2) +"DP" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"En" = ( +/obj/structure/prop/rock/small/wateralt, +/turf/simulated/floor/water/ocean, +/area/redgate/islands/ocean) +"Eo" = ( +/turf/simulated/floor/water/beach{ + dir = 1 + }, +/area/redgate/islands/ocean) +"EC" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"Fd" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"Fu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"FW" = ( +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"Gb" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"Gf" = ( +/obj/machinery/telecomms/bus, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"Gm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"GG" = ( +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"GK" = ( +/turf/simulated/floor/water/beach/corner{ + dir = 4 + }, +/area/redgate/islands/ocean) +"GT" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"Hf" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/fishing) +"Hm" = ( +/obj/structure/bed/chair/sofa/left/purp, +/turf/simulated/floor/carpet/purple, +/area/redgate/islands/dorm2) +"Hn" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"Hs" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/control) +"Hx" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/random/toolbox, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"Hy" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"Hz" = ( +/obj/structure/bed/chair/sofa/green{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"HC" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"HQ" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"Ia" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/islands/dorm2) +"Iv" = ( +/obj/effect/floor_decal/milspec/color/orange, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"Iy" = ( +/turf/simulated/wall/sandstone, +/area/redgate/islands/ocean) +"IH" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"IJ" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/dorm1) +"Ja" = ( +/obj/structure/closet/firecloset/full, +/obj/random/firstaid, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"Jm" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"Jq" = ( +/turf/simulated/floor/water/beach{ + dir = 8 + }, +/area/redgate/islands/ocean) +"JB" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/islands/ocean) +"JP" = ( +/obj/structure/prop/alien/dispenser/twoway, +/turf/simulated/shuttle/floor/alienplating/blue/half, +/area/redgate/islands/alienship) +"Kk" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"Km" = ( +/obj/structure/prop/machine/tgmc_console1/starts_on, +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"Kn" = ( +/obj/structure/flora/tree/jungle_small, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"Ku" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"Kw" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/ocean) +"KB" = ( +/obj/structure/table/marble, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"KD" = ( +/obj/structure/girder, +/turf/simulated/floor/plating{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"KG" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"KP" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/livingroom) +"KR" = ( +/obj/structure/flora/log2, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"KU" = ( +/turf/simulated/wall/sandstone, +/area/redgate/islands/oxygen) +"La" = ( +/turf/simulated/floor/water/beach, +/area/redgate/islands/ocean) +"Le" = ( +/obj/structure/closet/athletic_swimwear, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"Lg" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"Lr" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"Lz" = ( +/obj/structure/closet/crate{ + name = "oar box" + }, +/obj/item/weapon/oar, +/obj/item/weapon/oar, +/obj/item/weapon/oar, +/obj/item/weapon/oar, +/obj/item/weapon/oar, +/obj/item/weapon/oar, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"LC" = ( +/obj/item/weapon/oar, +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"LO" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/secretladder) +"LQ" = ( +/obj/structure/prop/alien/computer/hybrid, +/turf/simulated/shuttle/floor/alienplating/blue/half{ + dir = 1 + }, +/area/redgate/islands/alienship) +"LV" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"Mg" = ( +/obj/machinery/shower{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/structure/window/reinforced/tinted/frosted, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/redgate/islands/bathroom) +"Mt" = ( +/obj/structure/closet/cabinet, +/obj/random/forgotten_tram, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"Mv" = ( +/turf/simulated/floor/water/beach/corner, +/area/redgate/islands/ocean) +"Mx" = ( +/obj/structure/table/hardwoodtable, +/obj/random/mug, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/livingroom) +"MC" = ( +/obj/vehicle/boat{ + dir = 8 + }, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"MJ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"MP" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"MY" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"Ns" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/obj/machinery/light, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"Nz" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alienplating/blue/half, +/area/redgate/islands/alienship) +"NB" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/telecomms) +"ND" = ( +/obj/structure/bed/chair/sofa/left/green{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"NV" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"Oe" = ( +/obj/structure/prop/rock/waterflat, +/turf/simulated/floor/water/ocean, +/area/redgate/islands/ocean) +"Or" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"Ov" = ( +/mob/living/simple_mob/animal/passive/fish/perch, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"OF" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/bathroom) +"OO" = ( +/obj/structure/salvageable/console{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"Pl" = ( +/obj/structure/table/rack/shelf/steel{ + pixel_y = 16 + }, +/obj/item/weapon/towel/random, +/obj/random/soap, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/redgate/islands/bathroom) +"Pm" = ( +/obj/vehicle/boat{ + dir = 4 + }, +/turf/simulated/floor/water/ocean, +/area/redgate/islands/ocean) +"Pu" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"Px" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/cave) +"PF" = ( +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/outdoors/grass, +/area/redgate/islands/ocean) +"PO" = ( +/obj/machinery/telecomms/hub, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"PS" = ( +/obj/structure/prop/rock/sharp, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"Qe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "IslandWindow1" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) +"Qs" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"Qv" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"Qw" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating/blue/half, +/area/redgate/islands/alienship) +"QG" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/livingroom) +"QQ" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"RG" = ( +/obj/item/prop/alien/junk, +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/islands/alienship) +"RK" = ( +/mob/living/simple_mob/animal/passive/fish/trout, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"RL" = ( +/obj/structure/closet/alien, +/obj/random/toy, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"RP" = ( +/obj/item/weapon/oar, +/turf/simulated/floor/water/beach, +/area/redgate/islands/ocean) +"RZ" = ( +/obj/random/multiple/random_size_crate/no_weapons, +/turf/simulated/floor/outdoors/dirt, +/area/redgate/islands/cave) +"Si" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, +/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, +/obj/item/weapon/book/custom_library/fiction/woodysgotwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/office) +"Sk" = ( +/obj/structure/bed/chair/bay/chair/padded/purple{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alien/blue, +/area/redgate/islands/alienship) +"SG" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/redgate/islands/bathroom) +"Td" = ( +/turf/simulated/floor/wood/alt/panel{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"Ty" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "IslandWindow2" + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"TH" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/control) +"Uf" = ( +/obj/machinery/atmospherics/pipe/tank{ + dir = 1 + }, +/turf/simulated/floor/plating{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"Ut" = ( +/turf/simulated/floor/lava, +/area/redgate/islands/volcano) +"UH" = ( +/obj/random/multiple/random_size_crate, +/turf/simulated/floor/outdoors/dirt, +/area/redgate/islands/cave) +"UI" = ( +/obj/structure/prop/rock, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/islands/ocean) +"UJ" = ( +/turf/simulated/floor/water/beach{ + dir = 6 + }, +/area/redgate/islands/ocean) +"UY" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/telecomms) +"Vc" = ( +/mob/living/simple_mob/vore/alienanimals/catslug{ + color = "#fae57f"; + name = "Wilson" + }, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"Vj" = ( +/turf/simulated/floor/lava/outdoors, +/area/redgate/islands/ocean) +"Vk" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/livingroom) +"Vn" = ( +/obj/item/broken_device/random, +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/islands/alienship) +"Vx" = ( +/obj/vehicle/boat{ + dir = 4 + }, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"VC" = ( +/obj/random/pizzabox, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/ocean) +"VG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/redgate/islands/control) +"VP" = ( +/obj/machinery/floodlight{ + dir = 8; + on = 1 + }, +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"VU" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/outdoors/grass, +/area/redgate/islands/ocean) +"Wc" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/islands/alienship) +"Wi" = ( +/obj/machinery/porta_turret/alien/destroyed{ + dir = 5 + }, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"Wr" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"WE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/turf/simulated/floor/concrete, +/area/redgate/islands/oxygen) +"WK" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/redgate/islands/diningroom) +"WR" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"WY" = ( +/obj/item/clothing/accessory/medal/dungeon/alien_ufo, +/turf/simulated/shuttle/floor/alienplating/blue, +/area/redgate/islands/alienship) +"Xf" = ( +/obj/structure/redgate/away, +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"Xl" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spoon, +/obj/item/weapon/material/kitchen/utensil/spork, +/obj/item/weapon/material/kitchen/utensil/foon, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"Xq" = ( +/turf/simulated/wall/sandstone, +/area/redgate/islands/redgate) +"Xt" = ( +/turf/simulated/floor/tiled{ + outdoors = 1 + }, +/area/redgate/islands/ocean) +"XA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/ladder) +"XM" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"XQ" = ( +/turf/simulated/floor/carpet, +/area/redgate/islands/diningroom) +"XU" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/outdoors/dirt, +/area/redgate/islands/cave) +"XV" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tool/power, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/gear) +"Yn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/fishing) +"Yv" = ( +/mob/living/simple_mob/vore/pakkun/fire, +/turf/simulated/floor/beach/sand/desert/outdoors, +/area/redgate/islands/ocean) +"YD" = ( +/obj/structure/ladder/updown, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/ladder) +"YV" = ( +/turf/simulated/floor/water/beach{ + dir = 10 + }, +/area/redgate/islands/ocean) +"YY" = ( +/turf/simulated/floor/concrete, +/area/redgate/islands/redgate) +"Zd" = ( +/obj/machinery/porta_turret/alien/destroyed{ + dir = 9 + }, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"Zg" = ( +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/diningroom) +"ZF" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm1) +"ZM" = ( +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/kitchen) +"ZQ" = ( +/obj/structure/prop/rock/water, +/turf/simulated/floor/water/deep/ocean/diving, +/area/redgate/islands/ocean) +"ZR" = ( +/obj/structure/table/hardwoodtable, +/obj/item/weapon/material/fishing_rod/modern/strong, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/livingroom) +"ZY" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/dorm2) + +(1,1,1) = {" +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +dc +"} +(2,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(3,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(4,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(5,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(6,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Zd +iv +iv +iv +iv +iv +iv +iv +iv +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(7,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +iv +iv +iv +mL +ea +ea +ea +ea +Qw +iv +iv +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(8,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +sO +AC +iv +LQ +ea +dD +fd +aP +ea +RL +iv +iv +iv +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(9,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fc +gT +Sk +ea +Vn +RG +WY +JP +iv +lo +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(10,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Dx +eH +lJ +ea +Wc +Wc +BJ +Nz +iv +lo +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(11,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +sB +sB +sB +sB +sB +Jq +Jq +Jq +YV +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +iv +lU +bo +ea +BJ +BJ +ey +AB +iv +iv +iv +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(12,1,1) = {" +ok +AC +AC +AC +AC +AC +sB +sB +sB +sB +iL +iL +sB +sB +sB +nx +nx +BK +Jq +YV +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +sO +AC +iv +iv +iv +ly +ea +ea +ea +ea +Qw +iv +iv +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Hn +CD +kV +AC +AC +AC +AC +AC +AC +Hn +CD +Hs +Hs +Hs +VG +VG +VG +Hs +Hs +Hs +CD +kV +AC +AC +AC +AC +AC +AC +Hn +CD +kV +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(13,1,1) = {" +ok +AC +AC +AC +sB +sB +sB +iL +iL +iL +yi +wy +Fd +sB +sB +sB +nx +nx +nx +BK +Jq +YV +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Wi +iv +iv +iv +GG +GG +iv +iv +iv +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Hn +gJ +Xt +gJ +kV +AC +AC +AC +AC +Hn +gJ +Xt +Hs +hS +rj +mq +OO +mq +ix +oJ +Hs +Xt +gJ +kV +AC +AC +AC +AC +Hn +gJ +Xt +gJ +kV +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(14,1,1) = {" +ok +AC +AC +AC +sB +sB +wy +Fd +wy +wy +wy +IH +yi +wy +sB +sB +nx +nx +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +kx +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Hn +gJ +Xt +KD +Xt +gJ +kV +pX +pX +Hn +gJ +Xt +Xt +Hs +kd +Or +GT +Or +GT +Or +bt +Hs +Xt +Xt +gJ +kV +pX +pX +Hn +gJ +Xt +KD +Xt +gJ +iS +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(15,1,1) = {" +ok +AC +AC +sB +sB +sB +BV +wy +IH +wy +yi +yi +yi +iL +iL +sB +nx +nx +nx +nx +nx +BK +YV +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +Xt +KD +Uf +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Hs +Kk +GT +GT +GT +GT +GT +Kk +Hs +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Uf +KD +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(16,1,1) = {" +ok +AC +AC +sB +sB +DP +wy +DP +sK +Kn +jv +BV +tW +iL +iL +sB +sB +nx +nx +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +gJ +Xt +KD +Xt +gJ +qq +pw +pw +zT +Xt +Xt +Xt +Hs +Ja +TH +GT +qo +GT +GT +GT +Hs +Xt +Xt +Xt +Cu +pw +pw +Iv +gJ +Xt +KD +Xt +gJ +qq +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(17,1,1) = {" +ok +AC +AC +sB +sB +Ch +BV +yi +wy +wy +MJ +yi +yi +qb +iL +sB +sB +nx +nx +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +gJ +Xt +gJ +qq +AC +AC +AC +zT +Xt +KD +Xt +Hs +Hs +Jm +Hs +Hs +Hs +Jm +Hs +Hs +Xt +KD +Xt +Cu +AC +AC +AC +Iv +gJ +Xt +gJ +qq +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(18,1,1) = {" +ok +AC +AC +AC +sB +wy +PS +yi +BV +wy +wy +IH +BV +DP +DP +sB +sB +sB +nx +nx +nx +nx +BK +YV +Bp +nL +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +kx +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +oL +qq +AC +AC +AC +AC +zT +Xt +Xt +Xt +Xt +eR +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Cu +AC +AC +AC +AC +Iv +oL +qq +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(19,1,1) = {" +ok +AC +AC +AC +sB +wy +wy +IH +wy +wy +wy +hE +yi +yi +Fd +iL +sB +sB +sB +nx +nx +nx +nx +BK +YV +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +vn +vn +vn +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(20,1,1) = {" +ok +AC +AC +AC +sB +sB +wy +nQ +yi +tW +yi +wy +yi +yi +yi +DP +sB +sB +sB +sB +nx +nx +nx +nx +BK +YV +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +vn +YD +XA +Xt +KD +Uf +Xt +hv +hv +hv +hv +hv +Xt +Xt +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(21,1,1) = {" +ok +AC +AC +AC +sB +sB +tW +wy +BV +Fd +wy +wy +Kn +Ch +yi +DP +DP +yF +qb +wy +wy +wy +nx +bg +nx +BK +YV +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +kx +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +vn +vn +vn +Xt +Xt +Xt +Xt +NV +LV +Lr +MY +hv +Xt +eR +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(22,1,1) = {" +ok +AC +AC +AC +sB +sB +Px +iT +Px +qD +yi +wy +yi +DP +DP +wy +Kn +yF +wy +Kn +yi +wy +nx +nx +nx +nx +BK +YV +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Lr +Lr +Lr +MY +hv +Xt +Xt +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(23,1,1) = {" +ok +AC +AC +AC +AC +sB +iT +iT +Px +sB +sB +iL +iL +iL +BV +DP +DP +yF +wy +yi +yi +wy +wy +wy +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Hn +CD +kV +AC +AC +AC +AC +zT +Xt +Xt +Xt +NB +NB +NB +NB +hv +Lr +Lr +XV +zR +Xt +Xt +Xt +Cu +AC +AC +AC +AC +Hn +CD +kV +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(24,1,1) = {" +ok +AC +AC +AC +AC +sB +iT +iT +iT +Px +sB +sB +sB +sB +iL +yi +BV +yF +wy +wy +IH +yi +nt +wy +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Hn +gJ +Xt +gJ +kV +AC +AC +AC +zT +Xt +KD +Xt +NB +PO +Fu +NB +dj +Lr +Lr +XV +zR +Xt +KD +Xt +Cu +AC +AC +AC +Hn +gJ +Xt +gJ +kV +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(25,1,1) = {" +ok +AC +AC +AC +AC +sB +iT +iT +iT +iT +sB +sB +sB +sB +yi +DP +DP +yF +wy +Fd +hE +DP +wy +yi +wy +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +kx +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Hn +gJ +Xt +KD +Xt +gJ +kV +pX +pX +zT +Xt +Xt +Xt +xt +oF +UY +Ba +Lr +Lr +Lr +xg +zR +Xt +Xt +Xt +Cu +pX +pX +Hn +gJ +Xt +KD +Xt +gJ +kV +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(26,1,1) = {" +ok +AC +AC +AC +AC +sB +Px +iT +iT +iT +iT +sB +sB +sB +Fd +yi +DP +yF +wy +yi +DP +BV +yi +BV +wy +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +Xt +KD +Uf +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +xt +zA +UY +UY +Lr +Lr +Lr +ah +hv +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Uf +KD +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(27,1,1) = {" +ok +AC +AC +AC +AC +sB +Px +iT +iT +iT +iT +sB +sB +yi +DP +DP +sR +Gb +wy +yi +IH +DP +DP +DP +wy +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +gJ +Xt +KD +Xt +gJ +qq +pw +pw +Iv +oL +gJ +Xt +NB +Gf +Ca +NB +Hx +ca +Lg +BA +hv +Xt +gJ +oL +qq +pw +pw +Iv +gJ +Xt +KD +Xt +gJ +qq +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(28,1,1) = {" +ok +AC +AC +AC +AC +sB +sB +iT +iT +iT +iT +sB +sB +wy +IH +yi +yF +yi +wy +nn +yi +wy +Kn +BV +wy +nx +nx +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fW +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +gJ +Xt +gJ +qq +AC +AC +AC +AC +AC +zT +Xt +NB +NB +NB +NB +hv +hv +vE +hv +hv +Xt +Cu +AC +AC +AC +AC +AC +Iv +gJ +Xt +gJ +qq +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(29,1,1) = {" +ok +AC +AC +AC +AC +sB +sB +Px +iT +iT +iT +sB +sB +sB +BV +DP +yF +yi +yi +BV +DP +BV +DP +DP +wy +nx +nx +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +oL +qq +AC +AC +AC +AC +AC +AC +zT +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Cu +AC +AC +AC +AC +AC +AC +Iv +oL +qq +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(30,1,1) = {" +ok +AC +AC +AC +AC +AC +sB +Px +iT +iT +iT +iT +sB +sB +DP +yi +yI +HC +DP +nn +UI +DP +nn +wy +ks +nx +nx +La +nL +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +Xt +Xt +Xt +Xt +eR +Xt +Xt +Xt +Xt +Xt +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(31,1,1) = {" +ok +AC +AC +AC +AC +AC +sB +Px +iT +XU +iT +iT +sB +sB +yi +DP +wy +yi +DP +yi +mj +yi +DP +DP +wy +nx +nx +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zT +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Cu +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(32,1,1) = {" +ok +AC +AC +AC +AC +AC +sB +sB +iT +iT +iT +iT +sB +sB +sB +HQ +yi +wy +wy +IH +nn +DP +Fd +BV +bg +nx +nx +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +gJ +Xt +Xt +Xt +Xt +Xt +Xt +Xt +LC +Xt +gJ +qq +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(33,1,1) = {" +ok +AC +AC +AC +AC +AC +sB +sB +UH +iT +iT +RZ +sB +sB +sB +yi +wy +wy +yi +wy +Fd +yi +yi +wy +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Iv +oL +oL +oL +px +px +px +oL +oL +oL +qq +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(34,1,1) = {" +ok +AC +AC +AC +AC +AC +sB +sB +sB +sB +sB +sB +sB +sB +sB +wy +oX +DP +BV +wy +wy +wy +IH +wy +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +zg +zg +zg +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(35,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +sB +sB +sB +sB +sB +sB +sB +sB +Ch +yi +DP +BV +wy +yi +yi +wy +wy +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Xt +Xt +Xt +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(36,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +sB +sB +sB +sB +sB +sB +sB +sB +sB +sB +yi +yi +wy +BV +nx +nx +nx +Mv +UJ +Bp +Bp +KR +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Vx +LC +Xt +Xt +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +ok +"} +(37,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +sB +sB +sB +sB +sB +sB +sB +sB +sB +sB +wy +wy +qD +wy +nx +nx +Mv +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Xt +Xt +Xt +Vx +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(38,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +sB +sB +sB +sB +sB +sB +sB +sB +nx +tA +nx +nx +nx +nx +Mv +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Xt +Xt +Xt +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(39,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +Mv +BR +BR +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Vx +Xt +AC +Xt +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(40,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +re +BR +BR +BR +BR +BR +BR +UJ +Pm +Bp +Bp +nL +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Xt +AC +LC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(41,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Xt +Vx +Xt +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(42,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(43,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(44,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fW +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(45,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(46,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(47,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(48,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(49,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(50,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(51,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(52,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(53,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fW +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(54,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +rX +Jq +Jq +Jq +Jq +Jq +Jq +Jq +YV +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(55,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +rX +Jq +Jq +GK +nx +nx +nx +nx +nx +nx +nx +BK +Jq +YV +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(56,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +Iy +Iy +nx +nx +nx +BK +YV +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(57,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +rX +Jq +GK +nx +nx +nx +vX +nx +nx +nx +Iy +Le +nx +nx +nx +uX +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(58,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +nx +nx +Iy +nx +nx +nx +nx +nx +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(59,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +Bq +nx +nx +nx +La +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(60,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +Xq +Xq +Xq +Xq +Xq +Xq +fY +nx +nx +nx +nx +eG +nx +BK +Jq +YV +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(61,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Eo +Bq +nx +Xq +bH +YY +YY +qA +Xq +Iy +nx +nx +nx +nx +nx +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(62,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Eo +nx +nx +Xq +YY +YY +YY +YY +Xq +nx +nx +nx +nx +nx +nx +nx +nx +nx +La +Bp +Bp +AC +MC +MC +MC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(63,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +rX +Jq +GK +nx +nx +Xq +wE +Xf +YY +YY +lv +nx +nx +nx +nx +nx +nx +nx +nx +nx +Td +Td +Td +Td +Td +Td +Td +Td +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(64,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +nx +nx +Xq +YY +YY +YY +YY +Xq +nx +nx +nx +nx +nx +nx +nx +nx +nx +Td +Td +Td +Td +Td +Td +Td +Td +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(65,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +nx +nx +Xq +Km +YY +YY +VP +Xq +Iy +nx +nx +nx +vX +nx +nx +dt +Lz +La +Bp +Bp +AC +Vx +Vx +Vx +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(66,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +re +lC +nx +nx +nx +Xq +Xq +Xq +Xq +Xq +Xq +nx +nx +nx +nx +nx +nx +nx +nx +Mv +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(67,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +re +lC +nx +nx +nx +nx +nx +nx +nx +nx +nx +KU +mb +KU +KU +nx +nx +nx +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(68,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +nx +nx +KU +BL +rA +KU +nx +nx +uX +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(69,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +re +BR +lC +nx +nx +nx +nx +vX +nx +nx +KU +WE +if +KU +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(70,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +re +BR +BR +lC +nx +nx +nx +nx +KU +KU +KU +KU +nx +Mv +BR +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(71,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +rX +Jq +Jq +Jq +YV +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Eo +Bq +nx +nx +nx +nx +nx +nx +nx +nx +La +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(72,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +rX +GK +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +re +BR +lC +nx +nx +nx +uX +Mv +BR +BR +UJ +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(73,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Eo +nx +nx +Vc +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +re +BR +BR +BR +BR +UJ +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fW +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(74,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Eo +nx +Bq +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(75,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +re +lC +nx +nx +Mv +UJ +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +RK +AC +AC +AC +RK +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(76,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +re +BR +BR +UJ +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(77,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(78,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +RK +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(79,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +RK +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(80,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(81,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +RK +AC +AC +AC +AC +AC +AC +RK +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(82,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(83,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +RK +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(84,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +RK +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +ok +"} +(85,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(86,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(87,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(88,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fW +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(89,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(90,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(91,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(92,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +Ov +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +rX +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +YV +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(93,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +rX +Jq +GK +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +BK +Jq +Jq +Jq +YV +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(94,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +La +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(95,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +nx +nb +nb +nb +nb +nb +nx +nx +nx +nx +nx +nx +nx +nx +BK +Jq +YV +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(96,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +rX +GK +nx +nx +nx +nx +nx +nx +nb +nb +nb +VU +nb +nb +nb +nb +nb +nb +nx +nx +nx +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(97,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Eo +nx +nx +nx +nx +nb +nb +nb +nb +nb +nb +nb +nb +bv +nb +nb +nb +nb +nx +nx +nx +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(98,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Eo +nx +uX +nx +nx +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nx +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(99,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Eo +nx +nx +nx +nx +nb +nb +nb +IJ +IJ +Ty +IJ +IJ +LO +LO +jt +Gm +jt +jt +nb +nb +nx +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(100,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Eo +nx +nx +nb +nb +xm +xm +IJ +IJ +EC +Qs +AV +IJ +By +pn +ew +kf +ch +jt +jt +nb +nx +Ku +nx +nx +BK +YV +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(101,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Eo +nx +nx +nb +nb +xm +xm +Ty +rg +rg +rg +ND +IJ +LO +LO +jt +qF +kf +gH +Gm +nb +nb +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(102,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Eo +nx +nx +nb +nb +xm +xm +Ty +rg +rg +rg +Hz +IJ +Mg +qU +jt +Si +BI +QQ +Gm +nb +nb +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(103,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fv +Bp +Bp +Bp +Bp +Bp +Bp +Eo +nx +nx +bv +nb +xm +xm +Ty +az +qn +rg +rT +IJ +dF +SG +jt +iX +iu +dr +Gm +nb +nb +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(104,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Eo +nx +nx +nb +nb +xm +xm +IJ +IJ +wp +ZF +gr +IJ +Pl +ww +jt +kf +ch +jt +jt +nb +nb +nb +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(105,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +rb +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Eo +nx +nx +nb +nb +xm +xm +IJ +IJ +IJ +ga +IJ +IJ +OF +pa +jt +xu +jt +jt +nb +nb +nb +bv +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(106,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +MC +AC +AC +AC +AC +AC +AC +AC +dh +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +rX +GK +nx +nx +nx +nb +xm +xm +Vk +ZR +fr +XM +WR +zS +Zg +sF +sF +ez +zS +nb +nb +nb +nb +bv +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(107,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +jT +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Eo +nx +nx +nx +nx +nb +xm +Vk +Vk +Dl +vv +vv +MP +zS +Qv +XQ +XQ +sF +vh +nb +nb +nb +nb +bv +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(108,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +rX +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +YV +Bp +Bp +AC +AC +Vx +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +rX +GK +nx +nx +nx +nb +nb +xm +Vk +eX +WR +vv +xr +WR +zS +sF +DD +DD +aL +zS +po +po +po +po +po +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(109,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +En +Bp +Bp +Bp +Bp +Bp +En +rX +GK +nx +nx +nx +nx +nx +nx +nx +nx +nx +BK +Jq +YV +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +rX +GK +nx +nx +nx +nx +nb +tD +tD +eU +vv +vv +vv +KP +gS +zS +sF +up +AQ +sF +Wr +tD +tD +tD +tD +tD +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(110,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Oe +sB +sB +sB +Bp +Eo +Yv +nx +JB +JB +JB +JB +JB +JB +nx +nx +nx +nx +BK +YV +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +rX +Jq +GK +nx +nx +nx +nx +nx +nb +tD +tD +vv +vv +vv +vv +QG +WR +zS +sF +AQ +AQ +sF +sF +tD +tD +tD +tD +tD +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(111,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +Bp +Bp +sB +sB +sB +sB +sB +sB +sB +sB +sB +sB +JB +JB +JB +JB +JB +JB +JB +JB +JB +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +rX +GK +nx +nx +uX +nx +nx +nx +nb +nb +tD +xm +Vk +eX +WR +vv +vv +WR +bi +sF +WK +WK +aL +zS +po +po +po +po +po +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(112,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +Bp +sB +sB +sB +sB +sB +sB +sB +sB +sB +sB +sB +sB +sB +JB +JB +JB +JB +JB +JB +JB +JB +nx +RP +Bp +hX +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +fW +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +rX +Jq +Jq +Jq +Jq +Jq +GK +nx +nx +nx +nx +nx +nx +nb +nb +nb +tD +xm +Vk +Vk +nE +Mx +vv +MP +zS +Qv +XQ +XQ +sF +vh +nb +nb +nb +nb +bv +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(113,1,1) = {" +ok +AC +AC +AC +AC +hC +Bp +Bp +sB +sB +tE +Ut +Ut +Ut +Ut +Ut +Ut +Ut +tE +tE +sB +sB +sB +JB +JB +jH +jH +jH +JB +JB +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +rX +Jq +GK +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nb +nb +nb +nb +tD +xm +xm +Vk +bM +CQ +WR +lr +zS +Xl +sF +sF +pc +zS +nb +nb +nb +nb +bv +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(114,1,1) = {" +ok +AC +AC +AC +AC +Bp +Bp +sB +tE +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +sB +sB +sB +sB +JB +jH +jH +jH +jH +jH +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +rX +Jq +Jq +GK +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nb +nb +nb +bv +nb +nb +tD +xm +xm +sU +sU +sU +iQ +sU +sU +kU +th +kU +kU +kU +kU +nb +nb +nb +bv +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(115,1,1) = {" +ok +AC +AC +AC +AC +Bp +sB +sB +tE +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +sB +sB +sB +jH +jH +jH +jH +jH +Vj +jH +jH +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Eo +nx +nx +nx +nx +nx +uX +nx +nx +nx +nx +nx +nx +nb +nb +nb +nb +nb +tD +tD +tD +tD +xm +xm +sU +sU +Mt +ky +xW +sU +Pu +hU +ZM +hu +hP +kU +kU +nb +nb +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(116,1,1) = {" +ok +AC +AC +AC +AC +Bp +sB +sB +Ut +Ut +Am +Am +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +sB +sB +sB +jH +jH +jH +jH +Vj +Vj +Vj +jH +jH +Bp +ZQ +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +bv +nb +nb +nb +nb +vU +vU +Hf +vU +nb +nb +xm +xm +Qe +bT +Ia +Ia +sq +sU +FW +ZM +ZM +ZM +ZM +cp +hy +nb +nb +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(117,1,1) = {" +ok +AC +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Am +Am +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +tE +tE +jH +jH +jH +Vj +Vj +Vj +Vj +jH +jH +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +re +BR +BR +lC +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nb +vU +yH +mX +vU +nb +nb +xm +xm +Qe +DN +Ia +Ia +sq +sU +es +ZM +ZM +ZM +ZM +zu +hy +nb +nb +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(118,1,1) = {" +ok +AC +AC +AC +Bp +Bp +sB +sB +Ut +Ut +Ut +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +jH +jH +jH +Vj +Vj +Vj +Vj +jH +jH +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +re +BR +lC +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +vU +CT +Yn +vU +bv +nb +xm +xm +Qe +Hm +wH +Ia +sq +sU +AT +ZM +ZM +ZM +ZM +dS +hy +nb +nb +nx +nx +nx +Mv +UJ +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(119,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +sB +Ut +Ut +Ut +Ut +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +jH +Vj +Vj +Vj +jH +Vj +jH +jH +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +re +BR +BR +BR +lC +nx +nx +nx +nx +nx +nx +vU +vU +vU +vU +nb +nb +xm +xm +sU +sU +Hy +ZY +xN +sU +KB +dX +it +cp +Ns +kU +kU +nb +nb +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(120,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Am +Am +Ut +Ut +Ut +Ut +Ut +Vj +Vj +Vj +jH +jH +jH +jH +Bp +Bp +jT +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +re +BR +lC +uX +nx +nx +nx +nx +nx +nx +nx +nb +nb +nb +nb +nb +sU +sU +Qe +sU +sU +kU +hy +hy +hy +kU +kU +nb +nb +nx +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(121,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Am +Am +Am +Ut +Ut +Ut +tE +tE +jH +jH +jH +jH +jH +JB +JB +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +re +BR +BR +BR +lC +nx +nx +nx +nx +nx +nx +nx +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nb +nx +nx +nx +nx +La +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(122,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Am +Am +Ut +Ut +Ut +Ut +tE +tE +jH +jH +jH +jH +JB +JB +JB +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +re +lC +nx +nx +nx +nx +nx +nx +nx +nb +nb +nb +nb +nb +nb +PF +nb +nb +nb +nb +nb +nb +nx +nx +nx +Mv +BR +UJ +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(123,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Am +Am +Ut +Ut +Ut +Ut +tE +tE +jH +jH +JB +dk +JB +JB +Bp +Bp +hC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +re +BR +lC +nx +nx +nx +nx +nx +nx +nx +nb +bv +nb +VU +nb +nb +nb +nb +nb +nx +nx +nx +nx +nx +La +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(124,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Ut +Am +Am +Am +Am +Am +Am +Ut +Ut +Ut +Ut +sB +sB +JB +JB +JB +JB +Bp +Bp +vN +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +re +BR +BR +lC +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +Mv +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(125,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Am +Am +Am +Ut +Ut +Ut +Ut +Ut +Ut +Ut +tE +sB +JB +JB +JB +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Eo +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +Mv +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(126,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Am +Am +Ut +Ut +Ut +Ut +Ut +Ut +Ut +sB +sB +JB +JB +JB +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +lN +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +re +BR +BR +lC +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +nx +Mv +BR +UJ +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(127,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Am +Am +Ut +Ut +Ut +Ut +Ut +Ut +Ut +sB +sB +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +re +BR +BR +BR +BR +BR +BR +BR +BR +BR +BR +BR +UJ +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(128,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +sB +sB +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(129,1,1) = {" +ok +AC +AC +AC +Bp +sB +sB +tE +tE +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +tE +tE +sB +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(130,1,1) = {" +ok +AC +AC +AC +Bp +Bp +sB +sB +sB +sB +tE +tE +tE +tE +Ut +ti +sB +sB +sB +sB +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(131,1,1) = {" +ok +AC +AC +AC +AC +Bp +Bp +Bp +sB +sB +cu +KG +Kw +sB +sB +sB +sB +sB +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(132,1,1) = {" +ok +AC +AC +AC +dh +AC +hX +Bp +Bp +sB +sB +nc +VC +sB +sB +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(133,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +sB +sB +sB +sB +Bp +Bp +jT +AC +AC +AC +AC +fL +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(134,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +Bp +Bp +Bp +Bp +Bp +Bp +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(135,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +hC +AC +AC +AC +AC +AC +hX +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(136,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(137,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(138,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(139,1,1) = {" +ok +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +AC +ok +"} +(140,1,1) = {" +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +ok +"} diff --git a/maps/redgate/islands_underwater.dmm b/maps/redgate/islands_underwater.dmm new file mode 100644 index 0000000000..97c36df611 --- /dev/null +++ b/maps/redgate/islands_underwater.dmm @@ -0,0 +1,22482 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/mob/living/simple_mob/vore/alienanimals/succlet/dark, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"ad" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/red, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"af" = ( +/obj/structure/table/darkglass, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"as" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"ay" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/gambling) +"aH" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"aN" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/syndicate, +/obj/random/tank, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"aP" = ( +/obj/item/flag/catpirate/l, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"aQ" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/meeting) +"aS" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/underwater) +"bb" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"bi" = ( +/obj/structure/table/gold, +/obj/item/weapon/material/knife/ritual, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"bl" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/rainbow, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"bm" = ( +/obj/structure/table/rack/steel, +/obj/random/rigsuit, +/turf/simulated/floor/tiled/milspec, +/area/redgate/islands/divingbay) +"bq" = ( +/turf/simulated/wall/sandstone{ + can_open = 1 + }, +/area/redgate/islands/ruins) +"by" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/gambling) +"bZ" = ( +/obj/structure/closet/grave, +/obj/item/weapon/bone/skull, +/obj/item/weapon/bone/skull, +/obj/item/weapon/bone/skull/tajaran, +/obj/item/weapon/bone/skull/unathi, +/obj/item/weapon/bone/skull/unknown, +/obj/item/clothing/suit/dress/solgov/fleet/sailor, +/obj/random/contraband/nofail, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"cl" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hop, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"cu" = ( +/obj/machinery/light/floortube, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/islands/lavabase) +"cw" = ( +/obj/structure/flora/underwater/grass4, +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"cG" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"cK" = ( +/obj/structure/closet/walllocker_double/north, +/obj/item/weapon/spacecasinocash/c1, +/obj/item/weapon/spacecasinocash/c1, +/obj/item/weapon/spacecasinocash/c1, +/obj/item/weapon/spacecasinocash/c1, +/obj/item/weapon/spacecasinocash/c1, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c10, +/obj/item/weapon/spacecasinocash/c100, +/obj/item/weapon/spacecasinocash/c100, +/obj/item/weapon/spacecasinocash/c100, +/obj/item/weapon/spacecasinocash/c100, +/obj/item/weapon/spacecasinocash/c100, +/obj/item/weapon/spacecasinocash/c100, +/obj/item/weapon/spacecasinocash/c100, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c20, +/obj/item/weapon/spacecasinocash/c20, +/obj/item/weapon/spacecasinocash/c20, +/obj/item/weapon/spacecasinocash/c20, +/obj/item/weapon/spacecasinocash/c200, +/obj/item/weapon/spacecasinocash/c200, +/obj/item/weapon/spacecasinocash/c200, +/obj/item/weapon/spacecasinocash/c200, +/obj/item/weapon/spacecasinocash/c50, +/obj/item/weapon/spacecasinocash/c50, +/obj/item/weapon/spacecasinocash/c50, +/obj/item/weapon/spacecasinocash/c50, +/obj/item/weapon/spacecasinocash/c500, +/obj/item/weapon/spacecasinocash/c500, +/obj/item/weapon/spacecasinocash/c500, +/obj/item/weapon/spacecasinocash/c500, +/obj/item/weapon/spacecasinocash/c500, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"da" = ( +/obj/structure/bed/chair/bay/chair/padded/red{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"db" = ( +/obj/item/weapon/storage/backpack/cultpack, +/obj/structure/grille/broken/cult, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"dc" = ( +/obj/structure/table/rack/shelf, +/obj/random/cargopod, +/obj/random/cigarettes, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"de" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"dj" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"dF" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig2) +"dH" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"dR" = ( +/obj/random/contraband/nofail, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"dT" = ( +/obj/item/weapon/casino_platinum_chip, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"eb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"eD" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/kegs) +"eQ" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"eR" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"eT" = ( +/mob/living/simple_mob/animal/passive/fish/trout, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"eX" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/fountain9, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"eY" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"fa" = ( +/obj/structure/outcrop/gold, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"fg" = ( +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"fi" = ( +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"fq" = ( +/obj/random/crate, +/obj/random/mainttoyloot/nofail, +/obj/random/maintenance/medical, +/obj/random/maintenance/security, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"fA" = ( +/obj/random/mainttoyloot, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"fF" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"fG" = ( +/obj/structure/bed/chair/sofa/corner/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"fK" = ( +/mob/living/simple_mob/vore/alienanimals/succlet/king, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"fL" = ( +/turf/simulated/floor/water/indoors{ + name = "warm pool" + }, +/area/redgate/islands/piratecave) +"fQ" = ( +/obj/random/forgotten_tram, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"fU" = ( +/obj/structure/table/gold, +/obj/item/weapon/coin/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"fZ" = ( +/turf/simulated/floor/lava, +/area/redgate/islands/lavabase) +"ge" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"gf" = ( +/obj/item/stack/material/sandstone, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"gk" = ( +/turf/simulated/floor/wood/alt/broken, +/area/redgate/islands/piratecave) +"gn" = ( +/obj/structure/flora/underwater/seaweed3, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"gC" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"gG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"gM" = ( +/obj/structure/table/rack/shelf, +/obj/random/snack, +/obj/random/snack, +/obj/random/snack, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"hn" = ( +/obj/random/multiple/ore_pile, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"hr" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"ht" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/lavadorm) +"hy" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/backroom) +"hF" = ( +/obj/structure/flora/underwater/plant3, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"hH" = ( +/turf/simulated/wall/wood{ + outdoors = 1 + }, +/area/redgate/islands/underwater) +"hU" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/suit/space/syndicate/black, +/obj/item/clothing/head/helmet/space/syndicate/black, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"hX" = ( +/mob/living/simple_mob/vore/jelly, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"ib" = ( +/obj/structure/sign/flag/catpirate/left, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"ii" = ( +/obj/structure/table/marble, +/obj/item/capture_crystal, +/turf/simulated/floor/water/underwater/ruins, +/area/redgate/islands/underwater) +"ij" = ( +/obj/random/material, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"in" = ( +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"io" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/backroom) +"it" = ( +/obj/structure/flora/underwater/seaweed3, +/obj/structure/flora/underwater/seaweed2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"iz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/robot_parts/head, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"iC" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"iF" = ( +/obj/structure/flora/underwater/grass4, +/obj/structure/flora/underwater/plant3, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"iG" = ( +/obj/structure/flora/rocks2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"iI" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/backroom) +"iK" = ( +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/backroom) +"iT" = ( +/obj/structure/table/gold, +/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced/random, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"iV" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"iY" = ( +/obj/structure/closet/crate/secure/loot, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/snack, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"jc" = ( +/obj/structure/flora/underwater/grass1, +/obj/structure/flora/underwater/seaweed2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"jn" = ( +/obj/structure/prop/statue/sunkensail{ + dir = 8 + }, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"jr" = ( +/obj/structure/loot_pile/surface/bones, +/obj/item/toy/russian_revolver/trick_revolver, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"jv" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"jB" = ( +/obj/structure/table/rack/steel, +/obj/random/tank, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"jD" = ( +/obj/structure/flora/underwater/grass2, +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"jO" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"jR" = ( +/obj/structure/loot_pile/mecha/ripley/random_sprite, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"jX" = ( +/obj/machinery/button/windowtint{ + id = "WaterWindow1"; + pixel_x = 20; + pixel_y = 21 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 32 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"ka" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -32 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"kb" = ( +/mob/living/simple_mob/vore/alienanimals/skeleton/alt{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"kl" = ( +/obj/random/vendordrink, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/righall) +"ko" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"kp" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/righall) +"ku" = ( +/obj/item/clothing/suit/pirate, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"kH" = ( +/obj/structure/bed/double/padded{ + color = "#FFD700" + }, +/obj/item/weapon/bedsheet/yellowdouble, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"kJ" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig2) +"kK" = ( +/obj/item/toy/plushie/carp/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"li" = ( +/obj/item/clothing/under/pirate, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"lk" = ( +/obj/structure/closet/walllocker_double/kitchen/west, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass, +/obj/item/weapon/reagent_containers/food/drinks/glass2/carafe, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/metaglass/metapint, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"lq" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"lv" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"lx" = ( +/obj/effect/fake_sun/underwater, +/turf/unsimulated/wall/planetary/normal/virgo4, +/area/redgate/islands/underwater) +"lA" = ( +/obj/item/stack/material/wood, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"lB" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/mask/gas/half{ + name = "diving mask" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"lE" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 4 + }, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"lM" = ( +/obj/structure/table/gold, +/obj/fiftyspawner/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"lS" = ( +/obj/item/seeds/goldappleseed, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"lU" = ( +/obj/machinery/robotic_fabricator, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"lW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/obj/item/clothing/under/pants/khaki, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"lX" = ( +/obj/structure/flora/underwater/grass3, +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"me" = ( +/obj/item/clothing/accessory/hawaiian_random, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"mh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/gambling) +"mj" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/kegs) +"mp" = ( +/obj/structure/flora/underwater/plant1, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"mz" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"mH" = ( +/obj/structure/table/bench/steel, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"mL" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 4 + }, +/obj/item/clothing/under/dress/goldwrap, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"mT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/shower) +"mX" = ( +/obj/random/plushie, +/obj/item/stack/material/concrete, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"mZ" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig2) +"na" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"nk" = ( +/obj/item/clothing/head/plaguedoctorhat/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"nA" = ( +/mob/living/simple_mob/vore/alienanimals/succlet, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"nF" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"nH" = ( +/obj/item/clothing/accessory/collar/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"ob" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/rig2) +"of" = ( +/obj/structure/flora/underwater/grass2, +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"oq" = ( +/obj/fiftyspawner/sandstone, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"oy" = ( +/obj/structure/fans, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"oJ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/sheerblue, +/obj/random/maintenance/research, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"oQ" = ( +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig2) +"oR" = ( +/obj/item/clothing/suit/cultrobes, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"oS" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"pg" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/divingbay) +"pi" = ( +/obj/item/clothing/head/hgpiratecap, +/obj/structure/table/woodentable, +/obj/item/clothing/suit/hgpirate, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"pp" = ( +/obj/structure/flora/bboulder1, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"pq" = ( +/obj/random/maintenance/morestuff, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"pA" = ( +/obj/item/stack/material/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"pK" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"pY" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -13 + }, +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"qb" = ( +/obj/structure/table/glass, +/obj/item/weapon/newspaper, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"qk" = ( +/obj/random/material, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"ql" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"qn" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/sword/sabre, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"qo" = ( +/obj/structure/prop/war/warhead4{ + desc = "A water worn warhead of some kind, it appears that the priming mechanism has been removed or lost." + }, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"qq" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"qA" = ( +/obj/structure/grille, +/obj/structure/window/titanium/full, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/redgate/islands/lavadorm) +"qF" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/backroom) +"qL" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"qP" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"qY" = ( +/obj/item/clothing/gloves/ring/material/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"rk" = ( +/obj/structure/flora/underwater/grass4, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"rl" = ( +/obj/random/pouch, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"rn" = ( +/obj/structure/table/rack{ + color = "#FFD700" + }, +/obj/item/weapon/soap/golden_soap, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"rq" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"rs" = ( +/obj/random/projectile/scrapped_grenadelauncher, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"ru" = ( +/obj/structure/casino_table/craps, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"rJ" = ( +/obj/structure/prop/machine/von_krabin, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"rV" = ( +/obj/structure/flora/underwater/grass1, +/obj/structure/flora/underwater/plant3, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"rW" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/underwater) +"rX" = ( +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"sd" = ( +/obj/item/clothing/under/dress/golddress, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"sh" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/tank/air, +/obj/item/clothing/mask/gas/half{ + name = "diving mask" + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"sj" = ( +/obj/item/prop/alien/junk, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"sk" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"sF" = ( +/obj/item/weapon/reagent_containers/food/snacks/packaged/vendhotdog, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"sH" = ( +/obj/machinery/door/airlock/gold{ + locked = 1 + }, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"sR" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/piratedouble, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/backroom) +"tb" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/righall) +"tk" = ( +/obj/structure/sign/flag/catpirate, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"tl" = ( +/obj/structure/table/woodentable, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"ts" = ( +/obj/item/weapon/pickaxe/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"tv" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"tA" = ( +/obj/machinery/light/floortube, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"tC" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/righall) +"tH" = ( +/obj/random/maintenance/morestuff, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"tI" = ( +/obj/structure/bed/chair/sofa/corp/right, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"tO" = ( +/obj/item/clothing/suit/cultrobes/alt, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"tQ" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/sundress, +/obj/random/soap, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"tU" = ( +/turf/simulated/wall/r_wall, +/area/redgate/islands/robotics) +"tV" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig1) +"tW" = ( +/obj/random/junk, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"tX" = ( +/obj/structure/reagent_dispensers/cookingoil, +/obj/machinery/light/small, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/kegs) +"tY" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/lavabase) +"ud" = ( +/obj/structure/closet, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/blue, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"uf" = ( +/obj/structure/flora/underwater/plant5, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"ug" = ( +/obj/structure/casino_table, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"uk" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"un" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/kegs) +"uq" = ( +/obj/structure/closet, +/obj/random/janusmodule, +/obj/item/mecha_parts/part/janus_head, +/obj/random/material/refined, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"us" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"ux" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"uC" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"uD" = ( +/obj/structure/sink{ + color = "#FFD700"; + name = "golden sink"; + pixel_y = 18 + }, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"uK" = ( +/obj/item/weapon/bluespace_crystal, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"uN" = ( +/obj/structure/flora/underwater/grass4, +/obj/structure/flora/underwater/plant2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"uQ" = ( +/obj/item/clothing/mask/bandana/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"uS" = ( +/obj/structure/flora/underwater/plant2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"uX" = ( +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"vb" = ( +/obj/item/trash/vegration, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"vc" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"vy" = ( +/obj/item/paint_palette, +/obj/item/paint_brush, +/obj/structure/table/marble, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"vF" = ( +/obj/structure/table/rack/shelf, +/obj/random/pouch, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"vG" = ( +/mob/living/simple_mob/vore/alienanimals/succlet/big, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"vH" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/lavabase) +"vP" = ( +/obj/structure/constructshell/cult, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"vR" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"wc" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"wk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/milspec, +/area/redgate/islands/divingbay) +"wl" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"wm" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"wp" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/sparerooms) +"wr" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/islands/lavagear) +"wv" = ( +/obj/structure/table/glass, +/obj/random/donkpocketbox, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"wG" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"wJ" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/lavadorm) +"wN" = ( +/turf/simulated/floor/greengrid, +/area/redgate/islands/lavabase) +"xa" = ( +/obj/item/weapon/material/twohanded/baseballbat/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"xg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "WaterWindow2" + }, +/turf/simulated/floor/plating, +/area/redgate/islands/rig2) +"xm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"xz" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"xC" = ( +/obj/structure/grille/cult, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"xI" = ( +/obj/structure/prop/war/tgmc_30mm, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"xJ" = ( +/obj/structure/toilet{ + color = "#FFD700"; + name = "golden toilet"; + pixel_y = 11 + }, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"xW" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"yb" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig2) +"yd" = ( +/obj/machinery/optable, +/obj/item/device/robotanalyzer, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/islands/robotics) +"yl" = ( +/obj/structure/flora/underwater/grass2, +/obj/item/clothing/head/hood_vr/hotdog_hood, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"ym" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"ys" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"yv" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"yB" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"yH" = ( +/obj/structure/foodcart, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"yU" = ( +/obj/structure/closet/secure_closet/personal, +/obj/random/mainttoyloot, +/obj/item/clothing/head/hardhat/red, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"zg" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/kegs) +"zn" = ( +/turf/simulated/wall/titanium, +/area/redgate/islands/lavadorm) +"zo" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"zr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/gambling) +"zt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "WaterWindow1" + }, +/turf/simulated/floor/plating, +/area/redgate/islands/rig1) +"zw" = ( +/turf/simulated/wall/cult, +/area/redgate/islands/cult) +"zE" = ( +/obj/item/weapon/reagent_containers/food/snacks/old/hotdog, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"zK" = ( +/obj/machinery/door/airlock/silver{ + id_tag = "VolcanoDorm"; + name = "Dorm Room" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"zM" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig2) +"zT" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"zZ" = ( +/obj/structure/bed/chair/sofa/corner/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Ab" = ( +/obj/effect/rune, +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Ai" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"An" = ( +/obj/structure/table/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"Ap" = ( +/obj/structure/flora/underwater/grass4, +/obj/structure/flora/underwater/seaweed3, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"AF" = ( +/obj/item/stack/material/concrete, +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"AH" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"AR" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"Bl" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/down, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"Bn" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"Bu" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/backroom) +"Bw" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "WaterDorm1"; + pixel_x = -27; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig1) +"BK" = ( +/obj/random/roguemineloot, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"BQ" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"BT" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "WaterDorm1"; + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig1) +"BW" = ( +/obj/structure/bed/chair/office{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"BZ" = ( +/obj/structure/table/rack/steel, +/obj/random/grenade/less_lethal, +/obj/random/grenade/less_lethal, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"Ck" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"Cn" = ( +/obj/structure/prop/rock/crystal, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Cs" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/mask/gas/half{ + name = "diving mask" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"CA" = ( +/obj/fiftyspawner/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"CD" = ( +/obj/machinery/door/airlock/hatch{ + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"CE" = ( +/obj/structure/bed/chair/office/dark, +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"CH" = ( +/turf/simulated/floor/water/underwater/wood, +/area/redgate/islands/underwater) +"CJ" = ( +/obj/item/stack/material/wood, +/turf/simulated/floor/water/underwater/wood, +/area/redgate/islands/underwater) +"CM" = ( +/obj/item/weapon/ore/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"CN" = ( +/obj/structure/loot_pile/surface/drone, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"CQ" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig2) +"CV" = ( +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"CY" = ( +/obj/item/clothing/head/culthood/alt, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"De" = ( +/obj/machinery/shower{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"Dg" = ( +/obj/structure/prop/statue/pillar/dark, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"Dt" = ( +/obj/structure/prop/machine/tgmc_console5, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"DF" = ( +/obj/item/weapon/material/shard/titaniumglass, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"DJ" = ( +/obj/structure/table/glass, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"DK" = ( +/obj/item/weapon/coin/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"DM" = ( +/obj/random/projectile/scrapped_flechette, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"DP" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"DU" = ( +/obj/structure/flora/underwater/grass1, +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"DW" = ( +/obj/item/weapon/reagent_containers/food/snacks/packaged/meatration, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"DZ" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"Ec" = ( +/obj/random/multiple/random_size_crate/no_weapons, +/turf/simulated/floor/water/underwater/wood, +/area/redgate/islands/underwater) +"Eg" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/up, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Ej" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"El" = ( +/obj/machinery/vending/wardrobe/bardrobe, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/backroom) +"Eo" = ( +/obj/random/maintenance/misc, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Ep" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Eq" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"Er" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"ER" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/rig1) +"EU" = ( +/turf/simulated/wall/r_wall, +/area/redgate/islands/lavabase) +"EX" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"EY" = ( +/obj/fiftyspawner/marble, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Fe" = ( +/obj/structure/sign/flag/catpirate/right, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"Ff" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"Fw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"FD" = ( +/obj/structure/flora/underwater/grass4, +/obj/random/coin, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"FH" = ( +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"FK" = ( +/obj/random/material/refined, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"FP" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"FR" = ( +/obj/random/material, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"FV" = ( +/obj/random/fishing_junk, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"FZ" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"Go" = ( +/obj/structure/closet/cabinet, +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"Gs" = ( +/obj/structure/dirtybed, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"Gv" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Gz" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"GC" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/lavadorm) +"GE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/gun/projectile/pirate, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"GL" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"GN" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/mess) +"GO" = ( +/obj/structure/table/alien, +/obj/random/weapon/guarenteed, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/islands/lavabase) +"GP" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"GQ" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"GY" = ( +/obj/structure/closet, +/obj/random/maintenance/engineering, +/obj/random/maintenance/misc, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"Hn" = ( +/obj/structure/table/marble, +/obj/item/capture_crystal/random, +/turf/simulated/floor/water/underwater/ruins, +/area/redgate/islands/underwater) +"Ho" = ( +/obj/structure/bed/chair/bay/chair/padded/red{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Hq" = ( +/obj/structure/bed/chair/bay/chair/padded/red{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Hx" = ( +/obj/structure/flora/underwater/grass3, +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"HI" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/random/cutout, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"HM" = ( +/obj/random/trash_pile, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"HU" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"Iv" = ( +/obj/structure/cult/talisman, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"IA" = ( +/obj/structure/flora/underwater/grass2, +/obj/structure/flora/underwater/plant2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"IE" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/cult) +"IS" = ( +/obj/item/clothing/shoes/boots/tactical, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"IY" = ( +/obj/structure/table/rack/shelf, +/obj/random/medical/pillbottle, +/obj/random/medical/pillbottle, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"Jl" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/righall) +"Jq" = ( +/obj/structure/bed/chair/sofa/right/brown{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Ju" = ( +/turf/simulated/floor/tiled/milspec, +/area/redgate/islands/divingbay) +"JE" = ( +/obj/structure/flora/underwater/grass4, +/obj/structure/flora/underwater/plant5, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"JP" = ( +/obj/structure/table/steel_reinforced, +/obj/random/mug, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"Ka" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"Kd" = ( +/turf/simulated/wall/r_wall, +/area/redgate/islands/lavagear) +"Kg" = ( +/obj/machinery/vending/deluxe_boozeomat, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"KB" = ( +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"KM" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/milspec, +/area/redgate/islands/divingbay) +"KV" = ( +/obj/structure/table/woodentable, +/obj/item/ammo_magazine/s45/rubber, +/obj/item/weapon/gun/projectile/revolver/detective45, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/backroom) +"KX" = ( +/obj/structure/casino_table/blackjack_m, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"Lm" = ( +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"Lo" = ( +/obj/structure/flora/bboulder2, +/obj/random/instrument, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Lt" = ( +/obj/item/weapon/paper/alien, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Lu" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/random/soap, +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"Lw" = ( +/obj/machinery/button/windowtint{ + id = "WaterWindow2"; + pixel_x = 20; + pixel_y = 21 + }, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 32 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig2) +"Lx" = ( +/obj/structure/table/woodentable, +/obj/random/drinksoft, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"LB" = ( +/obj/item/instrument/violin/golden, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"LG" = ( +/obj/item/clothing/shoes/cult, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"LJ" = ( +/obj/structure/casino_table/roulette_long, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"LP" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 4 + }, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"LU" = ( +/obj/structure/closet, +/obj/random/powercell/device, +/obj/random/powercell/device, +/obj/random/powercell, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply/nofail, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"LX" = ( +/obj/structure/bed/chair/office{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"Mb" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"Mh" = ( +/obj/structure/bed/chair/sofa/left/brown{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Mj" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"Mn" = ( +/obj/structure/flora/underwater, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Mq" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/gambling) +"Mr" = ( +/turf/simulated/floor/water/underwater/woodbroken, +/area/redgate/islands/underwater) +"Mx" = ( +/obj/structure/flora/smallbould, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Mz" = ( +/obj/structure/prop/statue/pillar, +/turf/simulated/floor/water/underwater/ruins, +/area/redgate/islands/underwater) +"MA" = ( +/obj/structure/casino_table/roulette_table/long, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"ME" = ( +/mob/living/simple_mob/mechanical/hivebot/support/harry, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"MH" = ( +/obj/random/multiple/underdark/ores, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"MO" = ( +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"MU" = ( +/mob/living/simple_mob/vore/jelly, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/cult) +"Nb" = ( +/obj/random/material, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"Nw" = ( +/obj/random/cutout, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"NC" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/kegs) +"NG" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"NP" = ( +/obj/structure/table/rack/shelf, +/obj/random/plushie, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"NV" = ( +/turf/simulated/wall/solidrock/mossyrockpoi, +/area/redgate/islands/underwater) +"NX" = ( +/obj/structure/prop/machine/tgmc_console3/starts_on, +/obj/machinery/computer/security/telescreen{ + pixel_x = 16; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"Oe" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig2) +"Oh" = ( +/obj/random/material/precious, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"Ol" = ( +/obj/structure/bed/chair/office{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"Ov" = ( +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"Ow" = ( +/obj/item/trash/smolhotdog, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Oz" = ( +/obj/structure/table/gold, +/obj/item/weapon/ore/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"OA" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/piratecave) +"OF" = ( +/obj/item/clothing/shoes/cult, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"OH" = ( +/obj/effect/decal/mecha_wreckage/janus, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"OI" = ( +/obj/machinery/media/jukebox/hacked, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"OR" = ( +/obj/random/material/precious, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"OT" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/shower) +"OU" = ( +/obj/structure/prop/rock/crystal_dust, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Pg" = ( +/obj/structure/prop/rock/flat, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Pm" = ( +/obj/item/stack/material/concrete, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Pr" = ( +/obj/item/clothing/accessory/bracelet/material/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"Px" = ( +/obj/structure/flora/underwater/seaweed2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Py" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"PN" = ( +/obj/structure/table/woodentable, +/obj/random/medical/lite, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/backroom) +"PO" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"PP" = ( +/obj/random/vendorfood, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"PW" = ( +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"PY" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/backroom) +"Qf" = ( +/obj/structure/bed/chair/sofa/right/brown, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Qq" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"Qs" = ( +/obj/random/grenade/less_lethal, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Qv" = ( +/obj/structure/table/rack/shelf, +/obj/random/medical, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"Qy" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/kegs) +"QC" = ( +/obj/structure/grille/broken/cult, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"QE" = ( +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/gambling) +"QF" = ( +/obj/item/weapon/handcuffs/cable/plantfiber, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"QM" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"QP" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"QW" = ( +/obj/structure/cult/tome, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"QZ" = ( +/obj/item/stack/cable_coil/random_belt, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Ri" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Rj" = ( +/obj/structure/flora/underwater/grass3, +/obj/random/forgotten_tram, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Ro" = ( +/obj/fiftyspawner/sandstone, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"Rr" = ( +/obj/structure/dispenser, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"Ru" = ( +/obj/machinery/suit_cycler/prototype, +/turf/simulated/floor/tiled/milspec, +/area/redgate/islands/divingbay) +"Rw" = ( +/obj/item/stack/material/plasteel, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"RA" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"RC" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"RF" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"RJ" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"RN" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/jacket/gambler, +/obj/item/clothing/under/suit_jacket/gambler, +/obj/item/clothing/shoes/flats, +/obj/item/weapon/gun/energy/sickshot, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"RR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"RT" = ( +/obj/random/crate, +/obj/random/maintenance/security, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"RV" = ( +/obj/structure/table/rack/shelf, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/storeroom) +"RW" = ( +/obj/item/clothing/mask/gas/plaguedoctor/gold, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"RY" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "VolcanoDorm"; + pixel_y = -24; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"Sd" = ( +/obj/structure/flora/underwater/plant5, +/obj/random/maintenance/security, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Se" = ( +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"Sh" = ( +/obj/structure/closet/walllocker_double/west, +/obj/random/toolbox, +/obj/random/toolbox, +/obj/random/tool/power, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"Sl" = ( +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Su" = ( +/obj/item/weapon/aliencoin/gold, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Sx" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig1) +"Sy" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"Sz" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/islands/divingbay) +"SA" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"SB" = ( +/obj/structure/flora/rocks1, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"SC" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"SH" = ( +/obj/structure/casino_table/blackjack_r, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"SI" = ( +/turf/simulated/floor/water/underwater/ruins, +/area/redgate/islands/underwater) +"SL" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/kegs) +"SM" = ( +/obj/structure/flora/underwater/grass2, +/obj/item/clothing/suit/storage/hooded/foodcostume/hotdog, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Th" = ( +/obj/structure/bed/chair/bay/chair/padded/red{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Ti" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"To" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"Tt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/organ/internal/robotic/heatsink, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"Tx" = ( +/obj/random/flashlight, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Ty" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig1) +"TA" = ( +/obj/structure/flora/underwater/grass1, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"TB" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/redgate/islands/divingbay) +"TH" = ( +/obj/structure/table/rack/steel, +/obj/random/projectile/scrapped_ionrifle, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"TN" = ( +/turf/simulated/wall/wood{ + can_open = 1 + }, +/area/redgate/islands/storeroom) +"TX" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/modjump2, +/obj/random/maintenance/medical, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"TY" = ( +/turf/simulated/wall/sandstone, +/area/redgate/islands/ruins) +"Uk" = ( +/obj/item/clothing/head/culthood, +/turf/simulated/floor/water/underwater/cult, +/area/redgate/islands/cult) +"Ul" = ( +/turf/simulated/wall/solidrock, +/area/redgate/islands/underwatercave) +"Um" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig2) +"Uo" = ( +/obj/random/tool/alien, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Ur" = ( +/obj/machinery/door/window, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"Us" = ( +/obj/random/multiple/minevault, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Uy" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/purple, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/sparerooms) +"UC" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/lavadorm) +"UF" = ( +/obj/structure/flora/underwater/grass3, +/obj/item/clothing/head/sunflower_crown, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"UI" = ( +/obj/item/weapon/paper/sec_ticket, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"UO" = ( +/obj/structure/sign/warning/lava{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavabase) +"US" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/islands/lavadorm) +"UX" = ( +/obj/random/maintenance/security, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Vg" = ( +/mob/living/simple_mob/vore/oregrub/lava, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/lavabase) +"Vl" = ( +/obj/structure/atmospheric_retention_field, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"Vn" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/righall) +"Vr" = ( +/obj/random/multiple/minevault, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"Vt" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/islands/lavabase) +"Vu" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"Vw" = ( +/obj/structure/casino_table/blackjack_l, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/islands/gambling) +"Vz" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "WaterDorm2"; + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig2) +"VM" = ( +/obj/machinery/shower{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/old_tile, +/area/redgate/islands/shower) +"Wd" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/backroom) +"Wg" = ( +/obj/item/broken_device/random, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Wj" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/islands/robotics) +"Wq" = ( +/obj/item/weapon/paperplane, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/meeting) +"Wx" = ( +/obj/item/weapon/material/knife/tacknife/boot, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"WB" = ( +/obj/random/flashlight, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"WH" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/righall) +"Xa" = ( +/obj/structure/bed/chair/sofa/brown{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Xd" = ( +/obj/item/clothing/head/pirate, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/piratecave) +"Xk" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/islands/gambling) +"Xl" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"Xp" = ( +/mob/living/simple_mob/animal/space/carp/large/huge/vorny, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) +"Xv" = ( +/turf/simulated/wall/wood, +/area/redgate/islands/storeroom) +"Xx" = ( +/turf/simulated/wall/iron, +/area/redgate/islands/righall) +"XD" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"XI" = ( +/obj/item/weapon/tank/air, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"XM" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"XS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/gamblingbackroom) +"XU" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"XW" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/robotics) +"XX" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/islands/bar) +"XZ" = ( +/obj/structure/table/gold, +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"Yd" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Airlock" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/divingbay) +"Yf" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "WaterDorm2"; + pixel_x = -27; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/rig2) +"Yq" = ( +/turf/unsimulated/wall/planetary/normal/virgo4, +/area/redgate/islands/underwater) +"YA" = ( +/obj/random/multiple/corp_crate/no_weapons, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/islands/divingbay) +"YB" = ( +/obj/item/trash/genration, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/underwatercave) +"YM" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/carpet/blue2, +/area/redgate/islands/rig1) +"Za" = ( +/obj/structure/sink{ + pixel_y = 18 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/islands/lavadorm) +"Zb" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/islands/piratecave) +"Zm" = ( +/obj/structure/table/bench/steel, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/islands/lavagear) +"Zo" = ( +/turf/simulated/floor/plating, +/area/redgate/islands/underwater) +"Zt" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/islands/backroom) +"Zx" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/dark, +/area/redgate/islands/mess) +"ZI" = ( +/obj/structure/table/rack/steel, +/obj/random/multiple/voidsuit/vintage, +/turf/simulated/floor/tiled/milspec, +/area/redgate/islands/divingbay) +"ZQ" = ( +/obj/random/junk, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/islands/ruins) +"ZV" = ( +/obj/structure/flora/underwater/seaweed1, +/turf/simulated/floor/water/underwater, +/area/redgate/islands/underwater) + +(1,1,1) = {" +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +lx +"} +(2,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(3,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(4,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +qo +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(5,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fa +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(6,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +DF +Sl +Sl +Sl +sj +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(7,1,1) = {" +Yq +Sl +Sl +Sl +fQ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Rw +Sl +Sl +Wg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Yq +"} +(8,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +jR +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fa +oq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +DF +Sl +Sl +Sl +Sl +Sl +uX +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(9,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Lt +DF +Sl +DF +Sl +Sl +Wg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(10,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +TY +Bn +Bn +TY +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Su +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Wg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(11,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +TY +KB +KB +TY +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +DF +Sl +Sl +Sl +DF +Uo +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(12,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +NV +aS +aS +TY +KB +KB +TY +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Wg +Sl +Sl +Sl +Rw +Sl +sj +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +OT +pg +pg +Sz +Sz +Sz +pg +pg +pg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(13,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +TY +gf +KB +TY +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +fg +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +OT +OT +pg +oy +XD +XD +XD +Cs +pg +pg +pg +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(14,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +TY +TY +TY +TY +KB +KB +TY +TY +TY +TY +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +xI +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Sl +Sl +OT +OT +Ur +pg +Ff +XD +XD +XD +lB +pg +Ru +pg +pg +Sl +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Pm +Sl +Sl +Sl +Sl +Sl +Yq +"} +(15,1,1) = {" +Yq +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +TY +KB +KB +KB +KB +KB +KB +KB +KB +TY +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +it +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +Zo +Zo +Zo +Zo +Zo +rW +Sl +Sl +Sl +OT +OT +pY +Ov +pg +Ff +XD +XD +XD +lB +pg +Ju +Ju +pg +pg +Sl +Sl +Sl +rW +Zo +Zo +Zo +Zo +Zo +rW +Sl +Wx +RJ +Sl +Sl +Sl +Sl +Sl +Yq +"} +(16,1,1) = {" +Yq +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +TY +KB +KB +Ro +KB +KB +KB +pA +KB +TY +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +pp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +PW +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Sl +OT +VM +Ov +zo +pg +Ff +XD +XD +XD +jB +pg +TB +Ju +bm +pg +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Sl +Sl +rX +Sl +Sl +Sl +Yq +"} +(17,1,1) = {" +Yq +Sl +Sl +aS +aS +TY +TY +TY +TY +TY +TY +sd +KB +KB +KB +KB +KB +KB +KB +TY +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fa +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +Sl +Sl +Sl +OT +VM +Ov +Ov +pg +Gz +XD +XD +XD +XD +wk +Ju +Ju +ZI +pg +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +me +SB +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(18,1,1) = {" +Yq +Sl +Sl +Sl +aS +TY +KB +nH +KB +KB +TY +KB +nA +KB +An +Oz +KB +KB +KB +TY +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +Sl +Sl +Sl +OT +De +rq +Lu +pg +Rr +XD +jO +XD +YA +pg +KM +KM +ZI +pg +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +Sl +Sl +Sl +RJ +Pm +Sl +Sl +Sl +Yq +"} +(19,1,1) = {" +Yq +Sl +Sl +Sl +aS +TY +KB +KB +DK +KB +Bn +KB +KB +KB +fU +An +KB +KB +CM +TY +TY +TY +TY +TY +TY +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +OT +OT +mT +OT +pg +pg +pg +Yd +pg +pg +pg +pg +pg +pg +pg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(20,1,1) = {" +Yq +Sl +Sl +Sl +aS +TY +kH +KB +kK +KB +TY +qP +KB +KB +KB +KB +KB +Ro +nA +TY +SA +KB +KB +KB +TY +aS +aS +aS +hF +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Xx +kp +Jl +tC +Jl +Jl +Jl +Jl +WH +aQ +gC +gC +gC +gC +aQ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +QZ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(21,1,1) = {" +Yq +Sl +Sl +Sl +aS +TY +TY +TY +TY +TY +TY +KB +Ro +KB +pA +KB +KB +KB +KB +Bn +KB +KB +KB +KB +TY +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +pp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tH +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Xx +kl +Jl +Jl +Vn +Jl +Jl +Jl +tb +aQ +QM +LX +LX +gC +aQ +Sl +Sl +Sl +Sl +Sl +Pm +CE +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(22,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +TY +KB +qP +KB +TY +HM +KB +KB +KB +KB +KB +KB +KB +TY +KB +ZQ +KB +CM +TY +aS +aS +aS +aS +uS +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +GN +GN +GN +GN +RR +GN +GN +Jl +Jl +ge +gC +eX +Eq +gC +aQ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tW +Sl +Sl +rX +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(23,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +TY +KB +KB +KB +TY +TY +TY +TY +TY +TY +TY +Bn +TY +TY +KB +KB +KB +CM +TY +aS +aS +aS +aS +Sl +Sl +Sl +Sl +rk +Sl +Sl +FV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +Sl +Sl +Sl +GN +PP +EX +EX +EX +DJ +GN +Jl +Jl +aQ +eQ +Eq +JP +gC +aQ +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +AF +Sl +Sl +Sl +RC +Sl +Sl +Sl +Yq +"} +(24,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +TY +KB +ts +KB +TY +KB +KB +KB +ZQ +KB +TY +KB +KB +TY +KB +DK +nA +qP +TY +aS +aS +aS +aS +aS +mp +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +Sl +Sl +Sl +GN +yU +EX +EX +EX +wv +GN +Jl +Jl +aQ +gC +BW +BW +Wq +aQ +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +Sl +MO +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(25,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +TY +KB +ab +KB +Bn +KB +KB +KB +KB +KB +Bn +KB +KB +TY +KB +HM +KB +KB +TY +aS +aS +aS +aS +aS +TA +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Sl +GN +lW +EX +SC +EX +Zx +GN +Jl +Jl +aQ +QM +gC +gC +gC +aQ +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(26,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +TY +CA +KB +ZQ +TY +lE +LP +KB +lE +LP +TY +KB +KB +TY +TY +TY +TY +TY +TY +TY +TY +aS +aS +aS +PW +Sl +ZV +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +Zo +Zo +Zo +Zo +Zo +rW +Sl +Sl +Sl +GN +GN +GN +Ol +Ol +GN +GN +Jl +tb +aQ +gC +gC +aQ +aQ +aQ +Sl +Sl +Sl +rW +Zo +Zo +Zo +Zo +Zo +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(27,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +TY +KB +KB +KB +TY +KB +KB +KB +KB +KB +TY +nA +KB +KB +KB +KB +KB +KB +KB +KB +TY +aS +aS +aS +Sl +Sl +PW +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +rk +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Sl +Sl +Sl +GN +Zx +qb +GN +Jl +Jl +Jl +aQ +ud +GY +aQ +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +Zo +Zo +rW +rW +Sl +Sl +Sl +mX +Sl +Sl +Sl +Sl +Yq +"} +(28,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +TY +TY +TY +sH +TY +mL +LP +KB +lE +LP +TY +KB +ZQ +KB +KB +KB +KB +pA +KB +nA +TY +TY +TY +aS +aS +Sl +Sl +rk +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +ER +ER +ER +ER +BT +ob +Vz +ob +ob +ob +ob +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +Zo +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(29,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +aS +TY +HU +KB +TY +KB +KB +vG +KB +KB +TY +TY +TY +TY +TY +TY +TY +TY +KB +KB +TY +Pr +TY +TY +aS +TA +uS +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Eo +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ER +Sx +Ty +Bw +tV +ob +Oe +Yf +dF +kJ +ob +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rW +rW +rW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(30,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +aS +TY +KB +fK +TY +lE +LP +KB +lE +LP +TY +KB +TY +KB +KB +FK +KB +TY +KB +KB +Bn +DK +Oh +TY +aS +Sl +fg +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ER +tI +Er +Er +Er +ob +yb +yb +yb +zM +ob +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(31,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +aS +TY +xa +KB +TY +KB +KB +KB +KB +KB +TY +LB +TY +KB +nk +KB +KB +TY +DK +KB +TY +TY +TY +TY +aS +Sl +PW +TA +Sl +Sl +Sl +fQ +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ER +YM +CV +CV +CV +ob +oQ +oQ +oQ +mZ +ob +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(32,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +aS +TY +iT +lM +TY +KB +An +XZ +fU +KB +TY +lS +TY +nA +KB +KB +qY +TY +KB +KB +TY +aS +aS +aS +aS +TA +Sl +Sl +Sl +Sl +Sl +uS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ER +vR +jX +yv +xm +ob +Um +Lw +oQ +CQ +ob +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(33,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +aS +TY +TY +TY +TY +FR +KB +Nw +KB +KB +TY +KB +TY +rl +KB +KB +KB +TY +KB +KB +TY +aS +aS +aS +mp +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ER +ER +zt +zt +ER +ob +ob +xg +xg +ob +ob +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(34,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +TY +TY +TY +TY +TY +TY +TY +bq +TY +TY +Bn +TY +TY +TY +KB +KB +TY +aS +aS +aS +TA +Sl +Sl +fg +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(35,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +TY +xJ +KB +rn +TY +RW +KB +KB +KB +KB +KB +TY +HM +KB +KB +TY +aS +aS +aS +Sl +PW +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +rk +PW +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(36,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +TY +uD +KB +KB +Bn +KB +KB +An +KB +KB +KB +Bn +KB +KB +KB +TY +aS +aS +aS +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Ab +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +rk +TA +fg +Ap +Sl +SB +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(37,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +TY +TY +TY +TY +TY +KB +KB +bi +nA +KB +KB +TY +TY +TY +TY +TY +aS +aS +hF +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +rk +Sl +IA +fg +Sl +fg +Sl +rk +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(38,1,1) = {" +Yq +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +TY +KB +KB +Oz +KB +uQ +KB +TY +aS +aS +aS +aS +aS +Sl +fg +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +jc +rk +iF +Sl +rk +Sl +rk +TA +fg +mp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(39,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +TY +qP +KB +KB +KB +KB +TY +TY +aS +aS +aS +aS +Sl +mp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +fg +Sl +fg +uf +fg +uS +Sl +PW +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(40,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +TY +TY +TY +TY +TY +TY +TY +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +fg +mp +rk +rk +TA +fg +fg +rk +Sl +Sl +fg +rk +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(41,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +TA +ql +fg +IA +TA +Sl +PW +TA +rk +Sl +PW +gn +TA +PW +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(42,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +hF +fg +PW +fQ +uS +rk +TA +Sl +Sl +fg +Sl +Sl +PW +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Qs +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(43,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Px +RC +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Mx +TA +rk +TA +Px +fg +TA +hF +rk +fg +PW +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(44,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +TA +JE +rk +Sl +fg +ZV +rk +Mx +fg +rk +rk +ZV +rk +Sl +PW +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +tH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(45,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +rk +gn +rk +uN +Sl +rk +fg +uS +rk +TA +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(46,1,1) = {" +Yq +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +fa +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +rk +fg +fg +mp +TA +rk +Sl +PW +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(47,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +fg +rV +fg +PW +TA +Sl +rk +Sl +rk +rk +Sl +fg +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(48,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ij +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +rk +uf +rk +Sl +rk +TA +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +pp +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Us +Sl +Sl +Sl +Sl +Yq +"} +(49,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(50,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hF +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(51,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +uf +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(52,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +hH +hH +Sl +lA +Sl +Sl +lA +Sl +Sl +Sl +lA +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +fi +fi +IE +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(53,1,1) = {" +Yq +Sl +Sl +Sl +Sl +hH +hH +Mr +Sl +Sl +Sl +Sl +Sl +mz +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ij +Sl +Sl +Sl +aS +aS +aS +aS +aS +IE +fi +fi +IE +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(54,1,1) = {" +Yq +Sl +Sl +Sl +hH +hH +Ec +CH +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ql +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +IE +IE +IE +fi +fi +fi +IE +IE +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(55,1,1) = {" +Yq +Sl +Sl +Sl +Sl +hH +hH +CJ +Mr +Sl +jn +Sl +lA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +IE +fi +fi +fi +fi +fi +fi +IE +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +yl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(56,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +hH +hH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +IE +IE +IE +IE +fi +fi +fi +fi +fi +fi +fi +fi +fi +fi +fi +IE +IE +IE +aS +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +rk +Sl +Sl +Sl +fg +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(57,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +lA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +IE +fi +fi +fi +fi +fi +Dg +fi +zw +zw +zw +zw +zw +zw +fi +IE +IE +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +zE +Sl +Sl +SM +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(58,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +tH +lA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +aS +aS +IE +IE +fi +fi +MU +fi +fi +fi +fi +fi +zw +in +in +in +in +zw +fi +fi +fi +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +yH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(59,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +fi +fi +fi +zw +zw +zw +fi +fi +fi +zw +Iv +in +in +in +zw +fi +fi +fi +IE +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +rk +Sl +fg +Sl +Sl +fg +zE +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(60,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +Dg +fi +fi +zw +in +in +in +fi +fi +zw +zw +zw +in +OF +zw +zw +fi +fi +eR +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Ow +Sl +Sl +Sl +Sl +Sl +sF +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(61,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +IE +IE +IE +fi +fi +fi +zw +QW +in +zw +fi +fi +fi +fi +zw +in +in +in +zw +fi +fi +fi +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mn +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +PW +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(62,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +IE +LG +fi +zw +zw +fi +zw +zw +zw +zw +fi +fi +fi +MU +zw +in +in +in +zw +fi +Dg +fi +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +uS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Yq +"} +(63,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +IE +fi +MU +zw +in +fi +zw +in +Uk +zw +fi +fi +fi +fi +in +in +in +in +zw +fi +fi +fi +IE +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(64,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +fi +fi +zw +Mb +fi +zw +in +in +QC +fi +AR +fi +fi +in +in +in +in +zw +fi +fi +fi +IE +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(65,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +ME +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +fi +fi +fi +fi +fi +zw +oR +in +zw +fi +fi +fi +fi +zw +in +vP +in +zw +fi +Dg +fi +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hF +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +rk +Sl +Sl +Sl +mp +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(66,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +zw +Dg +fi +fi +zw +in +in +zw +fi +fi +fi +fi +zw +in +in +hX +zw +fi +fi +IE +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(67,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +db +fi +fi +fi +zw +in +in +zw +fi +fi +zw +zw +zw +in +in +zw +zw +tO +fi +IE +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(68,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +IE +fi +fi +fi +xC +zw +zw +fi +fi +zw +in +CY +in +in +zw +fi +fi +fi +IE +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(69,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fQ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +IE +IE +IE +fi +fi +fi +fi +MU +fi +fi +zw +Mb +in +in +rJ +zw +fi +fi +IE +IE +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(70,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +fi +fi +fi +fi +fi +fi +zw +zw +zw +zw +zw +zw +fi +IE +IE +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Tx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +mp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(71,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +Ul +Ul +Ul +Ul +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +fi +fi +fi +fi +Dg +fi +fi +fi +fi +fi +fi +fi +fi +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +fg +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +uS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(72,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +Ul +Ul +WB +DW +Ul +Ul +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +fi +IE +IE +fi +fi +fi +fi +fi +qk +fi +fi +IE +IE +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Eo +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(73,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +Ul +jr +iV +iV +iV +Ul +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +fi +IE +IE +IE +fi +fi +fi +fi +fi +IE +IE +IE +IE +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +rk +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(74,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +Ul +Gs +iV +YB +iV +Ul +aS +Sl +Sl +Eo +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +mp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(75,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +Ul +Ul +iV +XI +GQ +Ul +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +uS +Sl +Sl +Sl +fg +fg +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(76,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +Ul +iV +Ul +Ul +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(77,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Ul +Vl +Ul +Ul +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +fg +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(78,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Pg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fQ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(79,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +TA +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +vb +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(80,1,1) = {" +Yq +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(81,1,1) = {" +Yq +Sl +Sl +Sl +TA +Sl +fg +TA +Sl +rk +Lo +PW +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +UI +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(82,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +rk +TA +lX +TA +DU +Sl +fg +Sl +DU +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +uS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(83,1,1) = {" +Yq +Sl +Sl +Sl +TA +rk +Sl +jD +fg +rk +PW +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hF +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(84,1,1) = {" +Yq +Sl +Sl +Sl +Sl +fg +FD +rk +UF +PW +cw +PW +rk +Sl +PW +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(85,1,1) = {" +Yq +Sl +Sl +Sl +fg +Sl +Sl +DU +fg +PW +PW +PW +Rj +cw +Sl +Sl +Sl +Sl +TA +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(86,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +TA +FD +Hx +of +rk +fg +TA +Sl +fg +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +GL +Sl +tW +Sl +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(87,1,1) = {" +Yq +Sl +Sl +fg +Sl +PW +Sl +rk +fg +TA +TA +jD +PW +Sl +Sl +Sl +Sl +jD +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tW +fQ +Sl +Sl +Wg +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hF +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(88,1,1) = {" +Yq +Sl +rk +Sl +Sl +Sl +fg +Sl +Sl +PW +fg +Sl +rk +Sl +TA +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FV +tW +Sl +fQ +GL +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(89,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +TA +Sl +PW +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tW +Sl +GL +Sl +sj +Sl +FV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(90,1,1) = {" +Yq +Sl +Sl +PW +Sl +Sl +Sl +Sl +jD +fg +Sl +jD +Sl +Sl +Sl +Sl +pp +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Wg +Sl +fQ +kb +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(91,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +TA +Sl +PW +Sl +Sl +rk +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tW +rs +Sl +Sl +Sl +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +OA +Nb +OA +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(92,1,1) = {" +Yq +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +GL +Sl +tW +Sl +tW +Sl +fQ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +Vu +Vu +Vu +Vu +Vu +Vu +Vu +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(93,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tW +Sl +Sl +tW +Wg +Sl +GL +Sl +tW +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +OA +OA +Vu +aS +Xv +Xv +TN +Xv +Xv +Xv +Xv +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(94,1,1) = {" +Yq +Sl +Sl +Sl +bZ +Sl +Sl +rk +Sl +Sl +PW +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FV +Sl +Sl +FV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +OA +Vu +Vu +Vu +OA +Vu +Vu +Vu +aS +Xv +gM +as +ka +as +Qv +Xv +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(95,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fQ +Sl +Sl +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +aS +OA +Vu +Vu +Vu +OA +Vu +OA +Vu +OA +OA +aS +Xv +xz +as +as +as +IY +Xv +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(96,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +sj +Sl +Sl +Sl +Sl +Sl +Sl +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +OA +Vu +OA +OA +OA +Vu +Vu +eY +OA +OA +aS +Xv +dc +as +as +as +RV +Xv +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(97,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Cn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +tW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +OA +Vu +OA +OA +Vu +Vu +aH +Vu +Vu +eY +aS +Xv +vF +as +ym +as +NP +Xv +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(98,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fQ +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +uK +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +aS +aS +Vu +Vu +Vu +OA +Lm +OA +OA +OA +OA +OR +aS +Xv +un +un +un +zg +un +un +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Yq +"} +(99,1,1) = {" +Yq +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +OH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ql +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +BK +OA +Vu +aS +aS +aS +aS +aS +aS +aS +aS +aS +un +un +zg +zg +mj +un +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(100,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +CN +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +pp +Sl +Sl +Sl +aS +aS +aS +OA +OA +eY +aS +aS +El +iK +qF +Zt +PN +aS +aS +un +SL +zg +zg +tX +un +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(101,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Cn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +pp +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +OA +OA +OA +Vu +Vu +Vu +aS +PY +iK +hy +Zt +KV +aS +aS +un +un +NC +zg +mj +un +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +fA +Sl +Sl +Sl +Sl +Yq +"} +(102,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SI +SI +SI +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +Vu +Vu +Vu +Vu +OA +Vu +aS +Bu +sR +hy +iI +io +aS +aS +eD +un +un +Qy +un +un +aS +bb +Ka +wp +tQ +Ka +us +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(103,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +pp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mz +SI +SI +SI +Mz +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +Vu +OA +OA +OA +OA +Vu +aS +aS +aS +aS +Wd +aS +aS +aS +aS +aS +aS +zT +aS +aS +aS +Ka +Ka +xW +Ka +Ka +ad +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(104,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Ep +Sl +Sl +Sl +Sl +Sl +Sl +Eg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SI +SI +SI +SI +SI +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +ql +Sl +Sl +Sl +Sl +Mx +Sl +ql +Sl +aS +aS +OA +OA +Vu +OA +MH +OA +Nb +Vu +Vu +Vu +aS +XM +zT +lk +Ej +Xl +zT +Th +Ho +zT +Mh +ko +aS +Ka +Ka +wp +wp +wp +wp +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(105,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mz +SI +Hn +SI +Mz +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +pp +Sl +ql +Sl +Sl +Sl +aS +aS +aS +OA +Vu +Vu +OA +Vu +OA +OA +OA +OA +Vu +aS +dH +zT +zT +PO +Xl +zT +PO +PO +zT +PO +Ri +aS +Ka +Ka +wp +aN +Ka +us +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(106,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SI +SI +ii +SI +SI +Sl +Sl +Sl +Sl +Sl +Cn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +OA +Vu +OA +OA +Vu +Vu +Vu +OA +sk +Vu +aS +XX +zT +zT +PO +Xl +zT +dj +PO +zT +PO +Jq +aS +Ka +Ka +xW +Ka +Ka +Uy +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(107,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +EU +NG +NG +EU +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mz +SI +Hn +SI +Mz +Sl +Sl +OU +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +aS +aS +OA +Vu +Vu +Vu +OA +OA +OA +OA +aH +OA +OA +OA +aS +Kg +zT +zT +dj +Xl +zT +Hq +Hq +zT +zT +zT +aS +FP +Ka +wp +wp +wp +wp +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(108,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +EU +EU +EU +EU +EU +EU +EU +qq +qq +EU +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SI +SI +SI +SI +SI +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +Vu +Vu +Vu +Vu +Vu +Vu +Vu +Vu +Vu +Vu +Vu +OA +aS +aS +GP +Gv +PO +Xl +zT +zT +zT +zT +zT +zT +xW +Ka +Ka +wp +oJ +Ka +us +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(109,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +zn +zn +zn +zn +zn +aS +EU +NX +pq +EU +gG +qq +qq +qq +qq +EU +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mz +SI +SI +SI +Mz +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +Vu +Vu +OA +OA +OA +OA +OA +Vu +OA +OA +OA +Vu +OA +aS +aS +zT +zT +zT +zT +zT +Ho +Ho +zT +zT +zT +aS +Ka +Ka +xW +Ka +Ka +bl +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(110,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +zn +Go +de +lv +zn +aS +EU +Dt +qq +CD +qq +qq +qq +wl +qq +EU +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SI +SI +SI +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +OA +Vu +Vu +OA +OA +OA +OA +OA +OA +Vu +OA +OA +DM +dT +OA +aS +aS +OI +zT +zT +zT +zT +PO +PO +zT +dj +lq +aS +Ka +Ka +wp +wp +wp +wp +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(111,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +aS +zn +zn +zn +zn +US +oS +qL +zn +EU +EU +EU +EU +EU +qq +qq +EU +tU +tU +tU +tU +tU +tU +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +EY +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +Vu +Vu +OA +OA +fq +BQ +BQ +OA +OA +Lm +Vu +OA +OA +OA +OA +aS +aS +Qf +PO +PO +zT +zT +Lx +tl +zT +PO +Ri +aS +Ka +Ka +wp +TX +Ka +us +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(112,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +aS +zn +GC +UC +wJ +oS +oS +DP +zK +qq +wl +qq +qq +qq +qq +qq +EU +wm +Ck +Sh +AH +uC +tU +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +OA +OA +OA +Vu +OA +OA +GE +BQ +Xd +dR +li +OA +OA +Vu +Vu +Vu +Vu +OA +aS +aS +fG +Xa +iC +zT +zT +da +Hq +zT +cG +zZ +aS +Ka +Ka +xW +Ka +Ka +cl +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(113,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +aS +aS +zn +Za +ht +zn +af +RF +RY +zn +EU +EU +EU +EU +EU +qq +qq +EU +lU +Wj +Wj +Wj +Tt +tU +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Cn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +OA +Vu +Vu +eY +OA +iY +pi +QF +IS +gk +BQ +Qq +OA +Vu +OA +OA +Vu +OA +aS +aS +aS +aS +aS +aS +aS +aS +aS +zT +aS +aS +aS +bb +Ka +wp +wp +wp +wp +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(114,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +aS +aS +zn +zn +qA +zn +qA +qA +qA +zn +aS +aS +aS +aS +EU +qq +vc +CD +AH +Wj +yd +Wj +iz +tU +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZV +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +Vu +Vu +Vu +Vu +OA +ib +BQ +BQ +BQ +BQ +BQ +BQ +OA +Vu +OA +OA +Vu +Vu +OA +OA +OA +OA +aS +aS +aS +aS +aS +RA +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(115,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +aS +vH +vH +vH +fZ +fZ +fZ +fZ +fZ +fZ +fZ +vH +vH +vH +EU +Bl +qq +EU +LU +Wj +Wj +Wj +XW +tU +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +RT +Vu +Vu +Vu +OA +Fe +BQ +gk +BQ +ku +BQ +BQ +Vu +eY +Vu +OA +OA +Vu +Vu +OA +OA +OA +aS +aS +tv +wG +tv +Sy +Ti +tv +tv +Ti +tv +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(116,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +aS +vH +vH +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +vH +vH +EU +gG +qq +EU +uq +hr +AH +AH +nF +tU +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +OA +Lm +aH +Vu +OA +qn +BQ +aP +BQ +QF +IS +gk +OA +OA +Vu +OA +OA +OA +Vu +Vu +eY +OA +aS +aS +tv +Vw +wc +tv +tv +tv +To +ug +wc +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(117,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +aS +vH +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +vH +EU +qq +qq +EU +Kd +Kd +Kd +Kd +Kd +Kd +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +OA +OA +OA +OA +OA +OA +OA +BQ +BQ +BQ +dR +OA +OA +OA +Vu +OA +OA +OA +Vu +DZ +Vu +Vu +aS +aS +To +KX +wc +tv +ru +tv +To +LJ +wc +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(118,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +vH +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +vH +EU +qq +qq +EU +mH +Zm +pK +pK +pK +Kd +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Xp +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Cn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +OA +OA +Vu +Vu +OA +OA +OA +OA +Vu +OA +OA +OA +Vu +Vu +Vu +Vu +aS +aS +Fw +SH +wc +tv +yB +tv +To +MA +jv +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(119,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +EU +qq +qq +EU +XU +wr +wr +wr +XU +Kd +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +uK +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +tk +Vu +Vu +Lm +OA +OA +OA +aH +Vu +Vu +Vu +OA +OA +OA +Vr +OA +aS +aS +tv +fF +tv +tv +tv +tv +tv +tv +tv +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(120,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +EU +UO +qq +CD +XU +wr +wr +wr +uk +Kd +aS +aS +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +Vu +Vu +Vu +OA +OA +OA +Vu +Vu +Vu +Vu +Vu +fL +OA +OA +OA +OA +aS +aS +aS +aS +mh +Mq +Mq +Mq +zr +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(121,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +fZ +fZ +fZ +fZ +fZ +wN +wN +wN +wN +wN +wN +wN +wN +wN +qq +qq +EU +XU +wr +wr +wr +XU +Kd +aS +Sl +Sl +fg +Sl +Sl +rk +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +Vu +OA +OA +OA +OA +OA +Vu +Zb +Vu +Vu +fL +fL +fL +aS +aS +aS +aS +aS +aS +aS +QE +ay +ay +ay +QE +aS +eb +Ai +XS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(122,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +fZ +fZ +fZ +fZ +fZ +wN +GO +Vt +cu +qq +qq +tA +qq +qq +qq +qq +EU +Mj +hU +sh +TH +BZ +Kd +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +FZ +OA +OA +OA +OA +OA +OA +Vu +Vu +fL +fL +fL +fL +aS +aS +aS +aS +aS +aS +aS +QE +ay +ay +ay +QE +Py +Se +ys +ys +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(123,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +fZ +fZ +fZ +fZ +fZ +wN +wN +wN +wN +wN +wN +wN +wN +wN +wl +qq +EU +Kd +Kd +Kd +Kd +Kd +Kd +aS +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +hn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +Vu +fL +fL +fL +OA +aS +aS +aS +aS +aS +aS +aS +QE +Xk +by +Xk +QE +aS +cK +ys +ys +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Yq +"} +(124,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +tY +Vg +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +EU +EU +EU +EU +aS +aS +aS +aS +aS +aS +aS +Sl +PW +Sl +Sl +PW +Sl +Sl +Sl +uf +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +OA +fL +fL +OA +OA +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +RN +ux +na +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(125,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +tY +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +TA +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +eT +Px +Sl +Sl +Sl +Sl +eT +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +OA +OA +OA +OA +OA +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(126,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +vH +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +vH +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +eT +Sl +Sl +eT +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(127,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +vH +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +vH +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +uf +Sl +Sl +fg +Sl +Sl +rk +Sl +rk +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Mx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Yq +"} +(128,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +vH +vH +vH +fZ +fZ +fZ +Vg +fZ +fZ +fZ +vH +vH +vH +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +rk +Sl +Sl +Sl +uf +Sl +Sl +Sl +UX +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +eT +Sl +Sl +Sl +eT +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(129,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +vH +vH +vH +vH +fZ +fZ +tY +tY +fZ +vH +vH +vH +vH +aS +aS +Sl +Sl +Sl +Sl +Sl +fg +rk +Sl +Sl +Sl +Sl +PW +UX +fg +Sl +Sl +PW +Sl +Sl +Sl +fg +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FH +Sl +Yq +"} +(130,1,1) = {" +Yq +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +rk +Sl +Sl +iG +Sl +uf +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +HI +Sl +Sl +QP +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(131,1,1) = {" +Yq +Sl +Sl +Sl +Sl +aS +aS +aS +aS +aS +aS +Sl +aS +aS +aS +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +TA +Sl +PW +rk +Sl +Sl +fg +Sl +uf +TA +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +gn +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +vy +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(132,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +Sl +Sl +aS +aS +aS +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +uf +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +iG +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Eo +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FH +Sl +Sl +Sl +Sl +Sl +Sl +Sl +FH +Sl +Sl +Sl +Sl +Yq +"} +(133,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +aS +aS +Sl +aS +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +tH +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(134,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +aS +aS +Sl +Sl +aS +aS +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +rk +Sl +Eo +Sl +Sd +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(135,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +rk +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +RC +Sl +Sl +Sl +FH +Sl +Sl +Sl +Sl +Sl +Yq +"} +(136,1,1) = {" +Yq +Sl +Sl +Sl +RC +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +TA +Sl +uf +Sl +Sl +Sl +Sl +Sl +rk +Sl +fg +Sl +Sl +Sl +TA +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +SB +Sl +Sl +Sl +Sl +Sl +Px +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(137,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +fg +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +PW +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(138,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(139,1,1) = {" +Yq +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Yq +"} +(140,1,1) = {" +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +Yq +"} diff --git a/maps/redgate/train.dmm b/maps/redgate/train.dmm new file mode 100644 index 0000000000..6b9de52d45 --- /dev/null +++ b/maps/redgate/train.dmm @@ -0,0 +1,23242 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/effect/step_trigger/thrower{ + direction = 4; + immobilize = 0; + name = "right thrower"; + stopper = 0; + tiles = 0 + }, +/turf/simulated/sky/south{ + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/overboard) +"aj" = ( +/obj/structure/closet/secure_closet/animal, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/animals) +"as" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"aJ" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"aK" = ( +/obj/structure/prop/machine/tgmc_console2, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"aL" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"aO" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"aV" = ( +/obj/machinery/vending/snack, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"aY" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"bi" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/arena) +"br" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"bC" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"bT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/multiple/random_size_crate/no_weapons/nofail, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/storage) +"ch" = ( +/turf/unsimulated/wall/dark, +/area/redgate/train/overboard) +"cq" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/random/trash_pile, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"cs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/viewing) +"cQ" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"cZ" = ( +/obj/structure/table/standard, +/obj/random/maintenance/engineering, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"dr" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/viewing) +"ds" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"dv" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"dz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/storage) +"dB" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"dM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/train/meeting) +"dN" = ( +/obj/item/weapon/material/sword/battleaxe, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/wood) +"dQ" = ( +/obj/random/multiple/corp_crate/no_weapons, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"dS" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/bar) +"dY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/viewing) +"dZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/balcony) +"ea" = ( +/obj/structure/prop/machine/tgmc_console3/starts_on, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/redgate) +"ei" = ( +/obj/structure/casino_table/roulette_chart, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"et" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"ez" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"eX" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/arena) +"fb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/cab) +"fd" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/casino) +"fi" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"fj" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/tableseating) +"fy" = ( +/obj/structure/casino_table/roulette_long, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"fC" = ( +/obj/random/junk, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"fF" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/rear) +"fJ" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"fM" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"fN" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"fQ" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/tableseating) +"fT" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"fX" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"gf" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/cab) +"gh" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"gm" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"gr" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/storage) +"gu" = ( +/obj/random/trash, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"gv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"gF" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"gY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/mob/living/simple_mob/vore/catgirl, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/tableseating) +"ha" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"he" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/catgirl, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"hh" = ( +/obj/structure/redgate/away{ + pixel_y = 15 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/redgate) +"hG" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"hW" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"iu" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"iw" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"iG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/step_trigger/death/train_crush, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"iX" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 8 + }, +/obj/effect/transit/light{ + dir = 8 + }, +/obj/effect/step_trigger/death/train_lost, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"ja" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/mob/living/simple_mob/vore/lamia/random, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"jc" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/bar) +"jx" = ( +/obj/machinery/atmospherics/pipe/tank{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"jy" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"jB" = ( +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/bar) +"jF" = ( +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"jG" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 8 + }, +/obj/effect/step_trigger/death/train_lost, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"jL" = ( +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"jS" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/casino) +"kq" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/rear) +"kw" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/casino) +"kK" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"kV" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/shuttle/floor/purple, +/area/redgate/train/casino) +"kZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"le" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/casino) +"lo" = ( +/obj/structure/table/standard, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"lC" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/animals) +"lH" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/storage) +"lJ" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"lL" = ( +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/redgate) +"lZ" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"me" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/animals) +"mg" = ( +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/wood) +"mq" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"ms" = ( +/obj/machinery/light, +/turf/simulated/floor, +/area/redgate/train/storage) +"mv" = ( +/obj/effect/step_trigger/thrower{ + direction = 8; + name = "left thrower"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"mw" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing/grey, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"mG" = ( +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"mQ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/catgirl, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"mT" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"mW" = ( +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"mY" = ( +/obj/structure/fence/door, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"nb" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"nc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/train/redgate) +"no" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"np" = ( +/turf/simulated/shuttle/floor/airless{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 293.15 + }, +/area/redgate/train/cab) +"nq" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/unsimulated/floor/maglev{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"nv" = ( +/obj/structure/ladder/up{ + pixel_y = 15 + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"nw" = ( +/turf/simulated/wall/log, +/area/redgate/train/wood) +"nz" = ( +/obj/structure/prop/poicanister, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"nJ" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"nK" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"nL" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/wolfgirl, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"nY" = ( +/obj/random/empty_or_lootable_crate, +/obj/machinery/light, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/rear) +"op" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/casino) +"or" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/redgate) +"pa" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"ph" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"pJ" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"pM" = ( +/obj/structure/closet/walllocker_double/misc_civ/north, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/deck/cards, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/deck/schnapsen, +/obj/item/weapon/deck/egy, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/arena) +"pT" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/arena) +"pU" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/redgate) +"qk" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"qm" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/animals) +"qs" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"qF" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"qJ" = ( +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"qX" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/arena) +"qY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"qZ" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"rf" = ( +/obj/random/crate, +/obj/random/unidentified_medicine/old_medicine, +/obj/machinery/light, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/rear) +"rn" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/bar) +"ru" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"rv" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/casino) +"ry" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/tableseating) +"rB" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"rP" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 4 + }, +/obj/effect/transit/light{ + dir = 4 + }, +/obj/effect/step_trigger/death/train_lost, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"sa" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/tableseating) +"sc" = ( +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"se" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"sj" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/storage) +"sv" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"sy" = ( +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/meeting) +"sE" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"sI" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"sP" = ( +/obj/structure/fence/door/opened, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"sX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"sY" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"tg" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/bar) +"tk" = ( +/turf/simulated/floor, +/area/redgate/train/storage) +"tp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/teppi) +"tt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/cab) +"tI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/cab) +"tJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/arena) +"tP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"tX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/bar) +"ua" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"uf" = ( +/obj/effect/step_trigger/death/train_lost, +/turf/unsimulated/floor/maglev{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"us" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"uS" = ( +/obj/fiftyspawner/log/sif, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/wood) +"uV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/arena) +"uX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"vg" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"vn" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/meeting) +"vo" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/bar) +"vS" = ( +/obj/effect/step_trigger/death/train_lost, +/turf/unsimulated/mineral{ + icon = 'icons/turf/transit_vr.dmi'; + icon_state = "rock"; + outdoors = 1 + }, +/area/redgate/train/overboard) +"wb" = ( +/obj/structure/fence/door, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"wg" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"wk" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/redgate) +"wt" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"wA" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/teppi) +"wP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"wX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"xi" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/animals) +"xj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"xq" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"xx" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/unsimulated/floor/maglev{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"xz" = ( +/obj/structure/reagent_dispensers/fueltank/barrel/two{ + name = "fuel barrel" + }, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"xT" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/teppi) +"xU" = ( +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing/grey, +/turf/unsimulated/floor/maglev{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"yc" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 4 + }, +/obj/effect/step_trigger/death/train_lost, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"yf" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 8 + }, +/obj/effect/transit/light{ + dir = 8 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"yj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"yk" = ( +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"yq" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/casino) +"yr" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/wolftaur, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"yu" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"yx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/arena) +"yz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/storage) +"yA" = ( +/obj/random/multiple/corp_crate/no_weapons, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"yB" = ( +/obj/structure/table/standard, +/obj/item/sticky_pad/random, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"yG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/redgate) +"yJ" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"yP" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/arena) +"yQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"yR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/animals) +"yW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/bar) +"zm" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 4 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"zp" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"zE" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/viewing) +"zJ" = ( +/obj/random/vendorfood, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"zU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/teppi) +"zV" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/casino) +"Aa" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"Ak" = ( +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"An" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seating) +"Ar" = ( +/obj/structure/closet/secure_closet/animal, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/teppi) +"Az" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/seating) +"AI" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"AL" = ( +/obj/random/forgotten_tram, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seating) +"AS" = ( +/obj/effect/map_effect/portal/master/side_a{ + portal_id = "train1_north" + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"AT" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"AX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/multiple/random_size_crate/no_weapons/nofail, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/storage) +"Bb" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"Bh" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/viewing) +"Bn" = ( +/obj/structure/fence, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"Bo" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/wolfgirl, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"Bu" = ( +/obj/structure/table/glass, +/turf/simulated/shuttle/floor/airless{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 293.15 + }, +/area/redgate/train/arena) +"BG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/rear) +"BM" = ( +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/balcony) +"BN" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"BU" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/casino) +"BY" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + desc = "A slick black door marked with the faint blue of command."; + locked = 1; + name = "command hatch" + }, +/turf/simulated/shuttle/floor/airless, +/area/redgate/train/cab) +"Ce" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 4 + }, +/obj/effect/transit/light{ + dir = 4 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Ch" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/seating) +"Ck" = ( +/obj/structure/casino_table/roulette_table/long, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"Cm" = ( +/obj/structure/fence/corner, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"Co" = ( +/turf/unsimulated/mineral{ + icon = 'icons/turf/transit_vr.dmi'; + icon_state = "rock"; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Cu" = ( +/obj/random/forgotten_tram, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"CB" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/arena) +"CC" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"CI" = ( +/mob/living/simple_mob/vore/wolftaur, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"CM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/viewing) +"CN" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"CP" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/tableseating) +"CY" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/teppi) +"CZ" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/maglev{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Da" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/animals) +"Dc" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/arena) +"Dm" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"Ds" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/seating) +"Dw" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"DK" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/meeting) +"DQ" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/teppi) +"DX" = ( +/obj/structure/casino_table/blackjack_l, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"Ei" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"Ej" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/meeting) +"En" = ( +/obj/structure/prop/machine/tgmc_console2/starts_on, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"Eu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"Ev" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/bar) +"EJ" = ( +/turf/unsimulated/wall{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"EL" = ( +/mob/living/simple_mob/vore/alienanimals/catslug{ + color = "#6b0024"; + name = "stowaway" + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/rear) +"EQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/arena) +"EX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"EZ" = ( +/obj/structure/fence, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"Fg" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"Fo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"FJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/tableseating) +"FN" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/animals) +"FT" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/animals) +"Ga" = ( +/obj/fiftyspawner/log, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/wood) +"Gj" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/storage) +"Gl" = ( +/obj/structure/prop/machine/tgmc_console1/starts_on, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/redgate) +"GD" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + desc = "It's an extra wide door for extra wide loads. Yes I'm calling your load fat get over it."; + dir = 2; + locked = 1; + name = "cargo door" + }, +/turf/simulated/floor{ + outdoors = -1 + }, +/area/redgate/train/storage) +"GE" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/teppi) +"GG" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 8 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"GU" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"GW" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"Hn" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"Hq" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Hs" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/redgate) +"Ht" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 8 + }, +/obj/effect/transit/light{ + dir = 8 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"HF" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor, +/area/redgate/train/storage) +"HG" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"HL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/arena) +"HQ" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/teppi) +"HS" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"Ie" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"Ig" = ( +/obj/structure/closet/crate/wooden, +/obj/random/mainttoyloot/nofail, +/obj/random/instrument, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"Ii" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/storage) +"Il" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"In" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/redgate) +"Io" = ( +/obj/structure/table/standard, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/meeting) +"Ip" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"ID" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"IN" = ( +/obj/structure/table/standard, +/obj/random/maintenance/morestuff, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"IZ" = ( +/obj/structure/table/glass, +/obj/item/capture_crystal/random, +/turf/simulated/shuttle/floor/airless{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 293.15 + }, +/area/redgate/train/arena) +"Jo" = ( +/obj/random/flashlight, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"Js" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/teppi) +"Jv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/redgate/train/meeting) +"Jz" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"JI" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/storage) +"JP" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"JU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/animals) +"JY" = ( +/obj/structure/fence, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"Kb" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/casino) +"Kd" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"Ke" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/cab) +"Kh" = ( +/obj/structure/railing, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"Kk" = ( +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing{ + dir = 8 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Kl" = ( +/obj/structure/table/standard, +/obj/random/forgotten_tram, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"Km" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"Kr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/meeting) +"Kt" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"Kx" = ( +/obj/effect/map_effect/portal/master/side_b{ + dir = 1; + portal_id = "train1_north" + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"KF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"KM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"KR" = ( +/obj/random/tank, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"KS" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/animals) +"KW" = ( +/obj/effect/step_trigger/thrower{ + direction = 4; + immobilize = 0; + name = "right thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"KZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"Lh" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/meeting) +"Li" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/seating) +"Lj" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"Lq" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"Lv" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"Lw" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/casino) +"LA" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"LE" = ( +/obj/structure/prop/machine/tgmc_console4/starts_on, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/redgate) +"LG" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"LI" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"LJ" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"LL" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"LO" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"LU" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"LX" = ( +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"LY" = ( +/obj/effect/step_trigger/death/train_lost, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Mj" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/rear) +"Mo" = ( +/obj/effect/step_trigger/death/train_crush, +/turf/unsimulated/floor/maglev{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"MJ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/lamia/random, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"MN" = ( +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/fuel) +"MS" = ( +/obj/fiftyspawner/log, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/wood) +"Nd" = ( +/obj/effect/step_trigger/death/train_crush, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Ne" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/balcony) +"Ng" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/animals) +"Nl" = ( +/obj/structure/prop/transmitter, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"NG" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/tableseating) +"NM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"Ol" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/bar) +"Oq" = ( +/turf/simulated/wall/log_sif, +/area/redgate/train/wood) +"Or" = ( +/obj/structure/closet/walllocker_double/casino/north, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/dicecup, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"Os" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/paper_bin, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/meeting) +"Ow" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/tableseating) +"OB" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"OG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"OP" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/meeting) +"OW" = ( +/obj/random/vendordrink, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"Pa" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 8 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Pf" = ( +/obj/machinery/vending/coffee, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"Ph" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 4 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Pp" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"Ps" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"Px" = ( +/obj/structure/closet/walllocker_double/casino/south, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/dicecup, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"Py" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"Pz" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"PG" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"PL" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/viewing) +"PQ" = ( +/obj/random/vendorfood, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"Qd" = ( +/turf/simulated/floor{ + outdoors = -1 + }, +/area/redgate/train/storage) +"Qn" = ( +/obj/effect/floor_decal/transit/orange{ + dir = 4 + }, +/obj/effect/transit/light{ + dir = 4 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Qw" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"QH" = ( +/obj/structure/table/standard, +/obj/random/maintenance/engineering, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"QI" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/cookiegirl, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"QK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"QO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/teppi) +"QQ" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"Ri" = ( +/obj/structure/ladder/up{ + pixel_y = -26 + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"Ru" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/unsimulated/floor/maglev{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"RC" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"RE" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"RJ" = ( +/obj/structure/casino_table/blackjack_r, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"RL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/casino) +"RR" = ( +/turf/simulated/shuttle/floor/purple, +/area/redgate/train/casino) +"RV" = ( +/obj/machinery/vending/cola, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"Sa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/bar) +"Sc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/largecrate/animal/pred, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/storage) +"Su" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/rear) +"Sx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/meeting) +"Sz" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"SO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"SQ" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/redgate) +"Te" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + desc = "A slick black door marked with the faint blue of command."; + name = "command hatch" + }, +/turf/simulated/shuttle/floor/airless, +/area/redgate/train/cab) +"Tu" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/animals) +"Tw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/redgate/train/redgate) +"TP" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"TQ" = ( +/obj/structure/fence, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"TR" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1; + icon_state = "shuttle_chair" + }, +/turf/simulated/wall/log, +/area/redgate/train/wood) +"TV" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"TY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/tableseating) +"TZ" = ( +/obj/structure/table/standard, +/obj/random/cargopod, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/redgate) +"Ua" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"Ub" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/rear) +"Uk" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/seating) +"Un" = ( +/obj/structure/fence/door, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"Ux" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/animals) +"UF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seating) +"UW" = ( +/obj/machinery/vending/fitness, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"Vb" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"Vf" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/wood) +"Vn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/tableseating) +"Vw" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"Vz" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"VA" = ( +/obj/random/vendordrink, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"VJ" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"VK" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/balcony) +"VM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/redgate) +"VN" = ( +/obj/effect/fake_sun{ + family = "train" + }, +/turf/unsimulated/wall/dark, +/area/redgate/train/overboard) +"VU" = ( +/obj/structure/closet/walllocker_double/misc_civ/south, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/pack/cardemon, +/obj/item/weapon/deck/cards, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/deck/schnapsen, +/obj/item/weapon/deck/egy, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/arena) +"Wd" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/storage) +"Wk" = ( +/obj/effect/step_trigger/thrower{ + direction = 4; + immobilize = 0; + name = "right thrower"; + stopper = 0; + tiles = 0 + }, +/turf/unsimulated/mineral{ + icon = 'icons/turf/transit_vr.dmi'; + icon_state = "rock"; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Wr" = ( +/obj/structure/table/standard, +/obj/item/weapon/pen, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/tableseating) +"Wy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/casino) +"WH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/step_trigger/death/train_crush, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"WM" = ( +/obj/effect/step_trigger/death/train_lost, +/turf/simulated/sky/south{ + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/overboard) +"WU" = ( +/obj/structure/casino_table/blackjack_m, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"Xr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/storage) +"XS" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/animals) +"XU" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"Yb" = ( +/obj/structure/table/standard, +/obj/random/pouch, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"Ye" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/rear) +"Yh" = ( +/obj/structure/fence/corner, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"Yq" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/animals) +"Ys" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing/grey, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"YC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/rear) +"YH" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/tableseating) +"YK" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/storage) +"YN" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/mob/living/simple_mob/vore/catgirl, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/viewing) +"YO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/arena) +"YT" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It probably opens and closes. Keeps out grubs, clowns, grey tide, and even sparkledogs."; + locked = 1; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/viewing) +"YW" = ( +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"Zj" = ( +/obj/structure/fence/corner{ + dir = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"Zl" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/shuttle/floor/voidcraft{ + outdoors = 1 + }, +/area/redgate/train/wood) +"Zq" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/rear) +"Zt" = ( +/obj/structure/table/standard, +/obj/random/mug, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/cab) +"Zx" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/bar) +"Zy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/viewing) +"ZD" = ( +/obj/effect/step_trigger/death/train_crush, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"ZK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/step_trigger/thrower{ + immobilize = 0; + name = "down thrower"; + stopper = 0; + tiles = 0 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/unsimulated/floor/techfloor_grid{ + icon = 'icons/turf/transit_vr.dmi'; + outdoors = 1 + }, +/area/redgate/train/overboard) +"ZO" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/redgate/train/teppi) +"ZP" = ( +/obj/structure/closet/walllocker_double/casino/north, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) +"ZY" = ( +/obj/structure/closet/walllocker_double/casino/south, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/storage/box/roulette_balls_normal, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/casino) + +(1,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +VN +"} +(2,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(3,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(4,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(5,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(6,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(7,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(8,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(9,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(10,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(11,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(12,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(13,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(14,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(15,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(16,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(17,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(18,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(19,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(20,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(21,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(22,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(23,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(24,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(25,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(26,1,1) = {" +ch +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +ch +"} +(27,1,1) = {" +ch +Pa +Ht +Pa +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +GG +GG +yf +GG +GG +GG +yf +GG +GG +GG +yf +GG +GG +GG +Ht +Pa +Ht +Pa +GG +GG +yf +GG +GG +GG +yf +GG +GG +GG +yf +GG +GG +GG +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +jG +jG +iX +jG +jG +jG +ch +"} +(28,1,1) = {" +ch +RC +RC +RC +RC +RC +RC +RC +Nd +Hs +Hs +VM +pU +Hs +yG +SQ +Hs +yG +Hs +pU +In +yG +Hs +RC +RC +RC +Nd +zV +zV +op +fd +rv +Wy +BU +rv +Wy +rv +fd +RL +zV +zV +RC +RC +RC +Nd +Yq +yR +Ng +KS +Yq +yR +Yq +Yq +yR +Yq +KS +JU +yR +Yq +RC +RC +RC +Nd +xT +QO +QO +CY +xT +HQ +xT +xT +HQ +xT +CY +QO +QO +xT +RC +RC +RC +ZD +MN +MN +MN +MN +MN +MN +xz +MN +MN +MN +MN +MN +MN +MN +nJ +RC +RC +ZD +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +dN +mg +mg +mg +nJ +RC +RC +Nd +Mj +Ub +BG +fF +Mj +Ub +Mj +Mj +Ub +Mj +Mj +Mj +pJ +pJ +RC +RC +LY +LY +LY +LY +LY +LY +ch +"} +(29,1,1) = {" +ch +CZ +CZ +CZ +CZ +CZ +Mo +Mo +Hs +SQ +aK +Aa +Aa +Aa +Aa +tP +Aa +Aa +Aa +Aa +IN +zp +SQ +Hs +CZ +Mo +zV +zV +Or +lZ +lZ +Dm +lZ +lZ +TV +lZ +Dm +lZ +lZ +ZY +zV +zV +CZ +Mo +Yq +xi +FT +FT +FT +Da +FT +FT +FT +FT +Da +FT +FT +FT +xi +Yq +CZ +Mo +xT +CY +GE +xj +hW +ZO +aJ +hW +aJ +aJ +yQ +hW +Qw +GE +CY +xT +CZ +xU +MN +MN +xz +MN +MN +jx +MN +MN +MN +MN +jx +xz +MN +xz +MN +MN +nq +xU +mg +mg +Oq +Oq +Oq +Oq +mg +mg +mg +mg +nw +nw +TR +nw +mg +mg +nq +Mo +Mj +kq +Ig +CN +Zq +dQ +XU +XU +XU +XU +rB +nY +Mj +Ne +Ne +xx +CZ +uf +uf +uf +uf +uf +uf +ch +"} +(30,1,1) = {" +ch +RC +RC +RC +RC +RC +mW +mW +Hs +zJ +Aa +Aa +Aa +or +lL +or +or +lL +or +Aa +Aa +Aa +Aa +nc +Hq +iG +zV +lZ +lZ +lZ +lZ +jS +Kb +Kb +Kb +Kb +jS +lZ +lZ +lZ +lZ +zV +Il +iG +me +FT +FT +FT +Kd +JY +JY +JY +JY +JY +JY +Ua +FT +FT +FT +me +Hq +iG +zU +GE +GE +xj +wb +aJ +aJ +hW +aJ +aJ +jL +sP +Qw +wA +GE +zU +Hq +Ys +MN +MN +MN +MN +xz +KR +MN +MN +xz +xz +MN +MN +KR +xz +xz +MN +yu +Ys +mg +mg +Oq +Oq +Oq +Oq +uS +mg +mg +MS +nw +nw +nw +nw +mg +mg +yu +iG +Su +no +CN +Zq +CN +CN +CN +CN +CN +Zq +CN +Zq +Mj +dZ +Ne +Ne +YW +LY +LY +LY +LY +LY +LY +ch +"} +(31,1,1) = {" +ch +RC +RC +RC +RC +RC +AS +Ak +wk +Aa +Aa +Aa +zp +or +lL +lL +lL +lL +Gl +Aa +Aa +Aa +Aa +wk +Ak +Ak +kw +lZ +lZ +DX +lZ +yq +kV +kV +kV +kV +Lw +lZ +ei +lZ +lZ +kw +Ak +Ak +Tu +FT +FT +Ux +Sz +aY +sv +aY +aY +aY +aY +as +Ux +FT +FT +Tu +Ak +Ak +DQ +GE +GE +gv +Zj +TQ +TQ +LJ +TQ +TQ +TQ +Yh +KM +GE +GE +DQ +Ak +Ak +MN +MN +MN +GW +xz +MN +MN +GW +xz +xz +MN +MN +GW +MN +MN +MN +Ak +Ak +mg +mg +mg +Zl +mg +mg +mg +mg +Zl +mg +mg +mg +Ga +mg +mg +mg +Ak +Ak +Ye +CN +CN +Zq +CN +CN +CN +CN +Zq +CN +CN +CN +Mj +VK +VK +Ne +YW +LY +LY +LY +LY +LY +LY +ch +"} +(32,1,1) = {" +ch +RC +RC +RC +RC +RC +HS +Ak +Hs +ds +or +Aa +TZ +or +lL +lL +hh +lL +ea +wX +Aa +or +ru +Hs +nv +Ak +zV +ua +lZ +WU +lZ +yq +kV +RR +RR +kV +Lw +lZ +fy +lZ +lZ +zV +nv +Ak +Yq +lC +FT +Ux +mY +aY +aY +aY +aY +aY +aY +Un +Ux +FT +qm +Yq +nv +Ak +xT +tp +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +Js +xT +nv +Ak +MN +MN +MN +MN +MN +MN +MN +MN +MN +MN +MN +xz +MN +MN +MN +MN +Ak +Ak +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +Ak +Ri +Mj +YC +Zq +Zq +CN +CN +CN +CN +Zq +CN +CN +CN +Ye +VK +VK +Ne +YW +LY +LY +LY +LY +LY +LY +ch +"} +(33,1,1) = {" +ch +RC +RC +RC +RC +RC +HS +Ak +wk +Aa +Aa +Aa +QH +or +lL +lL +lL +lL +LE +Aa +Aa +Aa +Aa +wk +Ak +Ak +kw +lZ +lZ +RJ +lZ +yq +kV +kV +kV +kV +Lw +lZ +Ck +lZ +lZ +kw +Ak +Ak +Tu +FT +FT +Ux +Sz +aY +aY +aY +aY +sv +aY +as +Ux +FT +FT +Tu +Ak +Ak +DQ +GE +GE +yj +LL +Bn +Bn +Vw +Bn +Bn +Bn +Pz +Eu +wA +GE +DQ +Ak +Ak +MN +MN +MN +wg +MN +MN +MN +wg +MN +MN +MN +MN +wg +MN +MN +MN +Ak +Ak +mg +mg +mg +Vf +mg +mg +mg +mg +Vf +mg +mg +mg +Vf +mg +mg +mg +Ak +Ak +Ye +CN +CN +Zq +CN +CN +CN +CN +Zq +yA +CN +CN +Mj +VK +VK +Ne +YW +LY +LY +LY +LY +LY +LY +ch +"} +(34,1,1) = {" +ch +RC +RC +RC +RC +RC +Kk +Kk +Hs +OW +Aa +Aa +Aa +or +lL +or +or +lL +or +Aa +Aa +Aa +Aa +Tw +SO +WH +zV +lZ +lZ +lZ +lZ +jS +le +le +le +le +jS +lZ +lZ +lZ +lZ +zV +ZK +WH +me +FT +FT +FT +XS +EZ +EZ +EZ +EZ +EZ +EZ +Cm +FT +FT +FT +me +SO +WH +zU +GE +GE +xj +wb +aJ +aJ +hW +aJ +fM +aJ +sP +Qw +GE +GE +zU +SO +mw +MN +hG +hG +KR +MN +MN +hG +hG +MN +MN +MN +xz +MN +MN +MN +MN +wP +mw +mg +mg +Oq +Oq +Oq +Oq +mg +mg +mg +mg +nw +nw +nw +nw +mg +mg +wP +WH +Su +Jo +CN +EL +CN +CN +gu +CN +CN +Zq +CN +Zq +Mj +dZ +Ne +Ne +YW +LY +LY +LY +LY +LY +LY +ch +"} +(35,1,1) = {" +ch +CZ +CZ +CZ +CZ +CZ +Mo +Mo +Hs +SQ +En +Aa +Aa +Aa +Aa +CC +Aa +Pp +HG +Bb +Kt +zp +SQ +Hs +CZ +Mo +zV +zV +ZP +lZ +lZ +gF +lZ +lZ +dB +lZ +gF +lZ +lZ +Px +zV +zV +CZ +Mo +Yq +xi +aj +FT +FT +FN +FT +FT +FT +FT +FN +FT +FT +FT +xi +Yq +CZ +Mo +xT +CY +Ar +xj +hW +Ip +us +hW +aJ +aJ +Ip +hW +Qw +GE +CY +xT +CZ +xU +MN +MN +hG +hG +MN +jx +hG +MN +MN +hG +jx +KR +xz +xz +MN +MN +nq +xU +mg +uS +Oq +Oq +Oq +Oq +mg +mg +mg +MS +nw +nw +nw +nw +mg +mg +nq +Mo +Mj +kq +cq +fC +Zq +KZ +LA +LA +LA +LA +yA +rf +Mj +BM +Ne +Ru +CZ +uf +uf +uf +uf +uf +uf +ch +"} +(36,1,1) = {" +ch +RC +RC +RC +RC +RC +RC +RC +Nd +Hs +Hs +VM +pU +Hs +yG +SQ +Hs +yG +Hs +pU +In +yG +Hs +RC +RC +RC +Nd +rv +zV +op +fd +rv +Wy +BU +rv +Wy +rv +fd +RL +zV +zV +RC +RC +RC +Nd +Yq +yR +Ng +KS +Yq +yR +Yq +Yq +yR +Yq +KS +JU +yR +Yq +RC +RC +RC +Nd +xT +QO +QO +CY +xT +HQ +xT +xT +HQ +xT +CY +QO +QO +xT +RC +RC +RC +yk +MN +MN +MN +MN +MN +MN +MN +MN +MN +MN +MN +MN +MN +nz +pa +RC +RC +yk +mg +uS +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +mg +pa +RC +RC +Nd +Mj +Ub +BG +fF +Mj +Ub +Mj +Mj +Ub +Mj +Mj +Mj +lJ +lJ +RC +RC +LY +LY +LY +LY +LY +LY +ch +"} +(37,1,1) = {" +ch +zm +zm +Ce +zm +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +Ph +Ph +Ph +Qn +Ph +Ph +Ph +Qn +Ph +Ph +Ph +Qn +Ph +Ph +zm +Ce +zm +Ce +Ph +Ph +Ph +Qn +Ph +Ph +Ph +Qn +Ph +Ph +Ph +Qn +Ph +Ph +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +yc +yc +yc +rP +yc +yc +ch +"} +(38,1,1) = {" +ch +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +vS +vS +vS +vS +vS +vS +ch +"} +(39,1,1) = {" +ch +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +vS +vS +vS +vS +vS +vS +ch +"} +(40,1,1) = {" +ch +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +WM +WM +WM +WM +WM +WM +ch +"} +(41,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(42,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(43,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(44,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(45,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(46,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(47,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(48,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(49,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(50,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(51,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(52,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(53,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(54,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(55,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(56,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(57,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(58,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(59,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(60,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(61,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(62,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(63,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(64,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(65,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(66,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(67,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(68,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(69,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(70,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(71,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(72,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(73,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(74,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(75,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(76,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(77,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(78,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(79,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(80,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(81,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(82,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(83,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(84,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(85,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(86,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(87,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(88,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(89,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(90,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(91,1,1) = {" +ch +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +Co +ch +"} +(92,1,1) = {" +ch +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +EJ +ch +"} +(93,1,1) = {" +ch +Pa +Ht +Pa +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +Pa +Pa +Ht +Pa +jG +jG +iX +jG +jG +jG +ch +"} +(94,1,1) = {" +ch +RC +RC +RC +RC +RC +RC +RC +Nd +Ke +Ke +fb +BY +Ke +tI +gf +vn +Kr +vn +DK +Sx +Kr +vn +RC +RC +RC +Nd +sj +sj +sj +sj +sj +sj +Qd +GD +sj +sj +sj +sj +sj +sj +RC +RC +RC +Nd +dr +dY +CM +YT +dr +dY +dr +dr +dY +dr +YT +Zy +dY +dr +RC +RC +RC +Nd +Ch +Az +Az +Uk +Ch +Ch +Ch +Ch +Ch +Ch +Uk +Az +Az +Ch +RC +RC +RC +Nd +fj +Ow +FJ +fQ +fj +Ow +fj +fj +Ow +fj +fQ +TY +Ow +fj +RC +RC +RC +Nd +Ev +Sa +yW +dS +Ev +Sa +Ev +Ev +Sa +Ev +dS +tX +Sa +Ev +RC +RC +RC +Nd +CB +HL +uV +qX +CB +HL +CB +CB +HL +CB +qX +YO +HL +CB +RC +RC +LY +LY +LY +LY +LY +LY +ch +"} +(95,1,1) = {" +ch +CZ +CZ +CZ +CZ +CZ +CZ +Mo +Ke +gf +Fo +Py +jF +fN +yB +Ke +xq +kZ +sE +LX +LX +mq +OP +vn +CZ +Mo +sj +sj +lH +lH +Ii +YK +lH +lH +lH +lH +YK +Ii +lH +lH +sj +sj +CZ +Mo +dr +zE +Cu +Jz +Jz +PG +EX +qF +qY +Jz +aO +Jz +Vz +Bo +zE +dr +CZ +Mo +Ch +Uk +sX +sX +An +he +UF +AI +aL +sY +Fg +AL +yr +sX +Uk +Ch +CZ +Mo +fj +YH +iw +iw +iw +nb +et +KF +KF +nL +nb +iw +iw +iw +YH +fj +CZ +Mo +Ev +vo +se +se +JP +nK +Kh +wt +Ps +JP +nK +JP +aV +RV +vo +Ev +CZ +Mo +CB +CB +pT +pT +pT +pT +pT +yx +pT +pT +pT +pT +pT +pT +CB +CB +Mo +Mo +uf +uf +uf +uf +uf +ch +"} +(96,1,1) = {" +ch +RC +RC +RC +RC +RC +mv +Nd +tt +qZ +Zt +jF +jF +OG +OG +Ke +LX +LX +Lq +Lq +Lq +LX +LX +dM +Hq +iG +sj +lH +yz +Xr +lH +bT +yz +AX +yz +Sc +dz +lH +AX +yz +lH +sj +Il +iG +cs +fJ +Vz +Vz +PL +MJ +Vz +Vz +Vz +Vz +Vz +PL +YN +Vz +Jz +cs +Hq +iG +Li +mT +sY +An +An +sY +An +sY +sY +An +sY +An +An +sY +sY +Li +Hq +iG +Vn +VJ +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +Vn +Hq +iG +Ol +LO +jc +jc +JP +jc +JP +JP +JP +JP +jc +JP +jc +jc +Pf +Ol +Hq +iG +tJ +pT +pT +eX +pT +pT +Dc +pT +pT +Dc +pT +pT +eX +pT +pT +CB +mG +mW +LY +LY +LY +LY +LY +ch +"} +(97,1,1) = {" +ch +RC +RC +RC +RC +mv +mv +Nd +tt +cQ +jF +np +np +np +jF +Te +LX +sy +sy +sy +sy +sy +LX +Lh +Ak +Ak +Gj +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +Gj +Ak +Ak +Bh +Jz +Jz +PL +PL +Jz +Jz +PL +PL +Jz +Jz +PL +PL +Jz +Jz +Bh +Ak +Ak +Ds +sY +sY +sY +sY +gm +gm +gm +gm +gm +gm +sY +sY +sY +sY +Ds +Ak +Ak +sa +iw +et +et +CP +ry +vg +lo +Kl +vg +ry +CP +et +et +iw +sa +Ak +Ak +rn +JP +JP +jc +JP +JP +JP +jc +jc +JP +JP +JP +jc +JP +JP +rn +Ak +Ak +bi +pT +pT +Bu +pT +Dc +pT +pT +pT +pT +Dc +pT +Bu +pT +pT +bi +Ak +Kx +LY +LY +LY +LY +LY +ch +"} +(98,1,1) = {" +ch +RC +RC +RC +RC +mv +mv +Nd +tt +cQ +Py +np +np +np +iu +Ke +Lv +sy +Ej +Io +Ej +sy +LX +vn +nv +Ak +sj +HF +AX +AX +tk +dz +yz +AX +AX +yz +bT +tk +AX +AX +ms +sj +nv +Ak +dr +jy +Vz +YN +Jz +Vz +Vz +Vz +Vz +YN +Vz +Jz +Vz +Vz +Vb +dr +nv +Ak +Ch +QK +An +sY +sY +LI +LI +LI +LI +LI +LI +sY +sY +An +sI +Ch +nv +Ak +fj +br +Wr +LG +BN +ry +vg +LG +BN +vg +ry +BN +LG +Wr +Ei +fj +nv +Ak +Ev +NM +JP +JP +JP +bC +bC +bC +bC +bC +bC +bC +bC +JP +TP +Ev +nv +Ak +CB +pM +pT +IZ +pT +Dc +pT +Dc +Dc +pT +Dc +pT +IZ +pT +VU +CB +nv +kK +LY +LY +LY +LY +LY +ch +"} +(99,1,1) = {" +ch +RC +RC +RC +RC +KW +KW +Nd +tt +cQ +jF +np +np +np +jF +Te +LX +sy +sy +sy +sy +sy +LX +Lh +Ak +Ak +Gj +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +tk +Gj +Ak +Ak +Bh +Jz +Jz +PL +PL +Jz +Jz +PL +PL +Jz +Jz +PL +PL +Jz +Jz +Bh +Ak +Ak +Ds +sY +sY +sY +sY +sX +sX +mQ +sX +sX +sX +sY +sY +sY +sY +Ds +Ak +Ak +sa +iw +uX +uX +NG +ry +vg +lo +BN +vg +ry +gY +uX +uX +iw +sa +Ak +Ak +rn +JP +JP +jc +JP +qJ +qJ +tg +jB +qJ +qJ +qJ +jB +JP +JP +rn +Ak +Ak +bi +pT +pT +Bu +pT +Dc +pT +pT +pT +pT +Dc +pT +Bu +pT +pT +bi +Ak +kK +LY +LY +LY +LY +LY +ch +"} +(100,1,1) = {" +ch +RC +RC +RC +RC +RC +KW +Nd +tt +Nl +cZ +jF +jF +Km +Km +Ke +LX +LX +dv +dv +dv +LX +LX +Jv +SO +WH +sj +lH +yz +AX +lH +dz +AX +yz +AX +AX +dz +lH +yz +yz +lH +sj +ZK +WH +cs +VA +Vz +Vz +PL +QI +YN +Vz +MJ +Vz +Vz +PL +MJ +Vz +Jz +cs +SO +WH +Li +PQ +sY +An +An +sY +An +sY +sY +An +sY +An +An +sY +sY +Li +SO +WH +Vn +iw +iw +iw +iw +CI +iw +iw +iw +iw +iw +iw +iw +iw +iw +Vn +SO +WH +Ol +UW +jc +jc +JP +jB +JP +JP +JP +JP +jc +JP +jc +jc +JP +Ol +SO +WH +tJ +pT +pT +yP +pT +pT +Dc +pT +pT +Dc +pT +pT +yP +pT +pT +CB +sc +Kk +LY +LY +LY +LY +LY +ch +"} +(101,1,1) = {" +ch +CZ +CZ +CZ +CZ +CZ +CZ +Mo +Ke +gf +fT +Py +jF +qs +Yb +Ke +Os +LX +Lj +LX +Hn +ph +OP +vn +CZ +Mo +sj +sj +lH +lH +gr +JI +lH +lH +lH +lH +JI +gr +lH +lH +sj +sj +CZ +Mo +dr +zE +fX +Vz +Jz +yJ +Vz +OB +OB +Vz +yJ +Jz +Vz +Vz +zE +dr +CZ +Mo +Ch +Uk +QQ +sX +An +LU +gm +GU +GU +gm +ja +An +sX +sX +Uk +Ch +CZ +Mo +fj +YH +ha +iw +iw +Ie +uX +fi +fi +uX +Ie +iw +iw +iw +YH +fj +CZ +Mo +Ev +vo +AT +se +JP +Zx +gh +RE +Dw +ID +ez +qk +JP +JP +vo +Ev +CZ +Mo +CB +CB +pT +pT +pT +pT +pT +EQ +pT +pT +pT +pT +pT +pT +CB +CB +Mo +Mo +uf +uf +uf +uf +uf +ch +"} +(102,1,1) = {" +ch +RC +RC +RC +RC +RC +RC +RC +Nd +Ke +Ke +fb +BY +Ke +tI +gf +vn +Kr +vn +DK +Sx +Kr +vn +RC +RC +RC +Nd +Wd +sj +sj +sj +sj +sj +Qd +GD +sj +sj +sj +sj +sj +sj +RC +RC +RC +Nd +dr +dY +CM +YT +dr +dY +dr +dr +dY +dr +YT +Zy +dY +dr +RC +RC +RC +Nd +Ch +Az +Az +Uk +Ch +Ch +Ch +Ch +Ch +Ch +Uk +Az +Az +Ch +RC +RC +RC +Nd +fj +Ow +FJ +fQ +fj +Ow +fj +fj +Ow +fj +fQ +TY +Ow +fj +RC +RC +RC +Nd +Ev +Sa +yW +dS +Ev +Sa +Ev +Ev +Sa +Ev +tX +Sa +Sa +Ev +RC +RC +RC +Nd +CB +HL +uV +qX +CB +HL +CB +CB +HL +CB +qX +YO +HL +CB +RC +RC +LY +LY +LY +LY +LY +LY +ch +"} +(103,1,1) = {" +ch +zm +zm +Ce +zm +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +zm +zm +zm +Ce +yc +yc +yc +rP +yc +yc +ch +"} +(104,1,1) = {" +ch +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +vS +vS +vS +vS +vS +vS +ch +"} +(105,1,1) = {" +ch +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +vS +vS +vS +vS +vS +vS +ch +"} +(106,1,1) = {" +ch +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +WM +WM +WM +WM +WM +WM +ch +"} +(107,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(108,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(109,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(110,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(111,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(112,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(113,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(114,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(115,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(116,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(117,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(118,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(119,1,1) = {" +ch +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +ch +"} +(120,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(121,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(122,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(123,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(124,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(125,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(126,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(127,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(128,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(129,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(130,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(131,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(132,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(133,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(134,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(135,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(136,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(137,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(138,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(139,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(140,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} diff --git a/maps/redgate/train_upper.dmm b/maps/redgate/train_upper.dmm new file mode 100644 index 0000000000..64dd4e5fc3 --- /dev/null +++ b/maps/redgate/train_upper.dmm @@ -0,0 +1,23372 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/gym) +"ay" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper1) +"aE" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seclobby) +"aK" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/roof) +"aQ" = ( +/obj/structure/table/fancyblack, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm1) +"aR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/dorm4) +"aW" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/dorm3) +"bn" = ( +/obj/structure/table/darkglass, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"bq" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"bs" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"bx" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"bD" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/dorm6) +"bI" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper2) +"bN" = ( +/obj/random/vendorall, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper1) +"bS" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"bU" = ( +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"bW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/dorm3) +"bZ" = ( +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"ce" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/redgate/train/gym) +"ch" = ( +/turf/unsimulated/wall/dark, +/area/redgate/train/overboard) +"cm" = ( +/turf/simulated/shuttle/floor/white, +/area/redgate/train/gym) +"cp" = ( +/obj/structure/table/fancyblack, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/random/drinksoft, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm4) +"cs" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm6) +"cH" = ( +/obj/machinery/medical_kiosk, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"cP" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/leathercoat, +/obj/item/clothing/shoes/boots/jackboots, +/obj/item/clothing/under/rippedpunk, +/obj/item/clothing/accessory/collar/spike, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/glasses/sunglasses/aviator, +/obj/random/projectile/scrapped_shotgun, +/turf/simulated/floor/wood, +/area/redgate/train/dorm2) +"cQ" = ( +/obj/effect/floor_decal/spline/plain/corner, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"cS" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/chef) +"cU" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm2) +"dd" = ( +/obj/structure/bed/chair/shuttle_padded{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"dA" = ( +/obj/structure/closet/crate{ + color = "#FFD700" + }, +/obj/item/clothing/ears/earring/dangle/gold, +/obj/item/clothing/ears/earring/stud/gold, +/obj/random/tool/alien, +/obj/random/cash/huge, +/obj/random/mainttoyloot/nofail, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"dC" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/fountain6, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"dK" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"dL" = ( +/obj/structure/table/steel_reinforced, +/obj/random/snack, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"dV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dorm1) +"dW" = ( +/obj/structure/ladder/updown, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/roof) +"ea" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "vault" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"eg" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"ej" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/gym) +"ep" = ( +/obj/structure/table/marble, +/obj/random/snack, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"ey" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/helipad) +"eC" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"eD" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced, +/obj/item/weapon/storage/box/donut, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seclobby) +"eL" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/circuitry, +/obj/item/clothing/suit/circuitry, +/obj/item/clothing/shoes/circuitry, +/obj/item/clothing/head/circuitry, +/obj/item/clothing/gloves/circuitry, +/obj/item/clothing/glasses/circuitry, +/obj/item/clothing/ears/circuitry, +/obj/random/maintenance/engineering, +/turf/simulated/floor/wood, +/area/redgate/train/dorm5) +"eU" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"fm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/sleeper1) +"fn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/redgate/train/dorm5) +"ft" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"fF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/sleeper1) +"fG" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/gym) +"fJ" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"fL" = ( +/obj/structure/table/rack/steel, +/obj/random/grenade/less_lethal, +/obj/random/grenade/less_lethal, +/obj/random/grenade/less_lethal, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"fN" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"fT" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"gh" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"gj" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/machinery/button/remote/blast_door{ + id = "vault"; + name = "hidden switch"; + pixel_x = -1; + pixel_y = -9 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"gF" = ( +/mob/living/simple_mob/animal/passive/bird/goldcrest{ + name = "Aurelias"; + size_multiplier = 0.5; + vore_active = 1; + vore_bump_chance = 25 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"gG" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/train/chef) +"gT" = ( +/obj/machinery/door/airlock/silver{ + name = "Dorm Door" + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm6) +"gX" = ( +/obj/random/vendorall, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper2) +"gY" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/captain) +"hb" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/gear) +"he" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"hf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/dining) +"hh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"hi" = ( +/obj/machinery/vending/wallmed1/public{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"ht" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"hz" = ( +/obj/machinery/door/airlock/gold, +/turf/simulated/shuttle/floor/airless{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 293.15 + }, +/area/redgate/train/captain) +"hD" = ( +/obj/structure/table/fancyblack, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/wood, +/area/redgate/train/dorm2) +"hR" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/dining) +"hU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/sleeper1) +"hZ" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm4) +"if" = ( +/turf/simulated/floor/wood, +/area/redgate/train/dorm2) +"is" = ( +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"iu" = ( +/turf/simulated/floor/water/indoors, +/area/redgate/train/pool) +"iA" = ( +/obj/structure/closet/secure_closet{ + name = "train captain's locker"; + req_access = list(900) + }, +/obj/item/weapon/soap/golden_soap, +/obj/item/device/perfect_tele/frontier, +/obj/item/device/gps/command, +/obj/item/device/universal_translator, +/obj/item/device/megaphone/super, +/obj/item/device/binoculars/spyglass, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"iS" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"iZ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"jb" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm1) +"jd" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"jf" = ( +/obj/structure/table/rack/gun_rack/steel, +/obj/item/device/slow_sizegun, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"jh" = ( +/obj/machinery/recharger/wallcharger{ + pixel_y = 22 + }, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"jt" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"ju" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"jE" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gym) +"jF" = ( +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"jO" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"kc" = ( +/obj/structure/bed/chair/shuttle_padded, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"ke" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/kitchen) +"kh" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seclobby) +"kx" = ( +/obj/random/forgotten_tram, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/train/gym) +"kG" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/security) +"kK" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"kL" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/seclobby) +"kO" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper1) +"kS" = ( +/obj/effect/floor_decal/milspec_sterile/green/half{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"kT" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/train/dorm4) +"kV" = ( +/obj/structure/closet/chefcloset, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood, +/area/redgate/train/chef) +"kW" = ( +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"kX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm4) +"kY" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet Door" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/train/staff) +"la" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/head/service/sifguard/captain{ + desc = "A gold-trimmed peaked black uniform cap belonging to a Captain of the train."; + name = "Train captain's peaked cap" + }, +/obj/item/clothing/under/solgov/service/sifguard/command/command{ + desc = "The gold trimmed uniform of the train captain."; + name = "train captain's service uniform" + }, +/obj/item/clothing/accessory/medal/solgov/gold/sol{ + desc = "A gold medal awarded to the train captain for excellency in keeping the train moving."; + name = "Train captain's medal" + }, +/obj/structure/sign/goldenplaque{ + desc = "Faster than fairies, faster than witches, Bridges and houses, hedges and ditches; And charging along like troops in a battle, All through the meadows the horses and cattle: All of the sights of the hill and the plain Fly as thick as driving rain; And ever again, in the wink of an eye, Painted stations whistle by..."; + name = "The Most Movingest Captain Award for Train Moving"; + pixel_y = 27 + }, +/obj/item/clothing/shoes/magboots, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"lc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/kitchen) +"lo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"lp" = ( +/obj/structure/closet/walllocker_double/medical/east, +/obj/random/tetheraid, +/obj/random/tetheraid, +/obj/random/tetheraid, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"lx" = ( +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/security) +"lz" = ( +/obj/structure/table/standard, +/obj/machinery/microwave/advanced, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"lB" = ( +/obj/structure/table/fancyblack, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/random/drinkbottle, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm6) +"lG" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"lK" = ( +/obj/effect/step_trigger/death/fly_off, +/turf/simulated/open, +/area/redgate/train/overboard) +"lX" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm5) +"ma" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/train/gym) +"mb" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"mp" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm2) +"mw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/kitchen) +"mF" = ( +/obj/structure/closet, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/random/flashlight, +/obj/item/device/text_to_speech, +/obj/item/weapon/storage/box/matches, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"mL" = ( +/obj/effect/step_trigger/death/fly_off, +/obj/effect/step_trigger/death/fly_off, +/turf/simulated/open, +/area/redgate/train/overboard) +"mR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/vault) +"mV" = ( +/obj/structure/closet, +/obj/item/weapon/melee/telebaton, +/obj/item/weapon/folder/red, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"mW" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"mY" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm1) +"nc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/train/gym) +"ne" = ( +/obj/structure/closet/walllocker_double/engineering/south, +/obj/random/tool/power, +/obj/random/tool/power, +/obj/random/toolbox, +/obj/random/toolbox, +/obj/random/maintenance/engineering, +/obj/machinery/light, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"nk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dining) +"np" = ( +/turf/simulated/shuttle/floor/airless{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 293.15 + }, +/area/redgate/train/captain) +"nw" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"nG" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm3) +"nQ" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"ob" = ( +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/morestuff, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"og" = ( +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"ol" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"or" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/security) +"os" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dorm1) +"ow" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/dorm3) +"ox" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/command) +"oy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dorm6) +"oG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/redgate/train/command) +"oN" = ( +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"pg" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/sleeper1) +"ph" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"pn" = ( +/turf/simulated/shuttle/floor/white{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"pp" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/machinery/light, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"pu" = ( +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"py" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/dorm3) +"pA" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/security) +"pK" = ( +/obj/structure/table/darkglass, +/obj/item/toy/plushie/carp/gold, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"pU" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"qd" = ( +/obj/structure/table/fancyblack, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm5) +"qe" = ( +/obj/structure/table/fancyblack, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm2) +"qm" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/staff) +"qo" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/freezer) +"qr" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"qs" = ( +/turf/simulated/floor/water/deep/indoors, +/area/redgate/train/pool) +"qu" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/train/dorm3) +"qz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/train/chef) +"qJ" = ( +/obj/structure/bed/chair/shuttle_padded{ + dir = 4 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"qO" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/handcuffs/legcuffs, +/obj/item/weapon/handcuffs/legcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"qX" = ( +/obj/structure/closet/wardrobe, +/obj/item/clothing/under/sifcop{ + name = "Train security guard uniform" + }, +/obj/item/clothing/head/caphat/formal/fedcover/police{ + desc = "A train Officer's cap that demands discipline from the one who wears it."; + name = "Train officer's Cap" + }, +/obj/item/clothing/shoes/boots/jackboots/silver, +/obj/item/clothing/gloves/blue, +/obj/item/clothing/glasses/hud/security/jensenshades, +/obj/item/weapon/melee/telebaton, +/obj/item/device/ticket_printer/train, +/obj/item/taperoll/police, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/security) +"qZ" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"rf" = ( +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"rl" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/redgate/train/sleeper1) +"rr" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/seclobby) +"rB" = ( +/obj/structure/table/steel_reinforced, +/obj/random/plushie, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"rE" = ( +/turf/simulated/floor/wood, +/area/redgate/train/dorm6) +"rF" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"rG" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"rW" = ( +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"sd" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/redgate/train/command) +"sg" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"sl" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/hand_labeler, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"sp" = ( +/obj/structure/table/darkglass, +/obj/random/mug, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"su" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/train/dorm1) +"sv" = ( +/obj/machinery/door/airlock/silver{ + name = "Dorm Door" + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm3) +"sy" = ( +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"sA" = ( +/obj/structure/fitness/punchingbag, +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gym) +"sE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"sI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/open, +/area/redgate/train/overboard) +"sL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/gym) +"td" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/step_trigger/warning/train_edge, +/turf/simulated/open, +/area/redgate/train/overboard) +"tg" = ( +/obj/effect/floor_decal/spline/plain/corner{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"tt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/captain) +"tu" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/vault) +"tB" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper2) +"tF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dorm3) +"tI" = ( +/turf/simulated/floor/wood, +/area/redgate/train/dorm4) +"tK" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"tS" = ( +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/roof) +"ua" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"ue" = ( +/obj/structure/bed/chair/shuttle_padded{ + dir = 8 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"uf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/staff) +"uj" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/captain) +"un" = ( +/obj/structure/bed/chair/shuttle_padded{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"up" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/redgate/train/sleeper2) +"uC" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/taur/dress, +/obj/item/clothing/shoes/heels, +/obj/item/clothing/shoes/heels, +/obj/item/clothing/head/wedding, +/obj/item/toy/bouquet, +/turf/simulated/floor/wood, +/area/redgate/train/dorm4) +"uG" = ( +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"uN" = ( +/obj/item/weapon/inflatable_duck, +/turf/simulated/floor/water/deep/indoors, +/area/redgate/train/pool) +"uR" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/sleeper2) +"uS" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"uV" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/helipad) +"vb" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/shiny/gloves, +/obj/item/clothing/accessory/shiny/socks, +/obj/item/clothing/head/shiny_hood, +/obj/item/clothing/under/shiny/catsuit, +/obj/item/clothing/under/shiny/leotard, +/obj/item/weapon/handcuffs/fuzzy, +/obj/item/weapon/handcuffs/legcuffs/fuzzy, +/turf/simulated/floor/wood, +/area/redgate/train/dorm1) +"vd" = ( +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"vg" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"vi" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm2) +"vn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm4) +"vB" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"vD" = ( +/obj/structure/closet/athletic_swimwear, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"vH" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/sleeper2) +"vQ" = ( +/obj/structure/table/steel_reinforced, +/obj/random/toy, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"vS" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"vX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/open, +/area/redgate/train/dining) +"wg" = ( +/obj/machinery/door/airlock/hatch{ + name = "equipment door"; + req_one_access = list(900) + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gear) +"wk" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/pool) +"wl" = ( +/obj/structure/bed/chair/office, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"wn" = ( +/obj/structure/table/fancyblack, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm2) +"wp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/redgate/train/command) +"wt" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"wx" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"wB" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/command) +"wC" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper2) +"wS" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer{ + dir = 1 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seclobby) +"xe" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gym) +"xh" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/staff) +"xq" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"xu" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"xC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dining) +"xJ" = ( +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"xP" = ( +/obj/structure/table/rack/gun_rack/steel, +/obj/item/weapon/bluespace_harpoon, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"xS" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/gear) +"yc" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"yg" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seclobby) +"yo" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm1) +"yp" = ( +/obj/structure/table/steel_reinforced, +/obj/random/mug, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"yt" = ( +/obj/structure/foodcart, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"yv" = ( +/obj/structure/table/rack/shelf{ + color = "#FFD700" + }, +/obj/random/multiple/voidsuit/vintage, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"yz" = ( +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"yF" = ( +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"yG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/pool) +"yI" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/chef) +"yL" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"yS" = ( +/obj/structure/table/glass, +/obj/random/medical, +/obj/effect/floor_decal/milspec_sterile/green, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"zj" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tool/power, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"zp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"zG" = ( +/obj/machinery/vending/medical{ + dir = 4; + pixel_x = -9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"zV" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/medbay) +"zY" = ( +/obj/structure/table/standard, +/obj/structure/closet/walllocker_double/medical/east, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/tray, +/obj/item/weapon/tray, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"Aa" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gym) +"Ak" = ( +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"An" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"AB" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"AJ" = ( +/obj/structure/table/standard, +/obj/structure/closet/walllocker_double/kitchen/west, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/spacespice, +/obj/item/weapon/reagent_containers/food/condiment/spacespice, +/obj/item/weapon/reagent_containers/food/condiment/spacespice, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"AQ" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/roof) +"AS" = ( +/obj/effect/map_effect/portal/master/side_a{ + portal_id = "train2_north" + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"AT" = ( +/obj/structure/bed/chair/sofa/corp/corner, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"AY" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/train/dorm5) +"Bo" = ( +/obj/structure/closet/walllocker_double/medical/west, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Bp" = ( +/obj/machinery/icecream_vat, +/obj/machinery/light, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"Bt" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/sleeper1) +"Bu" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Bz" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/sign/warning/falling{ + desc = "This is a train in motion. Do not try to stand on the outside of the train. Take caution near railings. Do not attempt to fly from the moving train. Falling is guaranteed death, your body will not be recoverable."; + pixel_y = 31 + }, +/turf/simulated/open, +/area/redgate/train/overboard) +"BD" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"BK" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/command) +"BN" = ( +/obj/structure/closet/walllocker_double/engineering/north, +/obj/random/tank, +/obj/random/tank, +/obj/random/tank, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"BV" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/vending/wallmed1/public{ + pixel_x = -29 + }, +/obj/item/weapon/storage/lockbox, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/security) +"BY" = ( +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/water/deep/indoors, +/area/redgate/train/pool) +"BZ" = ( +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Cg" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm4) +"Ct" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/chef) +"Cx" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/security) +"CI" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/dorm1) +"CQ" = ( +/obj/structure/closet/walllocker_double/security/north, +/obj/item/device/gps/security{ + pixel_x = -3 + }, +/obj/item/device/gps/security{ + pixel_x = -3 + }, +/obj/item/device/gps/security{ + pixel_x = -3 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/security) +"CY" = ( +/turf/simulated/floor/wood, +/area/redgate/train/dorm3) +"Dc" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm6) +"Dj" = ( +/obj/structure/closet/wardrobe, +/obj/item/clothing/under/solgov/service/sifguard/skirt{ + desc = "A feminine version of the train staff service uniform"; + name = "train staff skirt" + }, +/obj/item/clothing/under/solgov/service/sifguard{ + desc = "The service uniform of the train staff."; + name = "train staff uniform" + }, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/gloves/white, +/obj/item/clothing/head/service/sifguard{ + desc = "A peaked black uniform cap belonging to the train staff."; + name = "\train staff cap" + }, +/obj/item/clothing/head/service/sifguard{ + desc = "A peaked black uniform cap belonging to the train staff."; + name = "\train staff cap" + }, +/obj/item/toy/bosunwhistle{ + desc = "A whistle used by the train staff. Suitable for ages 8 and up, do not swallow."; + name = "train whistle" + }, +/obj/item/toy/bosunwhistle{ + desc = "A whistle used by the train staff. Suitable for ages 8 and up, do not swallow."; + name = "train whistle" + }, +/obj/item/weapon/cane, +/obj/item/weapon/cane, +/obj/item/weapon/storage/wallet/random, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"Dm" = ( +/obj/machinery/door/airlock/angled_bay/double{ + name = "security door" + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seclobby) +"Du" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"DB" = ( +/mob/living/simple_mob/vore/wolftaur, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"DF" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"DI" = ( +/obj/structure/closet/wardrobe, +/obj/item/clothing/under/solgov/service/sifguard/skirt{ + desc = "A feminine version of the train staff service uniform"; + name = "train staff skirt" + }, +/obj/item/clothing/under/solgov/service/sifguard{ + desc = "The service uniform of the train staff."; + name = "train staff uniform" + }, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/gloves/white, +/obj/item/clothing/head/service/sifguard{ + desc = "A peaked black uniform cap belonging to the train staff."; + name = "\train staff cap" + }, +/obj/item/clothing/head/service/sifguard{ + desc = "A peaked black uniform cap belonging to the train staff."; + name = "\train staff cap" + }, +/obj/item/toy/bosunwhistle{ + desc = "A whistle used by the train staff. Suitable for ages 8 and up, do not swallow."; + name = "train whistle" + }, +/obj/item/toy/bosunwhistle{ + desc = "A whistle used by the train staff. Suitable for ages 8 and up, do not swallow."; + name = "train whistle" + }, +/obj/item/weapon/cane, +/obj/item/weapon/cane, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"DR" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"DT" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/dorm5) +"Ec" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/cook_guide, +/obj/random/snack, +/turf/simulated/floor/wood, +/area/redgate/train/chef) +"Ej" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gym) +"Em" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/dorm6) +"Eq" = ( +/obj/structure/table/rack/shelf, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"Ex" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/redgate/train/sleeper1) +"EB" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"EC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/command) +"EE" = ( +/obj/structure/table/glass, +/obj/item/device/defib_kit/loaded, +/obj/effect/floor_decal/milspec_sterile/green, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"EQ" = ( +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"EV" = ( +/obj/machinery/door/airlock/silver{ + name = "Dorm Door" + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm2) +"Fm" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm3) +"Fo" = ( +/obj/structure/closet/hydrant{ + pixel_x = -30 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper1) +"Fv" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Fy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dorm4) +"FR" = ( +/obj/structure/table/standard, +/obj/structure/sink/countertop{ + dir = 8 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"FV" = ( +/obj/structure/closet, +/obj/item/device/ticket_printer/train, +/obj/item/device/ticket_printer/train, +/obj/item/device/ticket_printer/train, +/obj/item/device/ticket_printer/train, +/obj/item/device/ticket_printer/train, +/obj/item/device/ticket_printer/train, +/obj/item/clothing/accessory/holster/hip/black, +/obj/item/clothing/accessory/holster/hip/black, +/obj/item/clothing/accessory/holster/hip/black, +/obj/item/clothing/accessory/holster/hip/black, +/obj/item/clothing/accessory/holster/hip/black, +/obj/item/clothing/accessory/holster/hip/black, +/obj/item/device/laser_pointer/red, +/obj/item/device/laser_pointer/purple, +/obj/item/device/laser_pointer/green, +/obj/item/device/laser_pointer/blue, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"Gj" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/medbay) +"Gk" = ( +/obj/structure/table/standard, +/obj/structure/sink/countertop{ + dir = 4 + }, +/obj/random/soap, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"Gq" = ( +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"Gr" = ( +/obj/structure/fuel_port{ + pixel_y = 29 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"Gv" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/seclobby) +"Gx" = ( +/obj/machinery/vending/wardrobe/secdrobe, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/security) +"Gy" = ( +/obj/item/instrument/violin/golden, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"GD" = ( +/obj/structure/fitness/weightlifter, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gym) +"Hg" = ( +/obj/random/vendorall, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"Hn" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"Ho" = ( +/obj/structure/ladder/updown{ + pixel_y = 19 + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"Hq" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/redgate/train/overboard) +"Hs" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/pool) +"HC" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"HK" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/security) +"HS" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"Ib" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm5) +"Ig" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Ik" = ( +/obj/structure/medical_stand, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"In" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/gym) +"Io" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"Iz" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seclobby) +"ID" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"II" = ( +/obj/effect/landmark/map_data/train, +/obj/effect/fake_sun{ + family = "train" + }, +/turf/unsimulated/wall/dark, +/area/redgate/train/overboard) +"IN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/redgate/train/dorm2) +"IT" = ( +/turf/simulated/floor/wood, +/area/redgate/train/dorm5) +"IV" = ( +/obj/structure/closet/chefcloset, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/storage/fancy/blackcandle_box, +/obj/item/weapon/storage/fancy/whitecandle_box, +/turf/simulated/floor/wood, +/area/redgate/train/chef) +"Jk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/train/command) +"Jp" = ( +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"JA" = ( +/obj/structure/table/steel_reinforced, +/obj/random/multiple, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/security) +"JJ" = ( +/obj/structure/closet/walllocker_double/medical/west, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular, +/obj/random/firstaid, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"JM" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper2) +"Kc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/sleeper1) +"Kk" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Km" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"Kn" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/chef) +"Kq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/freezer) +"Ku" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Kx" = ( +/obj/effect/map_effect/portal/master/side_b{ + dir = 1; + portal_id = "train2_north" + }, +/turf/simulated/floor{ + outdoors = 1 + }, +/area/redgate/train/connection) +"KW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/medbay) +"Lc" = ( +/obj/structure/toilet/prison{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/train/staff) +"Li" = ( +/obj/machinery/vending/fitness{ + dir = 8; + pixel_x = -8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/gym) +"Lj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"Lt" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Lv" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/redgate/train/overboard) +"LB" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/redgate/train/dorm5) +"LG" = ( +/obj/structure/flora/tree/jungle_small, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"LI" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/staff) +"LJ" = ( +/obj/machinery/vending/event/clothing, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"LK" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/curtain/medical, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/train/staff) +"LU" = ( +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/roof) +"Mb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/dorm1) +"Mf" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/kitchen) +"Mh" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"Mi" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"Mm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"Mo" = ( +/obj/structure/bed/chair/shuttle_padded{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"Mp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/redgate/train/dining) +"MA" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/storage/hooded/costume/carp, +/obj/random/mainttoyloot/nofail, +/turf/simulated/floor/wood, +/area/redgate/train/dorm3) +"MN" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/redgate/train/dining) +"MP" = ( +/obj/structure/closet/wardrobe, +/obj/item/clothing/under/solgov/service/sifguard{ + desc = "The service uniform of the train staff."; + name = "train staff uniform" + }, +/obj/item/clothing/under/solgov/service/sifguard/skirt{ + desc = "A feminine version of the train staff service uniform"; + name = "train staff skirt" + }, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/gloves/white, +/obj/item/clothing/head/service/sifguard{ + desc = "A peaked black uniform cap belonging to the train staff."; + name = "\train staff cap" + }, +/obj/item/clothing/head/service/sifguard{ + desc = "A peaked black uniform cap belonging to the train staff."; + name = "\train staff cap" + }, +/obj/item/toy/bosunwhistle{ + desc = "A whistle used by the train staff. Suitable for ages 8 and up, do not swallow."; + name = "train whistle" + }, +/obj/item/toy/bosunwhistle{ + desc = "A whistle used by the train staff. Suitable for ages 8 and up, do not swallow."; + name = "train whistle" + }, +/obj/item/weapon/cane, +/obj/item/weapon/cane, +/obj/random/snack, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"MW" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/chef) +"MY" = ( +/obj/structure/table/fancyblack, +/obj/item/broken_device/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm5) +"MZ" = ( +/turf/simulated/shuttle/floor/red, +/area/redgate/train/seclobby) +"Nl" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"No" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/milspec_sterile/green, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Nv" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/dorm1) +"NC" = ( +/obj/machinery/vitals_monitor, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"NE" = ( +/mob/living/simple_mob/vore/aggressive/panther{ + ai_holder_type = /datum/ai_holder/simple_mob/vore; + melee_damage_lower = 2; + melee_damage_upper = 3; + name = "guard panther" + }, +/turf/simulated/floor/redgrid/animated, +/area/redgate/train/gear) +"NF" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"NT" = ( +/obj/random/maintenance/engineering, +/turf/simulated/shuttle/floor/black{ + outdoors = 1 + }, +/area/redgate/train/helipad) +"NZ" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/dining) +"Oh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/redgate/train/sleeper2) +"Oj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"Os" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"Ov" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/train/dorm2) +"OD" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/redgate/train/dorm6) +"OG" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"OH" = ( +/obj/random/vendorall, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"Pf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/outdoors/grass, +/area/redgate/train/dining) +"Pg" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/pool) +"Ph" = ( +/obj/structure/table/rack{ + color = "#FFD700" + }, +/obj/random/multiple/underdark/treasure, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"Pp" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/donut, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/security) +"Pq" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"Pr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm5) +"Ps" = ( +/obj/structure/table/rack/gun_rack/steel, +/obj/item/weapon/gun/energy/netgun, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"Pv" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/helipad) +"Py" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Pz" = ( +/obj/effect/step_trigger/warning/train_edge, +/turf/simulated/open, +/area/redgate/train/overboard) +"PC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm2) +"PE" = ( +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"PH" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/security) +"PK" = ( +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"PO" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/dining) +"PQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/dining) +"PT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/freezer) +"Qa" = ( +/obj/structure/table/rack/shelf{ + color = "#FFD700" + }, +/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced/random, +/obj/random/maintenance/research, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"Qt" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/dorm2) +"QC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/sleeper2) +"QE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/train/sleeper1) +"QL" = ( +/obj/structure/table/rack{ + color = "#FFD700" + }, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"Rf" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"Rl" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/security) +"Rq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -13 + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"Rr" = ( +/obj/machinery/door/airlock/silver{ + name = "Dorm Door" + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm4) +"RE" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 8 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"RG" = ( +/obj/structure/table/fancyblack, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm3) +"RJ" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/sleeper2) +"RS" = ( +/obj/machinery/appliance/cooker/oven, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"RT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"RY" = ( +/obj/random/vendorall, +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seclobby) +"Sc" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Sd" = ( +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seclobby) +"Se" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/sleeper1) +"Sg" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm1) +"Sr" = ( +/turf/simulated/floor/wood, +/area/redgate/train/dorm1) +"Ss" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"Sx" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/fountain6, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/command) +"SC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/train/chef) +"SH" = ( +/turf/simulated/floor/wood, +/area/redgate/train/chef) +"SI" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/seclobby) +"SN" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/command) +"SQ" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/pool) +"SS" = ( +/turf/simulated/floor/glass{ + outdoors = 1 + }, +/area/redgate/train/roof) +"Te" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Tr" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm6) +"Ts" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/vault) +"Tt" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Tv" = ( +/obj/structure/closet/secure_closet/freezer/money, +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"Tw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/redgate/train/gym) +"Ty" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gift, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"TG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/kitchen) +"TH" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/airless{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 293.15 + }, +/area/redgate/train/captain) +"TP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"TR" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Ui" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"Us" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/suit_jacket, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/gloves/ring/wedding, +/obj/item/clothing/gloves/ring/wedding, +/obj/item/clothing/accessory/bowtie/black, +/turf/simulated/floor/wood, +/area/redgate/train/dorm6) +"Uy" = ( +/obj/structure/closet/crate/freezer, +/obj/random/donkpocketbox, +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"Uz" = ( +/obj/machinery/light/floortube, +/turf/simulated/floor/hull{ + outdoors = 1 + }, +/area/redgate/train/roof) +"UK" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"UO" = ( +/obj/structure/closet/walllocker_double/security/north{ + name = "evidence cabinet" + }, +/obj/item/weapon/flame/lighter/random, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/obj/random/mainttoyloot/nofail, +/obj/random/plushie, +/obj/random/unidentified_medicine/drug_den, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/security) +"UP" = ( +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/seclobby) +"UQ" = ( +/obj/machinery/door/airlock/silver{ + name = "Dorm Door" + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm5) +"UW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/train/dining) +"Va" = ( +/obj/structure/sign/directions/security/armory{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/gear) +"Vd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/train/staff) +"Vi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/step_trigger/warning/train_edge, +/turf/simulated/open, +/area/redgate/train/overboard) +"Vr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/sleeper2) +"Vs" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/gym) +"Vx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/captain) +"Vz" = ( +/turf/simulated/floor/wood, +/area/redgate/train/sleeper1) +"VA" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"VE" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm3) +"VM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/pool) +"VT" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/security) +"VU" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/captaindouble, +/turf/simulated/shuttle/floor/white{ + color = "#cccccc" + }, +/area/redgate/train/captain) +"Wc" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Wi" = ( +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Wk" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/melee/baton/shocker, +/obj/item/weapon/melee/baton/shocker, +/obj/item/weapon/melee/baton/shocker, +/turf/simulated/shuttle/floor/red, +/area/redgate/train/gear) +"Wn" = ( +/obj/structure/table/marble, +/obj/item/champagne, +/turf/simulated/shuttle/floor/skipjack{ + name = "floor"; + nitrogen = 82.1472; + oxygen = 21.8366 + }, +/area/redgate/train/dining) +"Wr" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/redgate/train/dining) +"Wy" = ( +/obj/structure/bed/chair/office{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"WH" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/redgate/train/overboard) +"WM" = ( +/turf/simulated/open, +/area/redgate/train/overboard) +"WZ" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/kafel_full, +/area/redgate/train/kitchen) +"Xk" = ( +/obj/structure/closet/walllocker_double/medical/east, +/obj/item/device/retail_scanner/medical, +/obj/item/weapon/gun/energy/mouseray/medical, +/obj/item/device/denecrotizer/medical, +/obj/item/device/glasses_kit, +/obj/random/maintenance/medical, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Xr" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/freezer) +"XJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/helipad) +"XN" = ( +/obj/structure/table/rack/gun_rack{ + color = "#FFD700" + }, +/obj/item/ammo_magazine/ammo_box/b44/rubber, +/obj/item/weapon/gun/projectile/deagle/gold, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"XP" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm2) +"XS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/redgate/train/dorm6) +"XU" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/kitchen) +"XW" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm5) +"XX" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm6) +"Yc" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/redgate/train/dining) +"Yd" = ( +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Yg" = ( +/turf/simulated/floor/wood, +/area/redgate/train/sleeper2) +"YA" = ( +/turf/simulated/floor/redgrid/animated, +/area/redgate/train/gear) +"YC" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/redgate/train/dorm4) +"YD" = ( +/obj/machinery/vending/blood, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"YG" = ( +/obj/machinery/door/airlock/silver{ + name = "Dorm Door" + }, +/turf/simulated/floor/wood, +/area/redgate/train/dorm1) +"YL" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer/cold, +/area/redgate/train/freezer) +"YN" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/medbay) +"YR" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/redgate/train/dorm4) +"Za" = ( +/turf/simulated/shuttle/floor/black, +/area/redgate/train/seclobby) +"Zb" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/train/staff) +"Zg" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm5) +"Zh" = ( +/obj/structure/table/rack{ + color = "#FFD700" + }, +/obj/item/weapon/reagent_containers/food/drinks/golden_cup, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"Zl" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Zo" = ( +/obj/structure/bed/chair/shuttle_padded{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/redgate/train/medbay) +"Zu" = ( +/obj/structure/sign/directions/security{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/redgate/train/seclobby) +"Zv" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/train/dorm3) +"Zx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/redgate/train/dining) +"ZP" = ( +/obj/structure/table/rack{ + color = "#FFD700" + }, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/gold, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/vault) +"ZW" = ( +/obj/machinery/door/airlock/glass{ + desc = "A sliding glass door. It opens and closes."; + name = "glass door" + }, +/turf/simulated/shuttle/floor/yellow, +/area/redgate/train/medbay) + +(1,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +II +"} +(2,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(3,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(4,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(5,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(6,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(7,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(8,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(9,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(10,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(11,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(12,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(13,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(14,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(15,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(16,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(17,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(18,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(19,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(20,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(21,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(22,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(23,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(24,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(25,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(26,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(27,1,1) = {" +ch +lK +lK +lK +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +td +td +td +td +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +mL +mL +mL +mL +mL +mL +mL +mL +mL +ch +"} +(28,1,1) = {" +ch +lK +lK +lK +Pz +WM +WM +WM +WM +Hs +Hs +VM +Hs +Hs +yG +SQ +ai +sL +ai +ej +In +sL +ej +WM +WM +WM +WM +zV +zV +KW +KW +zV +zV +KW +KW +zV +zV +KW +KW +zV +zV +WM +WM +WM +WM +ey +pU +pU +pU +Io +NT +Gq +Gq +Gq +Km +pU +pU +pU +ey +WM +WM +WM +WM +qm +Vd +Vd +xh +qm +qm +qm +qm +qm +qm +xh +Vd +Vd +qm +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(29,1,1) = {" +ch +lK +lK +lK +Pz +WM +WM +WM +Hs +SQ +Pg +yz +yz +yz +yz +eC +ej +kx +ej +Ej +Aa +sA +ai +ej +WM +WM +zV +YN +AB +Tt +Tt +Bo +NC +Ik +YD +Fv +JJ +Tt +Tt +Du +YN +zV +WM +WM +ey +uV +BN +Gq +Gq +Gq +qr +Gq +Gq +qr +Gq +Gq +Gq +Mm +uV +ey +WM +WM +qm +xh +MP +DI +Dj +mF +FV +Rf +ua +LK +Rq +ua +kY +Lc +xh +xh +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(30,1,1) = {" +ch +lK +lK +lK +Pz +WM +Hq +Hq +Hs +LJ +cQ +hh +hh +hh +hh +qZ +ej +ma +ej +Aa +Aa +Aa +Li +nc +Hq +Hq +zV +bs +og +HC +Ig +bZ +bZ +kS +kS +bZ +bZ +jt +Wc +EQ +zG +zV +Hq +Hq +XJ +Gq +Gq +Gq +sg +Gq +pn +Gq +Gq +pn +Gq +Gq +Gq +Gq +Gq +XJ +Hq +Hq +uf +Zb +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +qm +qm +qm +xh +sI +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +LU +LU +aK +SS +SS +SS +SS +SS +SS +SS +aK +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(31,1,1) = {" +ch +lK +lK +lK +Pz +WM +AS +Ak +wk +yz +fN +iu +qs +BY +qs +sE +ej +Aa +Aa +GD +Aa +Aa +Aa +fG +Ak +Ak +ZW +EB +bZ +iS +Zo +bZ +bZ +he +Bu +bZ +bZ +kc +HC +bZ +rW +ZW +Ak +Ak +Pv +Gq +Gq +Gq +Gq +Gq +pn +Gq +Gq +pn +Gq +Gq +sg +Gq +Gq +Pv +Ak +Ak +LI +ua +wl +tK +tK +Wy +ua +wl +tK +yp +Wy +ua +ua +ua +Rf +LI +Ak +Lv +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +tS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(32,1,1) = {" +ch +lK +lK +lK +Pz +WM +HS +Ak +Hs +yz +fN +iu +qs +qs +qs +sE +ej +xe +Aa +Aa +Aa +Aa +Aa +ej +Ho +Ak +zV +pu +bZ +oN +bZ +bZ +bZ +wx +No +bZ +bZ +bZ +uG +bZ +hi +zV +Ho +Ak +ey +xJ +Gq +Gq +Gq +Gq +pn +pn +pn +pn +Gq +Gq +Gq +Gq +Gq +ey +Ho +Ak +qm +ua +wl +dL +yp +Wy +ua +wl +zj +tK +Wy +ua +ua +ua +ua +qm +Ho +Lv +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +dW +LU +LU +LU +LU +LU +LU +Uz +LU +LU +LU +LU +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(33,1,1) = {" +ch +lK +lK +lK +Pz +WM +HS +Ak +wk +yz +fN +iu +uN +qs +qs +sE +Vs +Aa +Aa +jE +Aa +Aa +Aa +fG +Ak +Ak +ZW +EB +bZ +Wc +Zo +bZ +bZ +EE +yS +bZ +bZ +kc +iS +bZ +rW +ZW +Ak +Ak +Pv +Gq +Gq +Gq +Gq +Gq +pn +Gq +Gq +pn +Gq +Gq +Gq +Gq +Gq +Pv +Ak +Ak +LI +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +LI +Ak +Lv +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +tS +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(34,1,1) = {" +ch +lK +lK +lK +Pz +WM +WH +WH +Hs +vD +fT +ph +ph +ph +ph +tg +cm +Aa +Aa +Aa +Aa +Aa +Aa +Tw +WH +WH +zV +cH +Yd +HC +jt +bZ +bZ +eU +eU +bZ +bZ +DR +HC +BZ +ht +zV +WH +WH +XJ +Gq +Gq +Gq +Gq +Gq +pn +Gq +sg +pn +Gq +Gq +Gq +Gq +Gq +XJ +WH +WH +uf +lG +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +ua +rG +uf +WH +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +LU +LU +AQ +SS +SS +SS +SS +SS +SS +SS +AQ +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(35,1,1) = {" +ch +lK +lK +lK +Pz +WM +WM +WM +Hs +SQ +Pg +yz +yz +yz +yz +eC +ej +ce +ce +Aa +Aa +sA +ai +ej +WM +WM +zV +YN +ju +yc +yc +yL +Xk +yc +yc +lp +yL +yc +yc +Zl +YN +zV +WM +WM +ey +uV +Gr +Gq +Gq +Gq +jd +Gq +Gq +jd +Gq +Gq +Gq +ne +uV +ey +WM +WM +qm +xh +DF +rB +DF +RT +DF +ob +DF +vQ +DF +Ty +DF +vd +xh +qm +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(36,1,1) = {" +ch +lK +lK +lK +Pz +WM +WM +WM +WM +Hs +Hs +VM +Hs +Hs +yG +SQ +ai +sL +ej +ej +In +sL +ej +WM +WM +WM +WM +Gj +zV +KW +KW +zV +zV +KW +KW +zV +zV +KW +KW +zV +zV +WM +WM +WM +WM +ey +Hn +Hn +Hn +ID +Gq +Gq +Gq +Gq +Lj +Hn +Hn +Hn +ey +WM +WM +WM +WM +qm +Vd +Vd +xh +qm +qm +qm +qm +qm +qm +xh +Vd +Vd +qm +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +WM +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +LU +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(37,1,1) = {" +ch +lK +lK +lK +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Vi +Vi +Vi +Vi +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(38,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(39,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(40,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(41,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(42,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(43,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(44,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(45,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(46,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(47,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(48,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(49,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(50,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(51,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(52,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(53,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(54,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(55,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(56,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(57,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(58,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(59,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(60,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(61,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(62,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(63,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(64,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(65,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(66,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(67,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(68,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(69,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(70,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(71,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(72,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(73,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(74,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(75,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(76,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(77,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(78,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(79,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(80,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(81,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(82,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(83,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(84,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(85,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(86,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(87,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(88,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(89,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(90,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(91,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(92,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +ch +"} +(93,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +td +td +td +td +td +td +td +td +td +td +td +td +td +td +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +lK +lK +lK +ch +"} +(94,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +WM +gY +gY +Vx +gY +uj +EC +BK +wB +EC +wB +wB +ox +EC +wB +WM +WM +WM +WM +VT +VT +VT +VT +VT +VT +Cx +Cx +VT +SI +SI +SI +SI +SI +WM +WM +WM +WM +Se +fm +hU +Se +Se +fm +Se +Se +fm +Se +Se +fF +fm +Se +WM +WM +WM +WM +uR +QC +QC +vH +uR +uR +uR +uR +uR +uR +vH +QC +QC +uR +WM +WM +WM +WM +NZ +ft +PE +PE +ft +ft +ft +ft +ft +PE +PE +PE +ft +NZ +WM +WM +WM +WM +NZ +xC +hf +NZ +NZ +xC +NZ +NZ +xC +NZ +NZ +nk +xC +NZ +WM +WM +WM +WM +XU +mw +TG +XU +XU +mw +XU +XU +mw +yI +MW +SC +Ct +yI +WM +WM +WM +WM +Pz +lK +lK +lK +ch +"} +(95,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +gY +uj +iA +jF +gj +gY +Jp +eg +sd +wp +Hg +Jp +Jp +uS +BK +wB +WM +WM +VT +HK +lx +Pp +BV +or +or +PH +or +Rl +Dm +Sd +kh +aE +Gv +SI +WM +WM +Se +Bt +kO +Vz +Vz +QE +Vz +rl +Ex +bN +QE +Vz +Vz +ay +Bt +Se +WM +WM +uR +vH +wC +Yg +Yg +bI +Yg +up +Oh +gX +bI +Yg +Yg +JM +vH +uR +WM +WM +NZ +hR +UK +VA +Yc +ft +ft +ft +ft +ft +VA +vB +Yc +rF +hR +NZ +WM +WM +NZ +hR +mW +nw +bx +ft +ft +vX +MN +ft +Ku +TR +TR +mb +hR +NZ +WM +WM +XU +ke +Oj +lz +WZ +RS +yF +AJ +Gk +pp +MW +kV +SH +qz +yI +MW +WM +WM +WM +Pz +lK +lK +lK +ch +"} +(96,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +tt +dK +jF +jF +np +hz +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jk +Hq +Hq +VT +UO +Rl +Rl +Rl +Rl +Rl +Rl +Rl +Rl +Za +MZ +yg +Za +Za +Zu +Hq +Hq +Kc +Fo +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Kc +Hq +Hq +Vr +tB +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Vr +Hq +Hq +PQ +fJ +ft +ft +ft +bx +bx +xu +bx +bx +ft +ft +ft +ft +ft +PQ +Hq +Hq +PQ +ft +Py +Wi +bx +ft +ft +ft +ft +ft +bx +Wn +Wi +bx +ft +PQ +Hq +Hq +lc +nQ +PK +PK +PK +PK +PK +PK +PK +PK +MW +IV +SH +SH +Ec +MW +sI +Hq +WM +Pz +lK +lK +lK +ch +"} +(97,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +tt +sp +gF +np +TH +uj +Ts +Ts +Ts +Ts +Ts +Ts +Jp +Jp +Jp +SN +Ak +Ak +kG +Rl +Rl +Rl +Rl +Rl +Rl +Rl +Rl +Rl +SI +rr +Iz +Sd +Za +kL +Ak +Ak +pg +Vz +Vz +ow +sv +aW +Qt +EV +Qt +Qt +CI +YG +Nv +Vz +Vz +pg +Ak +Ak +RJ +Yg +Yg +Em +gT +bD +DT +UQ +DT +DT +YR +Rr +YC +Yg +Yg +RJ +Ak +Ak +PO +ft +ft +ft +ft +bx +vg +lo +zp +bx +bx +Mo +ft +ft +ft +PO +Ak +Ak +PO +ft +bx +bx +bx +ft +ft +ft +ft +ft +bx +ue +ue +bx +ft +PO +Ak +Ak +Mf +PK +PK +PK +PK +PK +PK +PK +PK +PK +cS +SH +gG +SH +SH +Kn +Ak +Kx +WM +Pz +lK +lK +lK +ch +"} +(98,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +tt +bn +un +np +np +gY +dA +sy +ZP +Ph +Mh +ea +Jp +Sx +sl +wB +Ho +Ak +VT +Rl +Rl +JA +pA +hb +wg +Va +hb +hb +SI +MZ +wS +Sd +Za +SI +Ho +Ak +aW +ow +ow +ow +CY +ow +Ov +if +wn +hD +Nv +Sr +Nv +Nv +Nv +CI +Ho +Ak +bD +Em +Em +Em +rE +Em +AY +IT +MY +LB +YC +tI +YC +YC +YC +YR +Ho +Ak +NZ +ft +ft +ft +ft +bx +Nl +LG +OG +bx +bx +Wi +ft +ft +ft +NZ +Ho +Ak +NZ +ft +ft +ft +ft +ft +Wr +Zx +Zx +Mp +ft +ft +ft +ft +ft +NZ +Ho +Ak +XU +jO +PK +PK +wt +WZ +WZ +ol +PK +PK +MW +MW +MW +MW +MW +MW +Ho +kK +WM +Pz +lK +lK +lK +ch +"} +(99,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +tt +dC +jF +np +TH +gY +Qa +sy +sy +sy +sy +ea +Jp +xq +Jp +wB +Ak +Ak +kG +Rl +Rl +Rl +Rl +hb +rf +TP +rf +Ps +SI +rr +Iz +Sd +Za +kL +Ak +Ak +ow +Zv +Fm +CY +CY +ow +cP +if +if +PC +Nv +Sr +Sr +jb +Sg +Nv +Ak +Ak +Em +cs +XX +rE +rE +Em +eL +IT +IT +Pr +YC +tI +tI +vn +kX +YC +is +Ak +PO +ft +ft +ft +ft +bx +NF +Os +Pf +bx +bx +dd +ft +ft +ft +PO +Ak +Ak +PO +ft +bx +bx +bx +ft +ft +ft +ft +ft +bx +qJ +qJ +bx +ft +PO +Ak +Ak +Mf +PK +PK +PK +PK +PK +PK +PK +PK +PK +An +bU +BD +bU +bU +An +Ak +kK +WM +Pz +lK +lK +lK +ch +"} +(100,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +tt +dK +jF +jF +np +gY +yv +sy +kW +sy +sy +ea +Jp +Jp +Jp +oG +WH +WH +VT +CQ +Rl +Rl +Rl +hb +jh +NE +YA +jf +SI +MZ +eD +Za +Za +SI +WH +WH +bW +nG +VE +CY +CY +ow +XP +XP +XP +XP +Nv +Sr +Sr +yo +mY +Mb +WH +WH +XS +Tr +Dc +rE +rE +Em +Ib +Ib +Ib +Ib +YC +tI +tI +hZ +Cg +aR +WH +WH +PQ +OH +ft +ft +ft +bx +bx +Lt +bx +bx +ft +ft +ft +ft +ft +PQ +WH +WH +PQ +ft +Te +Wi +bx +ft +ep +Wi +Wi +ft +bx +Wn +Wi +bx +ft +PQ +WH +WH +lc +vS +PK +PK +PK +PK +PK +PK +PK +yt +qo +Tv +bU +bU +Eq +qo +Bz +WH +WM +Pz +lK +lK +lK +ch +"} +(101,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +gY +uj +la +VU +pK +gY +XN +Gy +QL +Zh +sy +ea +Jp +mV +BK +wB +WM +WM +VT +HK +Gx +qX +qX +hb +fL +qO +Wk +xP +SI +Sd +UP +RY +Gv +SI +WM +WM +ow +aW +RG +MA +qu +ow +qe +cU +vi +mp +Nv +su +vb +aQ +CI +Nv +WM +WM +Em +bD +lB +Us +OD +Em +qd +XW +Zg +lX +YC +kT +uC +cp +YR +YC +WM +WM +NZ +hR +UK +Pq +Ui +ft +ft +DB +ft +ft +Pq +bS +Ui +rF +hR +NZ +WM +WM +NZ +hR +AT +Kk +bx +ft +gh +Sc +Kk +ft +gh +RE +RE +bq +hR +NZ +WM +WM +XU +ke +Oj +lz +WZ +Ss +Mi +zY +FR +Bp +qo +iZ +Uy +YL +Xr +qo +WM +WM +WM +Pz +lK +lK +lK +ch +"} +(102,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +WM +gY +gY +Vx +gY +uj +mR +tu +Ts +mR +Ts +Ts +ox +EC +wB +WM +WM +WM +WM +Cx +VT +VT +VT +hb +hb +xS +xS +hb +SI +SI +SI +SI +SI +WM +WM +WM +WM +ow +tF +py +ow +ow +Qt +IN +IN +Qt +Nv +Nv +os +dV +Nv +WM +WM +WM +WM +Em +oy +oy +bD +Em +DT +fn +fn +DT +YC +YR +Fy +Fy +YC +WM +WM +WM +WM +NZ +ft +PE +PE +ft +ft +ft +ft +ft +PE +PE +PE +ft +NZ +WM +WM +WM +WM +NZ +UW +xC +NZ +NZ +UW +NZ +NZ +UW +NZ +xC +UW +xC +NZ +WM +WM +WM +WM +XU +mw +TG +XU +XU +mw +XU +XU +mw +Xr +qo +Kq +PT +Xr +WM +WM +WM +WM +Pz +lK +lK +lK +ch +"} +(103,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Vi +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +mL +mL +mL +ch +"} +(104,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(105,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(106,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(107,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(108,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(109,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(110,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(111,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(112,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(113,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(114,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(115,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(116,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(117,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(118,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(119,1,1) = {" +ch +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +lK +mL +mL +mL +ch +"} +(120,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(121,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(122,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(123,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(124,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(125,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(126,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(127,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(128,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(129,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(130,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(131,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(132,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(133,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(134,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(135,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(136,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(137,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(138,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(139,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} +(140,1,1) = {" +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +ch +"} diff --git a/maps/stellar_delight/ship_centcom.dmm b/maps/stellar_delight/ship_centcom.dmm index 5948994310..7b676d4c91 100644 --- a/maps/stellar_delight/ship_centcom.dmm +++ b/maps/stellar_delight/ship_centcom.dmm @@ -402,8 +402,8 @@ /area/centcom/specops) "bc" = ( /obj/structure/table/rack, -/obj/item/weapon/storage/pill_bottle/iron, -/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/blood_regen, +/obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, /turf/simulated/floor/tiled/dark, /area/centcom/specops) diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index be8004e3e9..f9d20b291c 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -3785,6 +3785,13 @@ /obj/structure/low_wall/bay/reinforced/steel, /turf/simulated/floor, /area/maintenance/stellardelight/deck2/portfore) +"hP" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) "hQ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, @@ -3866,6 +3873,15 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/eris/cafe, /area/crew_quarters/kitchen) +"ia" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/table/bench/steel, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) "ib" = ( /obj/machinery/power/grounding_rod, /obj/structure/cable/yellow{ @@ -3880,6 +3896,11 @@ /obj/effect/landmark/start/visitor, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/crew_quarters/bar) +"id" = ( +/obj/structure/table/bench/steel, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) "ie" = ( /turf/simulated/wall/bay/r_wall/steel, /area/maintenance/stellardelight/deck2/portsolars) @@ -5274,7 +5295,6 @@ /obj/structure/closet/secure_closet/captains, /obj/item/clothing/glasses/omnihud/all, /obj/item/weapon/disk/nuclear, -/obj/item/weapon/paper/dockingcodes/sd, /obj/item/device/retail_scanner/command, /turf/simulated/floor/wood, /area/crew_quarters/captain) @@ -14219,7 +14239,7 @@ input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; - sensors = list("burn_chamber"="Burn Chamber"); + sensors = list("burn_chamber" = "Burn Chamber"); throwpass = 1 }, /turf/simulated/floor, @@ -14755,7 +14775,7 @@ frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; - sensors = list("dist_main_meter"="Surface - Distribution Loop","scrub_main_meter"="Surface - Scrubbers Loop","mair_main_meter"="Surface - Mixed Air Tank","dist_aux_meter"="Station - Distribution Loop","scrub_aux_meter"="Station - Scrubbers Loop","mair_aux_meter"="Station - Mixed Air Tank","mair_mining_meter"="Mining Outpost - Mixed Air Tank") + sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank") }, /obj/machinery/power/apc/angled{ dir = 1 @@ -18491,7 +18511,7 @@ name = "box of measuring cups"; pixel_x = 2; pixel_y = 3; - starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup=7) + starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7) }, /turf/simulated/floor/tiled/eris/cafe, /area/crew_quarters/kitchen) @@ -19423,14 +19443,6 @@ }, /turf/simulated/floor/airless, /area/stellardelight/deck2/exterior) -"QJ" = ( -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) "QK" = ( /obj/machinery/atmospherics/omni/mixer{ name = "Air Mixer"; @@ -19662,10 +19674,6 @@ }, /turf/simulated/floor/tiled/eris/steel/brown_platform, /area/quartermaster/storage) -"Ri" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/eris/dark/cargo, -/area/crew_quarters/recreation_area) "Rj" = ( /obj/effect/floor_decal/milspec/color/blue/half{ dir = 4 @@ -32383,7 +32391,7 @@ De QZ Ho aE -QJ +ia WR nt Rq @@ -33092,7 +33100,7 @@ Dl UX UX UX -vS +hP mt mt mt @@ -33660,7 +33668,7 @@ Dl UX UX UX -vS +hP mt mt mt @@ -34229,7 +34237,7 @@ cC iO mt lO -Ri +id sH nt Rq diff --git a/maps/stellar_delight/stellar_delight3.dmm b/maps/stellar_delight/stellar_delight3.dmm index d3f16acdfd..1654195a57 100644 --- a/maps/stellar_delight/stellar_delight3.dmm +++ b/maps/stellar_delight/stellar_delight3.dmm @@ -2840,7 +2840,6 @@ }, /obj/structure/closet/secure_closet/hop, /obj/item/clothing/glasses/omnihud, -/obj/item/weapon/paper/dockingcodes/sd, /obj/item/device/retail_scanner/command, /obj/item/weapon/storage/box/PDAs, /turf/simulated/floor/tiled, diff --git a/maps/stellar_delight/stellar_delight_defines.dm b/maps/stellar_delight/stellar_delight_defines.dm index 6fbdaddf03..5046e53112 100644 --- a/maps/stellar_delight/stellar_delight_defines.dm +++ b/maps/stellar_delight/stellar_delight_defines.dm @@ -175,7 +175,10 @@ list("Redgate - Eggnog Town Underground","Redgate - Eggnog Town"), list("Redgate - Star Dog"), list("Redgate - Hotsprings"), - list("Redgate - Rain City") + list("Redgate - Rain City"), + list("Redgate - Islands Underwater","Redgate - Islands"), + list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"), + list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town") ) ai_shell_restricted = TRUE diff --git a/maps/submaps/_helpers.dm b/maps/submaps/_helpers.dm index 4bf18fafbd..5ff6dc8eb2 100644 --- a/maps/submaps/_helpers.dm +++ b/maps/submaps/_helpers.dm @@ -132,4 +132,56 @@ /obj/structure/fake_stairs/west/bottom name = "stairs" dir = WEST - stepoff_dir = EAST \ No newline at end of file + stepoff_dir = EAST + +//Inactive stairs are completely cosmetic versions of fake_stairs +/obj/structure/inactive_stairs + name = "use a subtype! - stairs" + icon = 'icons/obj/structures/multiz.dmi' + icon_state = "stair" + density = 0 + opacity = 0 + anchored = 1 + plane = TURF_PLANE + layer = ABOVE_TURF_LAYER + appearance_flags = PIXEL_SCALE|KEEP_TOGETHER + +/obj/structure/inactive_stairs/north/top + name = "stairs" + dir = NORTH + color = "#B0B0B0" + pixel_y = -32 + +/obj/structure/inactive_stairs/north/bottom + name = "stairs" + dir = NORTH + pixel_y = -32 + +/obj/structure/inactive_stairs/south/top + name = "stairs" + dir = SOUTH + color = "#B0B0B0" + +/obj/structure/inactive_stairs/south/bottom + name = "stairs" + dir = SOUTH + +/obj/structure/inactive_stairs/east/top + name = "stairs" + dir = EAST + color = "#B0B0B0" + pixel_x = -32 + +/obj/structure/inactive_stairs/east/bottom + name = "stairs" + dir = EAST + pixel_x = -32 + +/obj/structure/inactive_stairs/west/top + name = "stairs" + dir = WEST + color = "#B0B0B0" + +/obj/structure/inactive_stairs/west/bottom + name = "stairs" + dir = WEST diff --git a/maps/submaps/admin_use_vr/RPshuttle.dmm b/maps/submaps/admin_use_vr/RPshuttle.dmm new file mode 100644 index 0000000000..f2dedc575a --- /dev/null +++ b/maps/submaps/admin_use_vr/RPshuttle.dmm @@ -0,0 +1,20006 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/space, +/area/space) +"c" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/shuttle/floor, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"f" = ( +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/shuttle/floor, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"g" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + door_color = "#822a1e"; + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Shuttle Airlock" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"m" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -31 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"p" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/floor, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"v" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/alarm, +/obj/structure/panic_button{ + pixel_y = 31 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"x" = ( +/obj/effect/shuttle_landmark/automatic/admin_use1, +/turf/space, +/area/space) +"E" = ( +/obj/machinery/computer/shuttle_control/emergency{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/shuttle/floor, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"G" = ( +/obj/effect/overmap/visitable/ship/admin_use{ + name = "Rascal Pass-Central Shuttle"; + scanner_desc = "[i]Registration[/i]: NTS Blueline[i]Class[/i]: Transport shuttle[i]Transponder[/i]: INACTIVE[b]Notice[/b]: High amounts of space carp detected near the shuttle." + }, +/turf/space, +/area/space) +"I" = ( +/obj/machinery/ion_engine{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"K" = ( +/turf/simulated/shuttle/floor, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"M" = ( +/turf/simulated/shuttle/wall, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"R" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + door_color = "#822a1e"; + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Shuttle Airlock" + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) +"W" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/admin_upload/AU2{ + requires_power = 0 + }) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(11,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(18,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(21,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(22,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(23,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(24,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(26,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(27,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(28,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(29,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(31,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(32,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(33,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(34,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(35,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(36,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(37,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(38,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(39,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(41,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(42,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(43,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(44,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(45,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(46,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(47,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(48,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(49,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(50,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(51,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(52,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(53,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(54,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(55,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(56,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(57,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(58,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(59,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(60,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +x +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(61,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(62,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(63,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(64,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(65,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(66,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(67,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(68,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +G +M +I +M +M +p +p +g +p +p +M +M +I +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(69,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +M +M +M +W +W +W +K +W +W +W +M +M +M +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(70,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +W +m +W +K +K +K +K +K +K +K +W +m +W +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(71,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +W +W +W +f +W +W +W +W +W +c +W +W +W +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(72,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +R +K +K +K +K +K +K +K +K +K +K +K +K +K +R +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(73,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +W +W +W +K +W +W +W +W +W +K +W +W +W +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(74,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +M +K +K +K +K +K +K +K +K +K +K +K +M +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(75,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +M +W +W +W +K +W +K +W +W +W +M +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(76,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +M +c +K +K +K +K +K +f +M +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(77,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +M +W +W +K +W +W +M +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(78,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +W +W +K +W +W +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(79,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +W +W +K +W +W +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(80,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +v +W +E +W +W +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(81,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +M +M +p +p +p +M +M +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(82,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(83,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(84,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(85,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(86,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(87,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(88,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(89,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(90,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(91,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(92,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(93,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(94,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(95,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(96,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(97,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(98,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(99,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(100,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(101,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(102,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(103,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(104,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(105,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(106,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(107,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(108,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(109,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(110,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(111,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(112,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(113,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(114,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(115,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(116,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(117,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(118,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(119,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(120,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(121,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(122,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(123,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(124,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(125,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(126,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(127,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(128,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(129,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(130,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(131,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(132,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(133,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(134,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(135,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(136,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(137,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(138,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(139,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(140,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/admin_use_vr/avii_eventMapv2.dmm b/maps/submaps/admin_use_vr/avii_eventMapv2.dmm new file mode 100644 index 0000000000..0fddf7b151 --- /dev/null +++ b/maps/submaps/admin_use_vr/avii_eventMapv2.dmm @@ -0,0 +1,31041 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"ac" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"ad" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/random/humanoidremains, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"ai" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/medical/medbay) +"al" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/space) +"an" = ( +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + icon_state = "emitter1"; + state = 1 + }, +/turf/simulated/floor, +/area/space) +"ao" = ( +/obj/item/stack/cable_coil/cyan, +/turf/simulated/floor, +/area/space) +"ap" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"as" = ( +/turf/simulated/floor/plating, +/area/maintenance/fore) +"au" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge) +"av" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"ax" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"aA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"aC" = ( +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"aD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"aF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"aH" = ( +/obj/machinery/vending/fooddessert, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"aQ" = ( +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aU" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"aV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"aZ" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"ba" = ( +/obj/random/coin/sometimes, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"be" = ( +/obj/machinery/pda_multicaster/prebuilt, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"bj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"bl" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"bm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"br" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"bt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"bu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bw" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"bx" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_north_inner"; + locked = 1; + name = "Engine North Airlock Interior" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"by" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/bridge) +"bC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"bE" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_monitoring) +"bF" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/space) +"bH" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/pa_room) +"bI" = ( +/turf/simulated/wall, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"bJ" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_3) +"bK" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/random/pottedplant, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"bL" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"bM" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bS" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"bV" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"cb" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/powercell, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"cc" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ce" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"cf" = ( +/obj/random/vendorfood, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ch" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/vistor_room_2) +"ci" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_4) +"cj" = ( +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"cm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"cp" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"cq" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"cr" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 1; + name = "Maintenance Access" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"cs" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"ct" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"cv" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"cx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"cy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/alt/panel/broken, +/area/maintenance/dormitory) +"cA" = ( +/obj/random/vendordrink, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"cB" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/central) +"cE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"cF" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"cG" = ( +/turf/simulated/wall, +/area/maintenance/fore) +"cH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"cK" = ( +/obj/machinery/camera/network/engine{ + dir = 8 + }, +/turf/space, +/area/space) +"cM" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/recreation_area_restroom) +"cN" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/central) +"cO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"cQ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"cU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"cV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"cX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"cY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"da" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"dh" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"dj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"dl" = ( +/obj/machinery/camera/network/civilian, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"dn" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -25 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"dq" = ( +/obj/machinery/field_generator, +/turf/simulated/floor, +/area/engineering/engine_room) +"du" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/civilian_hallway_fore) +"dx" = ( +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"dy" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Core"; + charge = 2e+006; + input_attempt = 1; + input_level = 200000; + output_level = 250000 + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/engineering/engine_monitoring) +"dz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"dA" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 6" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"dB" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"dD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"dF" = ( +/obj/machinery/light/floortube, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"dH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"dJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"dL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"dM" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"dP" = ( +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"dQ" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_1) +"dR" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"dS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/trash, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"dT" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"dU" = ( +/obj/machinery/power/tesla_coil, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"dW" = ( +/obj/machinery/telecomms/server/presets/unused, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"dX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"dY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"dZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"ea" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"eb" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ec" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ed" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"eh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ei" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ek" = ( +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"el" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_aft) +"ep" = ( +/obj/random/trash_pile, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"eq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"es" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"ev" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"ew" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"ex" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"ey" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"ez" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"eB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"eD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"eF" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"eG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"eH" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"eI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"eL" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/rnd/workshop) +"eO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"eS" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"eU" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"eY" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"eZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"fa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"fd" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/recreation_area_restroom) +"ff" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"fk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"fm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"fs" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_2) +"fv" = ( +/obj/random/trash_pile, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"fw" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"fy" = ( +/turf/simulated/wall/r_wall, +/area/rnd/research) +"fE" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"fF" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/engineering/engine_smes) +"fI" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"fJ" = ( +/obj/machinery/light/small, +/obj/machinery/light/small/neon/booze2{ + pixel_y = -32; + nightshift_allowed = 0 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"fK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"fL" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"fM" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"fP" = ( +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/circuitboard/tesla_coil, +/obj/item/weapon/circuitboard/tesla_coil, +/turf/simulated/floor, +/area/engineering/engine_room) +"fR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"fT" = ( +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"fU" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/crate/engineering{ + name = "spare SMES coils" + }, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil/super_capacity, +/obj/item/weapon/smes_coil/super_capacity, +/obj/item/weapon/smes_coil/super_capacity, +/obj/item/weapon/smes_coil/super_io, +/obj/item/weapon/smes_coil/super_io, +/obj/item/weapon/smes_coil/super_io, +/obj/item/device/geiger/wall/west{ + dir = 4; + pixel_x = 36 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"fV" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ga" = ( +/obj/structure/table/steel, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"gb" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"gc" = ( +/turf/simulated/wall/r_wall, +/area/bridge) +"gd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ge" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"gg" = ( +/obj/random/trash_pile, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"gi" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"gk" = ( +/obj/machinery/exonet_node{ + anchored = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"go" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 0; + pressure_checks_default = 0; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"gp" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"gr" = ( +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"gs" = ( +/turf/simulated/wall/r_wall, +/area/hallway/secondary/civilian_hallway_aft) +"gu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"gx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_monitoring) +"gz" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"gA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"gB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"gC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"gD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"gE" = ( +/obj/machinery/vending/deluxe_cigs/open, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"gH" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"gI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"gJ" = ( +/obj/machinery/vending/foodmeat, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"gK" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"gL" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_1) +"gM" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"gO" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/table/reinforced, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"gT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/curtain/open/privacy{ + color = "#222222" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"gU" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"gW" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_2) +"gX" = ( +/obj/machinery/light/small/flicker{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"gZ" = ( +/turf/simulated/wall, +/area/rnd/workshop) +"ha" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals8, +/obj/structure/table/standard, +/obj/item/weapon/book/manual/tesla_engine, +/obj/item/weapon/book/manual/engineering_particle_accelerator{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"hc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"he" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/accessory, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"hf" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"hg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"hh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"hi" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"hj" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/trash, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"hk" = ( +/obj/machinery/power/tesla_coil, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_room) +"hn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"ho" = ( +/obj/machinery/light/small/flicker, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"hp" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/vistor_room_1) +"hs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"ht" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"hw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"hA" = ( +/turf/simulated/wall/r_wall, +/area/medical/medbay) +"hB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"hE" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"hG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"hL" = ( +/obj/random/maintenance, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"hM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"hN" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"hT" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"hV" = ( +/obj/machinery/autolathe{ + hacked = 1 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"hW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"hY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"hZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"ib" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"ic" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"id" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/gate/thin{ + dir = 2; + id = "bar"; + layer = 3.3 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ih" = ( +/obj/machinery/camera/network/civilian{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ii" = ( +/obj/machinery/atmospherics/pipe/tank/air/full{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"ij" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ir" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/blue2, +/area/maintenance/dormitory) +"is" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"it" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"iv" = ( +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/bridge) +"iw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"ix" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/chamber) +"iy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"iz" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"iA" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/maintenance/fore) +"iB" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"iD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"iE" = ( +/obj/machinery/door/airlock/glass_engineering, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"iF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"iG" = ( +/obj/item/device/geiger/wall/west{ + dir = 4; + pixel_x = -36 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"iI" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"iJ" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"iN" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/bridge) +"iO" = ( +/obj/machinery/power/grounding_rod, +/turf/simulated/floor, +/area/space) +"iR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_monitoring) +"iS" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"iT" = ( +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"iU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"iV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"iW" = ( +/obj/structure/bed/chair/sofa/right{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"ja" = ( +/obj/structure/table/reinforced, +/obj/item/stack/material/plasteel{ + amount = 30 + }, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"jb" = ( +/obj/machinery/vending/loadout/accessory, +/obj/machinery/light/small/flicker{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"jc" = ( +/obj/machinery/transhuman/autoresleever, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"jd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"jf" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"jg" = ( +/obj/structure/cable/cyan, +/obj/machinery/power/emitter{ + anchored = 1; + icon_state = "emitter1"; + state = 1 + }, +/turf/simulated/floor, +/area/space) +"jh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"ji" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"jj" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"jl" = ( +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"jn" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"jo" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/energy, +/obj/random/energy/highend, +/obj/random/powercell, +/obj/random/powercell, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"jp" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"jt" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/space) +"jx" = ( +/obj/machinery/light/small, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + dir = 1; + id = "EngineRadiatorViewport"; + name = "Viewport Blast Doors"; + pixel_x = -4; + pixel_y = -24; + req_access = list(10) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"jy" = ( +/obj/structure/bed/chair/sofa/corner/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"jC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_monitoring) +"jE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"jG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"jJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"jQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"jR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"jU" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/powercell, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"jX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"jZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_engineering, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"ka" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"kd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"kf" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"kh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"ki" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/pa_room) +"kj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/random/mouseremains, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"kk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"kl" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"kn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/bridge) +"kp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"kr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"ku" = ( +/obj/structure/table/standard, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"kv" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/vistor_room_1) +"ky" = ( +/obj/machinery/light/small/neon/dice{ + pixel_x = 32; + nightshift_allowed = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"kA" = ( +/obj/structure/table/glass, +/obj/random/medical{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"kB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"kE" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"kF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"kG" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/overwear, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"kJ" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"kN" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"kO" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"kR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"kU" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/space) +"kX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"kY" = ( +/obj/random/pottedplant, +/obj/machinery/light/floortube{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"lb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall, +/area/medical/medbay) +"ld" = ( +/obj/machinery/camera/network/engine{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"le" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/broken, +/area/crew_quarters/bar) +"li" = ( +/obj/machinery/vending/snack, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"lj" = ( +/obj/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"lo" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/dark, +/area/rnd/workshop) +"lp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"lq" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"lr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"lt" = ( +/obj/machinery/r_n_d/circuit_imprinter{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/dark, +/area/rnd/workshop) +"lu" = ( +/obj/machinery/light/small, +/obj/random/material/refined, +/obj/random/material/refined, +/obj/random/material/refined, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"lx" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"ly" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"lA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"lB" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"lF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"lH" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/space) +"lM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"lO" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"lP" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Master Grid"; + name_tag = "Master" + }, +/turf/simulated/floor, +/area/engineering/engine_monitoring) +"lR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"lS" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"lY" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"lZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"mc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"me" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"mf" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/sink{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"mi" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/fore) +"ml" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/wall/r_lead, +/area/space) +"mn" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"mq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"mr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"mt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"mu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/dormitory) +"mv" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"mw" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_1) +"mx" = ( +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"mB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"mC" = ( +/turf/simulated/wall/r_wall, +/area/rnd/research_storage) +"mD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"mE" = ( +/obj/structure/table/standard, +/obj/random/flashlight, +/obj/random/mainttoyloot, +/obj/random/medical/pillbottle, +/obj/random/medical/lite, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"mH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"mJ" = ( +/obj/effect/decal/mecha_wreckage/micro/utility/gopher, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"mK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"mM" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"mN" = ( +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"mO" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"mP" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"mR" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"mS" = ( +/obj/structure/bed/chair/sofa/right/beige, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"mT" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"mY" = ( +/obj/machinery/computer/crew, +/obj/effect/floor_decal/milspec/color/white/half, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"na" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"nb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"nc" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"ne" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"ng" = ( +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"nk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"nm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"nn" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"no" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/vistor_room_2) +"np" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"nr" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/hyper{ + charge = 30000 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"ns" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"nv" = ( +/obj/machinery/power/grid_checker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/engineering/engine_monitoring) +"nx" = ( +/turf/simulated/wall, +/area/medical/medbay) +"ny" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_2) +"nz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/bed/chair/bay/comfy{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"nA" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"nB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"nE" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"nF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"nG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"nI" = ( +/obj/random/vendorall, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"nM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"nN" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"nR" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/obj/item/stack/material/glass/phoronrglass{ + amount = 20 + }, +/obj/fiftyspawner/wood, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"nW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"nY" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/yellow/bordercorner2, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"nZ" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"ob" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"oc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/central) +"oe" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"of" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"og" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/keycard_auth{ + pixel_y = 2 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"oi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"ok" = ( +/obj/machinery/light/small/flicker{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ol" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"om" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"on" = ( +/obj/structure/cable, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"oo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"os" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"oA" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"oE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"oK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"oM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"oN" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_2) +"oO" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"oQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"oR" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"oS" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"oU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"oW" = ( +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"pb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"pc" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"pd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Telecoms Central Compartment North" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"pg" = ( +/obj/machinery/r_n_d/protolathe{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/workshop) +"pi" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/vending/wallmed1/public{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"pk" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Power - Main"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 500000; + output_level = 1e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/engineering/engine_monitoring) +"pl" = ( +/obj/structure/bed/chair/sofa/beige, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"pm" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + icon_state = "map_vent_out"; + id_tag = "toxins_pump"; + use_power = 1 + }, +/obj/structure/lattice, +/turf/space, +/area/engineering/engine_room) +"po" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA" + }, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"pq" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/mug, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"pr" = ( +/turf/simulated/wall, +/area/maintenance/aft) +"pv" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"pw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"px" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"pA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"pC" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"pD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"pI" = ( +/obj/structure/curtain/open, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"pJ" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"pO" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + frequency = 1381; + id_tag = "server_access_ex_sensor"; + master_tag = "server_access_airlock"; + pixel_x = 25; + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"pT" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"pU" = ( +/obj/machinery/door/airlock/research{ + name = "Research Bathroom" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"pV" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"pW" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_8) +"pX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"pY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"pZ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/camera/network/engine, +/turf/simulated/floor, +/area/engineering/engine_monitoring) +"qa" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_4) +"qb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"qd" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"qg" = ( +/obj/random/coin/sometimes, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"qi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"qm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"qn" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/dormitory) +"qq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"qs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"qt" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/bridge) +"qu" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/space) +"qx" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"qy" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"qB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"qG" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"qH" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/hallway/primary/fore) +"qI" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"qJ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"qK" = ( +/obj/machinery/transhuman/resleever, +/obj/machinery/light/flicker{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"qM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"qN" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"qO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"qT" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"qU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"qX" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"qZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"ra" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"rd" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = -3 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -26; + pixel_y = 5 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"rg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"rh" = ( +/obj/structure/table/glass, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"ri" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"rj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"rl" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/maintenance/asmaint) +"rm" = ( +/obj/structure/cable, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"rn" = ( +/obj/structure/curtain/open/privacy{ + color = "#361447" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"ro" = ( +/obj/item/modular_computer/console/preset/medical{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/white/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"rr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"rs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/trash, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"ru" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"rw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"rx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"rA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"rB" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"rC" = ( +/obj/machinery/airlock_sensor/airlock_interior{ + frequency = 1381; + id_tag = "server_access_in_sensor"; + name = "interior sensor"; + pixel_y = 25 + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"rD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"rG" = ( +/obj/structure/table/standard, +/obj/random/contraband, +/obj/random/maintenance/morestuff, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"rH" = ( +/obj/machinery/vending/bepis, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"rJ" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_1) +"rL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"rP" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"rQ" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "eng_south_airlock"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = 26; + req_one_access = list(10,11,13) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_south_outer"; + locked = 1; + name = "Engine South Airlock Exterior" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"rR" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/obj/item/device/radio/intercom{ + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"rT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"rU" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"rV" = ( +/obj/structure/bed/double, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"rW" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"rX" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"sb" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"sd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/space) +"se" = ( +/obj/machinery/computer/station_alert/all, +/obj/effect/floor_decal/milspec/color/orange/half, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"sf" = ( +/obj/structure/table/standard, +/obj/random/maintenance, +/obj/random/cash/huge, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"sj" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"sk" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"sl" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/rnd/research) +"sm" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"so" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"sp" = ( +/obj/machinery/light/small/flicker, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"sq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"sr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"ss" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_monitoring) +"st" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"su" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"sv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"sw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"sx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"sA" = ( +/obj/random/coin/sometimes, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"sB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"sC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_engineering, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"sD" = ( +/obj/machinery/computer/power_monitor, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"sE" = ( +/obj/structure/bed/chair/sofa/blue, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"sG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + req_one_access = null + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"sM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"sO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"sS" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"sT" = ( +/obj/machinery/door/airlock/glass_command, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/r_wall, +/area/bridge) +"sW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"tc" = ( +/obj/structure/table/standard, +/obj/random/maintenance/security, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"td" = ( +/turf/simulated/wall/r_wall, +/area/hallway/secondary/civilian_hallway_fore) +"te" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"tg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"th" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"tj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"tn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"to" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"tq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"ts" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"tu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"tw" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ty" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"tz" = ( +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"tA" = ( +/obj/structure/dirtybed, +/obj/structure/curtain/open/bed, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"tD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_aft) +"tF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"tJ" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"tK" = ( +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"tL" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"tN" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled, +/area/bridge) +"tO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"tP" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"tQ" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/space) +"tR" = ( +/obj/machinery/requests_console{ + department = "MiniBar"; + departmentType = 7; + pixel_y = 28 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"tT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "Jetpack Storage"; + req_one_access = list(11,24) + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"tU" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"tV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"tX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"tY" = ( +/obj/machinery/button/remote/blast_door{ + id = "bar"; + name = "Bar Shutter Control"; + pixel_x = -24 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ue" = ( +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"uf" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "bridgelockdown"; + name = "Bridge Lockdown"; + pixel_y = 2 + }, +/obj/effect/floor_decal/milspec/color/blue/corner, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"ui" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"uk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"ul" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"um" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"un" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"uu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"uv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"uw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1381; + icon_state = "door_locked"; + id_tag = "server_access_outer"; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61) + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"uy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"uA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"uB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"uD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"uE" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"uG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"uH" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"uI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"uJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"uM" = ( +/obj/structure/bed/chair/sofa/left/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"uN" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/light/flicker{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"uO" = ( +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"uR" = ( +/obj/machinery/computer/med_data, +/obj/effect/floor_decal/milspec/color/white/half, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"uV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"uY" = ( +/obj/structure/bed/chair/sofa/left/beige{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"uZ" = ( +/obj/machinery/firealarm/angled, +/obj/machinery/mecha_part_fabricator/pros, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"va" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"vb" = ( +/obj/structure/table/standard, +/obj/random/contraband, +/obj/random/contraband, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"vd" = ( +/obj/machinery/telecomms/hub/preset, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"ve" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"vf" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"vi" = ( +/obj/machinery/computer/station_alert/all, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"vl" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio/intercom{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/blue/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"vo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"vr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_2) +"vs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"vt" = ( +/obj/machinery/door/airlock/maintenance/medical{ + req_one_access = null + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"vv" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"vw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"vA" = ( +/obj/item/modular_computer/console/preset/command, +/obj/machinery/camera/network/command, +/obj/effect/floor_decal/milspec/color/blue/half, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"vB" = ( +/obj/random/coin/sometimes, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"vF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"vG" = ( +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"vH" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"vI" = ( +/obj/machinery/computer/rcon{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"vJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"vK" = ( +/obj/machinery/airlock_sensor{ + frequency = 1381; + id_tag = "server_access_sensor"; + pixel_x = 12; + pixel_y = 25 + }, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + frequency = 1381; + id_tag = "server_access_airlock"; + name = "Server Access Airlock"; + pixel_y = 25; + tag_airpump = "server_access_pump"; + tag_chamber_sensor = "server_access_sensor"; + tag_exterior_door = "server_access_outer"; + tag_exterior_sensor = "server_access_ex_sensor"; + tag_interior_door = "server_access_inner"; + tag_interior_sensor = "server_access_in_sensor"; + tag_secure = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tcommsat/computer) +"vL" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"vM" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"vN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"vO" = ( +/obj/random/coin/sometimes, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"vS" = ( +/obj/structure/bed/chair/bay/comfy/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"vT" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_8) +"vW" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"wa" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"wc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"wd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"wf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"wj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"wl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"wp" = ( +/turf/simulated/wall, +/area/crew_quarters/bar) +"wq" = ( +/obj/machinery/atmospherics/binary/pump/on, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"ws" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"wz" = ( +/obj/machinery/door/airlock/medical{ + req_one_access = null + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"wA" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"wE" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"wI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/space) +"wJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"wK" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/recreation_area_restroom) +"wM" = ( +/obj/structure/table/standard, +/obj/random/cash/big, +/obj/random/maintenance/foodstuff, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"wN" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/hyper{ + charge = 30000 + }, +/obj/machinery/camera/network/research, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"wP" = ( +/turf/simulated/wall/r_lead, +/area/space) +"wR" = ( +/obj/random/pottedplant, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"wT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/submap/pa_room) +"wU" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Bar"; + req_access = null + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"wV" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"wW" = ( +/obj/machinery/vending/snlvend, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"wX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"wZ" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow, +/turf/simulated/floor, +/area/space) +"xb" = ( +/obj/structure/table/glass, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"xc" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"xd" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/item/weapon/storage/part_replacer/adv/discount_bluespace, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"xe" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"xf" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"xg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"xh" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"xi" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"xj" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"xk" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/storage/belt/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"xl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_aft) +"xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"xp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"xq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"xw" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"xy" = ( +/obj/random/material, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"xJ" = ( +/obj/machinery/field_generator, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"xQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"xY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"xZ" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_7) +"ya" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"yb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"yd" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ye" = ( +/obj/machinery/door/airlock{ + id_tag = "bathroomlock15"; + name = "Recreation Toilet 2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"yg" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"yk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"yl" = ( +/obj/machinery/vending/foodfast, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ym" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"yn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"yq" = ( +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"ys" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"yu" = ( +/obj/machinery/computer/power_monitor{ + dir = 4; + throwpass = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"yw" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/sd_guide, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"yx" = ( +/obj/structure/bed/chair/sofa/corner/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"yA" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"yC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"yE" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_2) +"yI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"yJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"yK" = ( +/obj/machinery/camera/network/engine, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"yP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"yR" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"yS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/bridge) +"yU" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/clothing/gloves/yellow, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"yV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"yX" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"yY" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/workshop) +"yZ" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_4) +"zc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"zd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"ze" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"zh" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"zi" = ( +/obj/structure/closet/secure_closet/personal{ + req_access = null + }, +/turf/simulated/floor/tiled, +/area/bridge) +"zj" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"zk" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/pa_room) +"zl" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"zr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"zu" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"zy" = ( +/obj/machinery/light/floortube/flicker, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"zz" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"zD" = ( +/obj/machinery/particle_accelerator/control_box, +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"zE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"zF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"zG" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"zJ" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"zL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"zM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"zO" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"zQ" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"zT" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"zU" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"zV" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"zY" = ( +/obj/structure/redgate/away, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Ab" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Ad" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"Ae" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Af" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Ai" = ( +/obj/machinery/light/small/flicker{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Aj" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Am" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"Ao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"Ap" = ( +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Ar" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"As" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"Av" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/hallway/secondary/civilian_hallway_fore) +"Ax" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Ay" = ( +/obj/machinery/message_server, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"AC" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"AD" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"AE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"AF" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"AG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/bed/chair/bay/comfy{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"AJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"AK" = ( +/obj/structure/table/gamblingtable, +/obj/random/carp_plushie, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"AN" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"AP" = ( +/turf/simulated/floor/wood/broken, +/area/crew_quarters/bar) +"AR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/space) +"AS" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/bar) +"AV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"AW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"AX" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/vending/giftvendor, +/obj/machinery/light/small/flicker, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"AZ" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"Bb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Bc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Be" = ( +/obj/machinery/door/airlock{ + id_tag = "bathroomlock14"; + name = "Recreation Toilet 1" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Bf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Bi" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/medical/medbay2) +"Bj" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_1) +"Bl" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"Bo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Br" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/random/medical/pillbottle, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Bt" = ( +/obj/machinery/light/small/flicker, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Bw" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Bx" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Bz" = ( +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"BB" = ( +/obj/machinery/field_generator{ + anchored = 1; + state = 1 + }, +/turf/simulated/floor, +/area/space) +"BC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_aft) +"BE" = ( +/obj/machinery/computer/security/engineering{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"BH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"BK" = ( +/obj/effect/floor_decal/steeldecal, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"BN" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"BO" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"BQ" = ( +/obj/structure/bed/chair/sofa/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"BR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"BV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/mouseremains, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"BX" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/vistor_room_2) +"BY" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"BZ" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Ca" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Ce" = ( +/obj/random/coin/sometimes, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Ch" = ( +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Ci" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/medical/medbay) +"Cj" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow, +/turf/simulated/floor, +/area/space) +"Ck" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Cl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Cm" = ( +/turf/simulated/floor, +/area/space) +"Cp" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_south_inner"; + locked = 1; + name = "Engine South Airlock Interior" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "eng_south_airlock"; + name = "interior access button"; + pixel_x = 8; + pixel_y = -26; + req_one_access = list(10,11) + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"Cu" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"Cv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"Cx" = ( +/obj/machinery/camera/network/civilian{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Cz" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"CB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"CD" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_aft) +"CE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"CF" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"CG" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"CH" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/bridge) +"CI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"CL" = ( +/turf/simulated/wall/r_wall, +/area/rnd/research_restroom) +"CO" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/donkpocketbox, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"CP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"CR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"CT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"CU" = ( +/obj/random/trash, +/obj/structure/cable, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"CW" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_monitoring) +"CX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"Db" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Dd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Df" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Dh" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"Di" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Dj" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Dk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Dl" = ( +/obj/structure/bed/chair/sofa, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"Dn" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/buildable{ + charge = 1.5e+007; + cur_coils = 3 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Do" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"Dp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Dr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Ds" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Dt" = ( +/obj/structure/lattice, +/turf/simulated/floor, +/area/space) +"Dy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Dz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"DA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"DC" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"DF" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"DH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"DI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"DK" = ( +/turf/simulated/wall, +/area/rnd/research_storage) +"DL" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"DN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"DP" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"DR" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"DS" = ( +/obj/machinery/clonepod/transhuman{ + req_access = null + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"DT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"DW" = ( +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"DX" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/camera/network/engine{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"DY" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"Ed" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Ef" = ( +/obj/random/material/precious, +/obj/random/material/precious, +/obj/random/material/precious, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"Eg" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"Ei" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Ej" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Em" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/engineering/engine_room) +"Ep" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/effect/floor_decal/milspec/color/white/corner, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Eq" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/folder/yellow, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Telecoms Main Computer Room" + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"Er" = ( +/turf/space, +/area/space) +"Et" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/maintenance/central) +"Ew" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"Ex" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Ey" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id = "EngineEmitterPortWest"; + name = "Engine Room Blast Doors"; + pixel_y = 25; + req_access = null; + req_one_access = list(11,24) + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"Ez" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood/alt/panel/broken, +/area/maintenance/dormitory) +"EF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/medical/medbay) +"EI" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"EK" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"EL" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"EP" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"EQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"ER" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"ES" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ET" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"EV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"EW" = ( +/obj/structure/bed/chair/bay/comfy/captain{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"EX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"EY" = ( +/obj/structure/bed/chair/sofa/left/beige, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"EZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Fa" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/random/trash, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Fb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Fd" = ( +/obj/random/material/precious, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Fi" = ( +/obj/structure/table/glass, +/obj/random/medical{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Fj" = ( +/obj/machinery/door/airlock{ + id_tag = "bathroomlock8"; + name = "Research Toilet" + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"Fk" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Fn" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/maintenance/aft) +"Fp" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/bridge) +"Fr" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Fs" = ( +/obj/random/material/precious, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Fy" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"FA" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"FB" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"FD" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"FE" = ( +/obj/random/trash_pile, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"FG" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/aft) +"FH" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"FK" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"FL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"FM" = ( +/obj/structure/table/standard, +/obj/random/maintenance/misc, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"FN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"FQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"FR" = ( +/obj/random/trash_pile, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"FS" = ( +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"FT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"FU" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"FW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"FY" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"Ga" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_gas) +"Gc" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Gg" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_5) +"Gi" = ( +/obj/machinery/power/sensor{ + name_tag = "MiniTest" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Gm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Go" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Gp" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"Gs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"Gu" = ( +/obj/structure/table/glass, +/obj/machinery/light/floortube{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/maintenance/dormitory) +"Gw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"Gx" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"Gy" = ( +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Gz" = ( +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"GA" = ( +/turf/simulated/wall/r_wall, +/area/rnd/workshop) +"GB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/bridge) +"GF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"GG" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1381; + icon_state = "door_locked"; + id_tag = "server_access_inner"; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"GH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"GI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"GJ" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"GK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"GM" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id = "SupermatterPort"; + name = "Observation Blast Doors"; + pixel_x = -4; + pixel_y = 24; + req_access = list(10) + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"GO" = ( +/obj/machinery/computer/power_monitor, +/obj/effect/floor_decal/milspec/color/orange/half, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"GP" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/space) +"GQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/vending/event, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"GR" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"GS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"GX" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/medical/medbay) +"Hd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"He" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Hf" = ( +/obj/random/coin/sometimes, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Hg" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_2) +"Hi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"Hn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Hp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"Hr" = ( +/obj/structure/bed/chair/sofa/right/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Hs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Hu" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Hv" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass/command, +/obj/machinery/door/airlock/glass_command, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/r_wall, +/area/bridge) +"Hz" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"HB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"HC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"HD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"HH" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"HJ" = ( +/obj/machinery/computer/atmoscontrol, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"HL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"HO" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"HP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"HQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/simulated/floor/plating, +/area/maintenance/central) +"HR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"HT" = ( +/obj/machinery/light/small, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"HU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"HX" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"HY" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"HZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"Ib" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + name = "Maintenance Access" + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Ih" = ( +/obj/machinery/vending/foodstuffing, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Ik" = ( +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Im" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"Io" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"Iq" = ( +/obj/random/coin/sometimes, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Ir" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Is" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Iu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"Iv" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Ix" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Iy" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Iz" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"IA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"IC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"IF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"IG" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/workshop) +"IH" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 3" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_3) +"II" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"IK" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"IL" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"IM" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"IN" = ( +/obj/structure/bed/chair/sofa/left, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"IO" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"IV" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"IX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"IZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Jb" = ( +/obj/structure/closet/crate/engineering{ + name = "capacitor storage" + }, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/adv, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/hyper, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/omni, +/obj/item/weapon/stock_parts/capacitor/super, +/obj/item/weapon/stock_parts/capacitor/super, +/obj/item/weapon/stock_parts/capacitor/super, +/obj/item/weapon/stock_parts/capacitor/super, +/obj/item/weapon/stock_parts/capacitor/super, +/obj/item/weapon/stock_parts/capacitor/super, +/obj/item/weapon/stock_parts/capacitor/super, +/obj/item/weapon/stock_parts/capacitor/super, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Jc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"Je" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/bridge) +"Jf" = ( +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Jh" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/drinkbottle, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Jj" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/locker) +"Jl" = ( +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Jm" = ( +/obj/structure/curtain/black{ + color = "#361447" + }, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_1) +"Jn" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"Jv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"Jw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"JA" = ( +/obj/random/coin/sometimes, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"JB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"JC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"JE" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"JI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"JJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"JL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small/flicker{ + dir = 4 + }, +/turf/simulated/floor, +/area/medical/medbay) +"JM" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"JN" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"JQ" = ( +/obj/structure/reagent_dispensers/acid{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"JR" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/central) +"JV" = ( +/obj/item/weapon/paper{ + info = "Whoops, we seem to lost our Tesla... Oh well! Good thing we have backups... Right?"; + name = "tesla note" + }, +/turf/simulated/floor, +/area/space) +"JW" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock{ + start_pressure = 4559.63 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"JY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/curtain/open/privacy{ + color = "#222222" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Ke" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay) +"Kh" = ( +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Ki" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"Kk" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Kl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Km" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Kp" = ( +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Kq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Kx" = ( +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"Ky" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/carpet/purple, +/area/crew_quarters/sleep/Dorm_7) +"KA" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"KB" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Power"; + name_tag = "Engine Power" + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/engineering/engine_room) +"KC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/bridge) +"KD" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/maintenance/dormitory) +"KE" = ( +/obj/machinery/gear_painter, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"KF" = ( +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"KH" = ( +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"KK" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"KL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"KN" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"KO" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"KQ" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"KU" = ( +/obj/structure/table/standard, +/obj/random/drinkbottle, +/obj/random/cash, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"KV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"KX" = ( +/obj/structure/table/glass, +/obj/machinery/light/floortube/flicker, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"KY" = ( +/turf/simulated/wall, +/area/rnd/research) +"KZ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"Lc" = ( +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Le" = ( +/obj/machinery/light/small, +/obj/machinery/camera/network/telecom{ + c_tag = "Telecoms Central Compartment South"; + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Li" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Lm" = ( +/obj/random/mech_toy, +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Ln" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"Lo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Lq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"Lu" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_2) +"Lv" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/table/reinforced, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Ly" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"LB" = ( +/obj/machinery/light/flicker, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"LI" = ( +/obj/effect/floor_decal/techfloor/orange/corner, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/pa_room) +"LO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"LP" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "eng_south_pump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "eng_south_sensor"; + pixel_y = 25 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"LS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"LT" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "eng_north_airlock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 26; + req_one_access = list(10,11) + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"LX" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + dir = 1; + id = "SupermatterPort"; + name = "Observation Blast Doors"; + pixel_x = -4; + pixel_y = -24; + req_access = list(10) + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Mc" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"Me" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Ml" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/central) +"Mm" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_1) +"Mp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_aft) +"Mr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Mt" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Mu" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/space) +"Mv" = ( +/obj/item/stack/cable_coil/yellow, +/turf/simulated/floor, +/area/space) +"Mw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"My" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_5) +"Mz" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"MA" = ( +/obj/structure/table/glass, +/obj/machinery/light/floortube, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"MB" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"MD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"MI" = ( +/obj/random/trash, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"MK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"ML" = ( +/obj/machinery/vending/loadout/uniform{ + req_log_access = null + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"MM" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"MN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"MO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"MP" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"MU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"MV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"MX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"MY" = ( +/obj/structure/table/standard, +/obj/random/maintenance/medical, +/obj/random/medical/pillbottle, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"MZ" = ( +/obj/structure/table/standard, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Nb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Ne" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Nf" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_aft) +"Ng" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/bridge) +"Nh" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/bridge) +"Ni" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge) +"Nj" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"Nk" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Nm" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/maintenance/dormitory) +"Nn" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/loadout_misc, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"No" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Nr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"Nv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Nw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood/broken, +/area/crew_quarters/bar) +"Ny" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Nz" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"NC" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"NF" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"NH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"NK" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_6) +"NM" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_1) +"NN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"NO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"NQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"NT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"NU" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"NV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/submap/pa_room) +"NW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"NZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Oc" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"Od" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/flicker{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Og" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/mre, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Oj" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/workshop) +"Ok" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"Ol" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Om" = ( +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Oo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Or" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Os" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/research) +"Ou" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/submap/pa_room) +"Ov" = ( +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/structure/closet/walllocker_double/science/east{ + name = "material sheets" + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"Ow" = ( +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"Ox" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"OC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"OD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"OE" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/central) +"OF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"OI" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/bridge) +"OM" = ( +/obj/structure/table/reinforced, +/obj/random/toolbox, +/obj/random/technology_scanner, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"ON" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"OO" = ( +/obj/machinery/airlock_sensor/airlock_interior{ + frequency = 1381; + id_tag = "server_access_in_sensor"; + master_tag = "server_access_airlock"; + name = "interior sensor"; + pixel_x = 8; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"OP" = ( +/obj/machinery/power/debug_items/infinite_generator, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/space) +"OR" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"OW" = ( +/obj/random/pottedplant, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"OY" = ( +/turf/simulated/wall, +/area/maintenance/asmaint) +"OZ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Pe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/submap/pa_room) +"Pg" = ( +/obj/random/material/refined, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Ph" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/bridge) +"Pi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Research Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"Pj" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_engineering, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"Pm" = ( +/obj/random/trash, +/obj/machinery/light/small/flicker, +/turf/simulated/floor/plating, +/area/maintenance/central) +"Po" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/pa_room) +"Pr" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_6) +"Ps" = ( +/obj/structure/bed/double, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Pu" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/civilian{ + dir = 10 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"Pv" = ( +/obj/random/contraband, +/obj/structure/table/standard, +/obj/random/cigarettes, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Px" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Py" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"Pz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"PA" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 7" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_7) +"PB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"PH" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"PI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"PJ" = ( +/obj/machinery/light/small, +/obj/machinery/light/small/neon/booze1{ + pixel_y = -32; + pixel_x = 2; + nightshift_allowed = 0 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"PK" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"PL" = ( +/obj/machinery/light/floortube/flicker, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"PM" = ( +/turf/simulated/wall, +/area/crew_quarters/recreation_area_restroom) +"PN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"PO" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"PP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"PQ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"PR" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/bridge) +"PU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"PX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"PY" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Qa" = ( +/turf/simulated/floor/wood/alt/panel/broken, +/area/maintenance/dormitory) +"Qb" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Qd" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "SupermatterPort"; + name = "Reactor Blast Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"Qe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Qf" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Qi" = ( +/obj/machinery/light/small/flicker{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Qj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Qk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/crew_quarters/sleep/Dorm_8) +"Ql" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#9c9c9c"; + name = "Laundry"; + stripe_color = "#89bd66" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Qm" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Qn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"Qr" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Qt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Qv" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/bridge) +"Qy" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"QA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"QB" = ( +/obj/machinery/light/small/flicker, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"QD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/space) +"QG" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_8) +"QI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel/broken, +/area/maintenance/dormitory) +"QK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"QN" = ( +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"QQ" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"QS" = ( +/turf/simulated/wall, +/area/medical/medbay2) +"QU" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"QV" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"QW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/shoes/black, +/obj/item/device/communicator, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"QY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/submap/pa_room) +"QZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Rb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/sleep/Dorm_4) +"Rc" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_2) +"Rd" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/hallway/secondary/civilian_hallway_fore) +"Rk" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Rl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/submap/pa_room) +"Rm" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Rn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Ru" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Rv" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Rx" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"Rz" = ( +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"RA" = ( +/obj/random/trash_pile, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"RB" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/random/trash, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"RD" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"RE" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"RG" = ( +/obj/machinery/camera/network/civilian{ + dir = 10 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"RI" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/uniform, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"RM" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"RN" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"RP" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"RR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/steel, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"RS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/submap/pa_room) +"RU" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"RX" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"RY" = ( +/obj/structure/table/glass, +/obj/item/weapon/backup_implanter{ + pixel_y = 9 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 2 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -12 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"RZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"Sa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Sb" = ( +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Sc" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA" + }, +/turf/simulated/wall/r_wall, +/area/submap/pa_room) +"Sg" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Sh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/engineering/engine_monitoring) +"Sk" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Sm" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/computer) +"Sn" = ( +/obj/structure/table/standard, +/obj/random/drinkbottle, +/obj/random/drinkbottle, +/obj/random/cigarettes, +/obj/random/donkpocketbox, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Sp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "bathroomlock15"; + name = "Recreation Toilet 2 Lock"; + pixel_x = -20; + pixel_y = 10; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Sq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/bridge) +"Su" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"SB" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"SC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"SD" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"SF" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/pa_room) +"SG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id = "EngineRadiatorViewport"; + name = "Viewport Blast Doors"; + pixel_x = -4; + pixel_y = 24; + req_access = list(10) + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"SI" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"SJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/bridge) +"SM" = ( +/obj/structure/bed/chair/sofa{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"SP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"SR" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"SX" = ( +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Tb" = ( +/obj/random/crate, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Tc" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"Td" = ( +/obj/structure/bed/chair/bay/comfy{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Tf" = ( +/obj/structure/table/standard, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/flashlight, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Tg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/geiger/wall/west{ + dir = 4; + pixel_x = -36 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Tj" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"Tl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"Tm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engine Monitoring Room"; + req_access = list(11) + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Tq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Tr" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer_1"; + set_temperature = 73; + use_power = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/computer) +"Ts" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Tw" = ( +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Ty" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Tz" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 5" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_5) +"TA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"TC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"TD" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"TF" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"TJ" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"TK" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8; + req_access = null + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/medbay) +"TM" = ( +/obj/structure/bed/chair/sofa/beige{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"TO" = ( +/obj/structure/closet/emcloset, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "eng_south_airlock"; + pixel_x = 24; + req_one_access = list(10,11); + tag_airpump = "eng_south_pump"; + tag_chamber_sensor = "eng_south_sensor"; + tag_exterior_door = "eng_south_outer"; + tag_interior_door = "eng_south_inner" + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"TS" = ( +/obj/machinery/light/small/flicker, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"TT" = ( +/obj/structure/table/standard, +/obj/random/maintenance/research, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"TU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"TY" = ( +/obj/structure/bed/chair/sofa/blue, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"TZ" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"Ua" = ( +/obj/machinery/light/small, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Uc" = ( +/obj/machinery/vending/loadout/costume, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Ud" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"Uf" = ( +/obj/machinery/light/small/flicker{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Ui" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Up" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Us" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"Ut" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Uu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Uv" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/item/stack/cable_coil/random, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor, +/area/engineering/engine_room) +"Uz" = ( +/obj/item/device/geiger/wall/west{ + dir = 4; + pixel_x = 36 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"UA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"UB" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"UD" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"UF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair/sofa/beige, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"UG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/turf/simulated/floor/plating, +/area/tcommsat/chamber) +"UI" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/wall/r_wall, +/area/engineering/engine_gas) +"UK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/submap/pa_room) +"UQ" = ( +/turf/simulated/floor/plating, +/area/maintenance/aft) +"UR" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"UT" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"UV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/research) +"UX" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/Dorm_3) +"UZ" = ( +/turf/simulated/wall, +/area/rnd/research_restroom) +"Vb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_6) +"Vi" = ( +/turf/simulated/floor/tiled/steel, +/area/rnd/workshop) +"Vl" = ( +/obj/random/trash, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Vm" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/obj/random/trash, +/turf/simulated/floor/tiled/steel, +/area/rnd/research_restroom) +"Vn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"Vr" = ( +/turf/simulated/wall/r_wall, +/area/submap/pa_room) +"Vs" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Vt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"VC" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + name = "Dorm 1" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/sleep/Dorm_1) +"VE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"VF" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Atmospherics Hardsuits"; + req_access = list(24) + }, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"VG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/bar) +"VH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"VI" = ( +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"VJ" = ( +/obj/machinery/power/terminal, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"VL" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"VO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"VS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"VT" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/tiled, +/area/rnd/research) +"VV" = ( +/obj/random/trash_pile, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"VW" = ( +/obj/random/trash_pile, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"VX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"VY" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/space, +/area/space) +"VZ" = ( +/turf/simulated/floor/tiled, +/area/bridge) +"Wa" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Wc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/crew_quarters/sleep/Dorm_5) +"Wd" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"We" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"Wf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/bridge) +"Wh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"Wq" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"Wr" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Wt" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/crew_quarters/sleep/Dorm_1) +"Wx" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Wz" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/space) +"WD" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"WE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge) +"WH" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"WK" = ( +/obj/structure/curtain/black{ + color = "#361447" + }, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_2) +"WL" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/sleep/Dorm_2) +"WO" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"WR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/central) +"WV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_smes) +"WX" = ( +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"WY" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/sleep/vistor_room_1) +"WZ" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"Xb" = ( +/obj/machinery/vending/medical{ + req_access = null; + req_log_access = null + }, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Xd" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Xf" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/item/clothing/shoes/black, +/obj/machinery/light/small, +/obj/item/device/communicator, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/locker) +"Xg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"Xh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"Xl" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/flicker{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"Xm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/pottedplant, +/turf/simulated/floor/tiled, +/area/bridge) +"Xo" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Xv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"Xy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Xz" = ( +/obj/structure/curtain/open/privacy{ + color = "#222222" + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"XC" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/paper{ + info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; + name = "grid checker info" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"XF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "bathroomlock14"; + name = "Recreation Toilet 1 Lock"; + pixel_x = -20; + pixel_y = 10; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"XH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"XI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"XL" = ( +/obj/structure/bed/chair/sofa/right{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/maintenance/dormitory) +"XM" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/rust/mono_rusted1, +/turf/simulated/floor, +/area/space) +"XN" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/vistor_room_1) +"XO" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/Dorm_7) +"XU" = ( +/obj/machinery/suit_cycler/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"XV" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"XW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"XY" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"XZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"Ya" = ( +/obj/random/maintenance, +/obj/structure/table/rack, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Yh" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"Yi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue2, +/area/crew_quarters/sleep/Dorm_3) +"Yk" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Yl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/bikehorn/rubberducky, +/obj/random/soap, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"Yo" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"Yr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/engineering/engine_room) +"Ys" = ( +/obj/structure/table/steel, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance, +/obj/random/medical, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/central) +"Yu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_room) +"Yw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/fore) +"Yx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"YA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/medbay) +"YB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/pa_room) +"YD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"YH" = ( +/obj/random/trash, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "always night shift APC"; + nightshift_setting = 3 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"YI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/space) +"YK" = ( +/obj/random/trash, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"YL" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/medical/medbay2) +"YQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"YR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"YT" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/engine_monitoring) +"YV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"YX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"YZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Zc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Zd" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/space) +"Ze" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/space) +"Zg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/trash, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Zh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/maintenance/asmaint) +"Zk" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/asmaint) +"Zn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/aft) +"Zp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/engine_gas) +"Zq" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "eng_north_airlock"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26; + req_one_access = list(10,11,13) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_north_outer"; + locked = 1; + name = "Engine North Airlock Exterior" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"Zs" = ( +/turf/simulated/wall/r_wall, +/area/medical/medbay2) +"Zt" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/workshop) +"Zu" = ( +/obj/random/material, +/obj/random/material, +/obj/random/material, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"Zw" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "eng_north_pump" + }, +/obj/machinery/light/small, +/obj/machinery/airlock_sensor{ + id_tag = "eng_north_sensor"; + pixel_y = -25 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"Zx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/random/trash, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"ZA" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research_storage) +"ZB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/computer) +"ZC" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/random/trash, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"ZH" = ( +/obj/structure/window/reinforced, +/turf/space, +/area/space) +"ZM" = ( +/turf/simulated/floor/tiled, +/turf/simulated/wall/r_wall, +/area/hallway/secondary/engineering_hallway) +"ZP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/fore) +"ZT" = ( +/obj/structure/closet/emcloset, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "eng_north_airlock"; + pixel_x = 24; + req_one_access = list(10,11); + tag_airpump = "eng_north_pump"; + tag_chamber_sensor = "eng_north_sensor"; + tag_exterior_door = "eng_north_outer"; + tag_interior_door = "eng_north_inner" + }, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room) +"ZU" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ZW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/secondary/engineering_hallway) +"ZX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/engine_smes) +"ZY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) + +(1,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(2,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(3,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(4,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(5,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(6,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(7,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(8,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(9,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(10,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(11,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(12,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(13,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(14,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(15,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(16,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(17,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(18,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(19,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(20,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(21,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(22,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(23,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(24,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(25,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(26,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(27,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Zk +Zk +rl +rl +Zk +Zk +Zk +Zk +Zk +Zk +FG +FG +Fn +Fn +FG +FG +Fn +Fn +FG +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(28,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +vG +Om +qM +Bw +ri +dL +Iv +Iv +Om +Ib +UQ +UQ +UQ +IZ +UQ +UQ +UQ +UQ +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gc +gc +gc +gc +CH +CH +CH +gc +gc +gc +gc +gc +gc +CH +CH +gc +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(29,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +jG +aV +qI +KV +aV +aV +va +aV +aV +bC +wl +qB +wl +FE +wl +wl +Ru +wl +kj +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Nh +VZ +VZ +wc +VZ +VZ +VZ +VZ +VZ +VZ +gc +VZ +wc +tN +tN +zi +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(30,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Df +OY +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Zk +FG +FG +FG +FG +FG +FG +FG +YX +rU +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Nh +VZ +OI +OI +OI +VZ +sw +yS +yS +yS +Hv +yS +uB +VZ +VZ +zi +CH +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(31,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +BH +sp +Zk +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +FG +Tw +EQ +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +FG +FG +Fn +FG +FG +FG +FG +FG +FG +FG +FG +Fn +Fn +FG +FG +Fn +Fn +FG +FG +Nh +VZ +OI +VZ +VZ +VZ +CX +Nr +VZ +VZ +gc +VZ +CX +iv +VZ +zi +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(32,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Zk +BH +Bw +Zk +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +FG +UQ +vB +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +FG +ep +pv +Uf +Tw +pr +ij +UQ +pr +DR +UQ +IZ +UQ +UQ +KH +pv +UQ +DR +UQ +gc +VZ +VZ +VZ +VZ +VZ +CX +gc +gc +gc +gc +uH +cX +gc +gc +gc +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(33,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +jG +aV +qI +Ts +sO +qI +aV +nF +Om +Zk +Er +ix +ix +ix +ix +ix +ix +ix +ix +ix +ix +ix +Er +FG +UQ +EQ +FG +Er +Er +Er +Er +FG +FG +Fn +Fn +FG +FG +FG +UQ +UQ +UQ +UQ +pr +fV +wl +Xo +wl +wl +qB +FD +FE +MX +eh +Ru +wl +wl +Wf +bB +KL +VZ +VZ +VZ +Xm +gc +se +hf +hf +Ap +cX +CO +Og +Jh +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(34,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Om +Om +IL +Om +Om +Om +Iv +vO +Zk +Er +ix +Jf +Jf +Jf +Jf +kJ +Jf +Jf +Jf +Jf +ix +Er +FG +UQ +EQ +FG +Er +Er +Er +Er +FG +Ps +UQ +UQ +ku +FM +pr +FW +Jw +Ru +wl +Xo +zE +ho +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +gc +PN +Do +Hd +VZ +VZ +CX +gc +GO +vS +hf +Ap +cX +hf +hf +ru +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(35,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Ik +qi +Zk +Zk +rl +Zk +Zk +Zk +Zk +Zk +Zk +Er +ix +Jf +mx +zz +mx +zQ +iB +mx +jn +Jf +ix +Er +FG +NQ +OZ +FG +Er +Er +Er +Er +FG +Qi +UQ +ba +Yk +MZ +pr +tc +TT +hL +UQ +pr +EQ +UQ +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gc +VZ +Do +MN +yS +yS +pb +CH +gH +XV +hf +Ap +cX +hf +hf +bV +gc +gc +gc +gc +gc +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(36,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Fk +RA +Zk +Er +Er +Er +Er +Er +Er +Er +Er +Er +ix +Jf +mx +nN +mx +rX +Hu +mx +mv +Jf +ix +Er +FG +pr +tw +FG +FG +Fn +Fn +FG +FG +UQ +DR +oE +vF +Gc +pr +pr +pr +pr +pr +pr +EQ +UQ +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gc +PR +Do +CX +VZ +VZ +VZ +CH +uf +yw +Ap +Ap +Dr +Ap +Ap +Ap +Ap +CH +oW +hf +hf +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(37,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Zk +Er +Er +Er +Sm +Sm +Sm +Sm +Sm +Sm +ix +tP +mx +dW +mx +Rm +mx +mx +yJ +go +ix +Er +FG +ij +EQ +UQ +wJ +UQ +UQ +UQ +pr +pr +pr +tw +pr +pr +pr +GH +wl +oU +wl +wl +ec +UQ +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gc +VZ +Do +CX +VZ +VZ +VZ +CH +vA +EW +Ap +Ap +zy +Ap +Ap +Ap +Ap +Nz +oW +zY +PL +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(38,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +zO +BH +Zk +Er +Er +Er +Sm +nc +Dh +iG +Gz +PI +IX +nb +HR +HR +HR +zc +HR +HR +Nb +Jf +ix +Er +FG +UQ +EQ +Tw +oQ +UQ +UQ +UQ +Su +UQ +IZ +EQ +UQ +pD +UQ +gM +UQ +Zg +Tw +vf +EQ +DR +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gc +VZ +Do +CX +VZ +VZ +VZ +FB +vl +og +Ap +Ab +Ap +Ap +Ap +Ap +Ap +CH +oW +hf +hf +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(39,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +UR +Zk +Er +Er +Er +Sm +JN +Gz +Gz +Gz +Tr +UG +Qt +mx +mx +mx +TJ +mx +mx +mx +Jf +ix +Er +FG +Tw +NC +Ru +uu +qB +qg +dz +wl +wl +wl +ed +wl +YZ +Ru +sB +pr +pr +pr +pr +EQ +UQ +FG +Er +qH +qH +qH +qH +qH +qH +qH +qH +qH +gc +PN +Do +CX +VZ +VZ +VZ +FB +Ep +ro +hf +av +Ap +hf +Ca +IO +gc +gc +gc +gc +gc +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(40,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +rl +Om +TS +Zk +Er +Er +Er +Sm +Eq +DT +Gz +Gz +GI +sr +pd +mx +Jf +gk +vd +Jf +wV +be +Le +ix +Er +FG +Iy +UQ +UQ +EQ +pr +pr +tw +pr +pr +pr +pr +pr +pr +pr +pr +pr +uO +DR +pr +EQ +UQ +FG +Er +qH +nW +Jc +Jc +Jc +Yw +dY +Jc +Jc +Qv +KC +WE +Io +uB +VZ +VZ +gc +mY +oR +hf +av +Ap +vW +pq +Ej +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(41,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +rl +RP +ME +Zk +Er +Er +Er +Sm +lO +Gz +Gz +Gz +Qn +hG +Qt +mx +mx +mx +BZ +mx +mx +mx +RG +ix +Er +FG +DR +UQ +UQ +gM +pr +YX +xn +pr +YX +PK +Jw +Xo +bt +wl +ai +oU +wl +Zn +pr +gM +UQ +FG +Er +qH +II +We +ym +HZ +ym +ym +ym +ym +GB +Fp +VZ +NO +CX +VZ +Je +gc +uR +hf +hf +av +Ap +hf +EL +hf +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(42,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Zk +Er +Er +Er +Sm +cq +Gz +ZB +ty +pO +AJ +HP +HR +HR +HR +zc +HR +HR +oi +Jf +ix +Er +FG +UQ +UQ +YX +aF +pr +sf +Ir +pr +tA +UQ +oQ +pr +yI +UQ +Tw +lA +Tw +EQ +pr +EQ +ff +FG +Er +qH +yP +xg +wK +wK +wK +wK +wK +wK +cM +au +VZ +hg +iF +kn +PB +gc +gc +gc +gc +Wa +Ap +gc +gc +gc +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(43,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +UR +Zk +Er +Er +Er +Sm +RU +rR +Ad +Sm +uw +ix +OO +mx +mx +mx +kf +mx +mx +Li +zV +ix +Er +FG +UQ +Ds +Tw +EQ +pr +ON +cp +pr +ON +DC +gg +pr +vf +Tw +UQ +UQ +pv +EQ +pr +EQ +Tw +FG +Er +qH +yP +xg +wK +rd +Sa +Ne +ZY +Mz +cM +Ni +OI +DI +Do +VZ +NO +wc +VZ +VZ +gc +uV +VZ +iv +VZ +zi +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(44,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +vG +BH +Zk +Er +Er +Er +Sm +Sm +Sm +Sm +Sm +vK +ix +rC +mx +Ei +mx +Ny +RX +mx +mP +Jf +ix +Er +FG +FG +FG +FG +tw +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +FG +pr +tw +pr +EQ +UQ +FG +Er +qH +NH +sx +wK +dj +TA +PM +PM +cM +cM +qt +SJ +SJ +RR +Sq +kk +Ph +Ph +Ng +sT +bL +VZ +VZ +VZ +zi +CH +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(45,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Zk +Er +Er +Er +Er +Er +Er +Er +Sm +iV +GG +kl +mx +xh +mx +EI +lS +mx +Ed +Jf +ix +Er +Er +Er +Er +FG +Hz +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +FG +UQ +EQ +pr +gM +Tw +FG +Er +qH +yP +xg +wK +NN +Up +Be +XF +Fa +cM +VZ +VZ +Nr +tO +VZ +VZ +VZ +VZ +VZ +gc +iN +Nr +tN +tN +zi +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(46,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Zk +Er +Er +Er +Er +Er +Er +Er +ZH +mt +ix +cF +Jf +Jf +Jf +He +Jf +Jf +Jf +Jf +ix +Er +Er +Er +Er +FG +EQ +FG +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +FG +GH +ji +pr +EQ +UQ +FG +Er +qH +dl +yn +fd +Bb +Yx +PM +PM +cM +cM +Jj +Jj +Jj +Ql +Jj +Jj +Jj +Jj +gc +gc +gc +gc +CH +CH +gc +gc +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(47,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +OY +oA +Zk +Zk +rl +Zk +Er +Er +Er +Er +ZH +mt +ix +ix +ix +ix +ix +ix +ix +ix +ix +ix +ix +Er +GX +GX +GX +GX +Jn +GX +GX +GX +GX +GX +GX +GX +GX +GX +GX +Er +FG +tw +pr +pr +EQ +cr +FG +Er +qH +ob +TU +wK +qd +XZ +ye +Sp +Fa +cM +RI +Ae +nE +iw +on +Ae +bK +Jj +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(48,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +IK +BH +ri +Iv +Bw +Zk +Er +Er +Er +Er +ZH +mt +VY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +GX +ue +xk +Ch +CP +Ch +xk +Fi +nx +Ch +ML +Ch +jc +Ch +GX +Er +FG +Tq +lF +dz +mc +Mw +FG +Er +qH +yP +xg +qH +bI +Lq +bI +bI +mO +mO +QU +VH +Ae +MV +Ae +Ex +QW +Jj +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(49,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Om +Om +uY +Zk +Er +Er +Er +Er +ZH +mt +VY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +xw +fI +tz +yk +HC +yk +tz +Ch +wz +Ch +Ch +Ch +Ch +Ch +GX +Er +FG +UQ +YH +NT +gr +ng +FG +Er +qH +II +xg +qH +lx +YV +ZC +lq +qG +mO +kG +VH +np +nM +np +Ex +QW +Jj +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(50,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Iv +BV +Om +IL +TM +Zk +Er +Er +xp +DN +DN +VS +DN +DN +DN +Ly +Er +Er +Er +Er +Er +Er +Er +Er +xw +gU +tz +pT +dF +QQ +tz +mN +nx +tz +tz +tz +tz +Ch +GX +Er +FG +FG +FG +is +FG +FG +FG +Er +qH +es +wj +qH +HU +sq +Yl +xQ +sS +mO +he +VH +np +MV +np +Ex +Xf +Jj +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(51,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +rl +pA +Uu +oo +Om +iW +Zk +Er +Er +WV +ii +ii +hZ +ws +dn +hE +WV +Er +Er +Er +Er +Er +Er +Er +Er +GX +Qm +tz +iS +dF +so +tz +kA +nx +qN +DS +qK +TK +Ch +GX +Er +Er +Er +FG +rg +FG +Er +Er +Er +qH +yP +xg +qH +FS +UT +KQ +lq +qx +mO +TZ +xq +qO +rA +Bf +Dy +QW +Jj +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(52,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +rl +Om +BH +Iv +Om +Om +Zk +Er +Er +WV +Ar +yV +wq +DA +qb +th +fF +ZM +ZM +ZM +ZM +ZM +ZM +ZM +ZM +GX +Xb +tz +DH +HC +DH +tz +Ch +nx +nx +nx +nx +nx +wz +nx +qH +qH +qH +qH +hN +qH +qH +qH +qH +qH +yP +xg +qH +mO +mO +mO +mO +mO +mO +Nn +ys +Uc +KE +GQ +Dz +ht +Jj +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(53,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Fk +BH +Om +QN +QN +Zk +Er +Er +WV +sD +VI +VI +Ar +eD +ZX +jZ +cm +YD +gA +kF +ZW +sv +ax +ax +Ao +YA +YA +YA +it +Rk +FN +FN +mB +Ch +QZ +Ch +CT +YA +GR +Jc +Jc +vs +Jc +Xv +vs +Jc +Gx +Jc +vs +rx +xg +qH +Er +Er +Er +Er +Er +Jj +Jj +Jj +Jj +Jj +Jj +Jj +Jj +Jj +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(54,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +UR +Om +Vl +Vs +Zk +Er +Er +WV +vi +VI +VI +Gs +eD +Cl +sC +QA +st +un +XI +XW +Am +JB +Zx +JJ +FN +FN +FN +AE +bl +Ch +Ch +pi +cx +FN +FN +AE +FN +Ke +ym +ym +ym +ym +Gw +ym +HZ +ym +ym +ym +ym +ey +qH +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(55,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +fv +QN +rV +Zk +Er +Er +WV +HJ +VI +VI +NU +VI +Gi +fF +ZM +ZM +ZM +ZM +JM +ZM +ZM +ZM +GX +nx +nx +Ch +EX +CB +Ch +Ch +nx +eI +Ch +Ch +MO +RY +GX +qH +qH +qH +qH +wE +qH +qH +qH +qH +qH +qH +qH +qH +Er +Er +Er +Er +Er +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(56,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +OY +oA +Zk +Zk +Zk +Zk +Er +Er +WV +Ay +VI +dJ +rt +VJ +Dn +WV +Er +Er +Er +Zk +tg +Zk +Er +Er +GX +pJ +Ch +Ch +dH +ts +ts +ts +nx +eI +IM +nx +sG +nx +GX +BQ +SM +XL +Tc +VE +KD +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Cm +Cm +wP +wP +wP +wP +wP +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(57,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Zk +Er +Er +Er +Er +Er +br +DN +DN +DN +nG +DN +DN +yb +Er +Er +Er +Zk +QB +Zk +Er +Er +GX +pJ +Ch +um +hY +ts +Xl +ts +nx +AV +Ch +nx +MO +mf +GX +Dl +Gu +ir +Kx +Cv +My +My +My +My +My +Er +Er +Er +Er +Er +Er +Cm +Cm +wP +wP +wP +wP +wP +wP +wP +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(58,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Zk +Er +Er +Er +Er +Er +Er +Er +Er +Er +Yr +Er +Er +Er +Er +Zk +Zk +Zk +XY +Zk +Zk +Er +GX +uN +Ch +Ch +dH +nx +nx +vt +nx +eI +LB +nx +MO +zu +GX +IN +Qa +Kx +Kx +Cv +Gg +VL +kN +ya +My +Er +Er +Er +Er +Er +Cm +wP +wP +wP +wP +wP +wP +wP +wP +wP +wP +wP +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(59,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +RA +rl +Er +Er +Er +Er +Er +Er +Er +Er +Er +pm +Er +Er +Er +Zk +Zk +tK +HB +RN +Ce +Zk +Er +GX +pJ +Ch +Ch +zr +lb +EF +EF +lb +wd +YA +lb +Od +aZ +GX +rH +Kx +JC +cy +tX +Tz +rB +Tl +Wc +My +Er +Er +Er +Er +Cm +Cm +wP +wP +wP +wP +wP +OP +wP +wP +wP +wP +wP +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(60,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +IL +BH +rl +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +cf +Om +Om +ct +Om +Zk +Er +GX +pJ +Ch +Ch +dH +nx +Ci +JL +aj +Is +Ch +nx +ts +Im +GX +li +Kx +qU +Kx +Cv +Gg +pC +dM +wX +My +Er +Er +Er +Cm +wP +wP +wP +wP +wP +wP +wP +ml +wP +wP +wP +wP +wP +wP +wP +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(61,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Iv +UR +Zk +Er +Er +Er +Er +Er +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Zk +cA +Om +hh +bu +Zk +Zk +Er +GX +GX +GX +CF +Gp +hA +hA +hA +hA +jd +gp +GX +GX +GX +GX +gL +gL +QI +Kx +xY +Gg +Gg +Gg +Gg +My +Er +Er +Cm +Cm +wP +wP +wP +wP +wP +wP +wP +ml +wP +wP +wP +wP +wP +wP +wP +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(62,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +jp +UR +Zk +Er +Er +Er +Er +Er +Zk +Om +Ya +Fs +ka +Om +Ya +Bw +OY +nI +Om +pA +Iq +Zk +Er +Er +Er +Zs +iT +iT +Lo +Xz +xc +rh +Xz +uy +iT +iT +rJ +PQ +eF +Wt +gL +ul +cV +VE +Pr +FH +Oc +Hp +NK +Er +Er +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +YI +Cm +Cm +Cm +Cm +Mv +Cm +Cm +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(63,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +WX +ME +Zk +Er +Er +Er +Er +Er +Zk +Wd +Om +Om +KK +Om +Iv +Pg +OY +Om +Iv +Om +VV +Zk +Er +Er +Er +Zs +eY +iT +cO +gT +Sk +jj +Xz +uy +iT +aH +rJ +dc +Jv +oS +VC +LO +Qa +FT +dA +Rx +PP +Vb +NK +Er +Er +Cm +Cm +Er +Er +Cm +Ze +AR +Cj +Cm +wI +AR +kU +AR +sd +Cm +Er +Er +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(64,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Om +BH +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Fd +Iv +Om +uG +Om +Om +Om +OY +Om +IL +Om +me +Zk +Er +Er +Er +Zs +jb +ek +Lo +QS +QS +QS +QS +uy +iT +AX +rJ +FU +sj +Vn +gL +Cv +Qa +Cv +Pr +zU +JE +fa +NK +Er +Er +ao +Cm +mR +mR +Cm +YI +iO +Cm +Cm +Cm +Cm +Cm +iO +YI +Dt +mR +mR +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(65,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +rl +ea +aR +cE +aV +aV +aV +fL +aV +aV +bm +aV +aV +VO +aV +aV +aV +Qf +aV +aV +Zh +Pv +Zk +Er +Er +Er +Zs +Lc +iT +ne +JY +Qr +gi +Xz +uy +ek +Ih +rJ +gL +gL +gL +gL +Wh +Kx +Cv +Pr +Pr +Pr +Pr +NK +Er +Er +Cm +Cm +Er +Er +Cm +GP +Cm +Er +mR +Er +mR +Er +Cm +GP +Cm +Er +Er +Cm +Cm +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(66,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +rl +NF +Om +dX +Nk +Om +Om +OY +Fk +Om +Om +Om +vO +BH +Om +OY +OY +OY +OY +OY +OY +Zk +Zk +Er +Er +Er +Zs +iT +iT +Lo +Xz +xb +xc +Xz +uy +iT +iT +oN +oK +jf +WL +Hg +Cv +Kx +Cv +xZ +Eg +Ew +AN +XO +Er +Er +Zd +jg +Er +Er +Cm +YI +Cm +mR +BB +Cm +BB +mR +Cm +YI +Cm +Er +Er +an +Mu +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(67,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Om +Om +Om +Iv +Om +BH +Iv +OY +Tb +Om +Om +aQ +Tf +Zk +Er +Er +Er +Er +Zs +Zs +dB +YL +Zs +Zs +Zs +Zs +EZ +TF +Bi +oN +om +pX +MB +ny +LO +Kx +FT +PA +Ky +bj +kX +XO +Er +Er +al +Cm +mR +mR +Mv +YI +Cm +Er +Cm +JV +Cm +Er +Cm +YI +Dt +mR +mR +Cm +al +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(68,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +OY +OY +OY +OY +Om +BH +Om +OY +Lm +Om +aQ +mJ +rG +Zk +Er +Er +Er +Er +Zs +SX +iT +Lo +Wr +Wr +kE +Wr +uy +iT +SX +oN +lB +nA +nm +Hg +Cv +Qa +Cv +xZ +yA +AD +ib +XO +Er +Er +tQ +jg +Er +Er +Cm +YI +Cm +mR +BB +Cm +BB +mR +Cm +YI +Cm +Er +Er +an +jt +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(69,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +mE +Om +qM +OY +Iv +Qy +aV +Qf +Ax +FQ +FQ +FQ +vb +Zk +Er +Er +Er +Er +Zs +KN +iT +nB +vJ +rT +JI +ns +UD +iT +gE +oN +Hg +Hg +Hg +Hg +Cv +Kx +xY +xZ +xZ +xZ +xZ +XO +Er +Er +al +Cm +Er +Er +Cm +GP +Cm +Er +mR +Er +mR +Er +Cm +GP +Cm +Er +Er +Cm +al +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(70,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Mt +SI +qs +Qf +aV +IC +Om +OY +Bw +Om +ol +Iv +Iv +Zk +Er +Er +Er +Er +Zs +WZ +iT +iT +iT +Lo +uy +ek +iT +iT +iT +bJ +aU +Wq +Ln +UX +Cv +Kx +Cv +pW +sm +gb +tn +vT +Er +Er +al +Cm +mR +mR +Cm +YI +iO +Cm +Cm +Cm +Cm +Cm +iO +YI +Dt +mR +mR +Cm +al +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(71,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +NF +Iv +Bw +OY +ol +BH +IL +Zk +Zk +Zk +Zk +Zk +Zk +Zk +Er +Er +Er +Er +Zs +Zs +wf +AW +os +PX +uy +ui +Qe +wf +Bi +bJ +Yi +ab +HH +IH +LO +Kx +FT +QG +bw +qm +rw +vT +Er +Er +al +Cm +Er +Er +Cm +wI +AR +wZ +AR +qu +AR +bF +AR +QD +Dt +Er +Er +ao +al +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(72,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zk +Zk +Zk +Zk +Zk +Zk +Fy +OY +Zk +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +na +iT +Lo +uy +iT +na +Er +Er +bJ +uE +PH +fM +UX +Cv +Kx +Cv +pW +GJ +tL +Qk +vT +Er +Er +al +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +YI +Cm +Cm +Cm +Cm +Cm +Cm +Cm +Cm +al +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(73,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +NZ +ZP +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +na +iT +Lo +uy +iT +na +Er +Er +bJ +UX +UX +UX +UX +Wh +Kx +Cv +pW +pW +pW +pW +vT +Er +Er +Wz +XM +cK +Er +Er +Er +Ou +NV +NV +RS +NV +NV +UK +Er +Er +Er +cK +Zd +lH +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(74,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mr +Sb +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +na +xf +Lo +fk +rm +na +Er +Er +yZ +eU +sb +PO +qa +SP +Qa +Cv +wR +Kx +Kx +EP +KD +Er +DY +DY +Zq +DY +Er +Er +Er +QY +bH +zk +Po +LI +ki +Rl +Er +Er +Er +DY +rQ +DY +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(75,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +iA +Cz +nn +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +na +iT +ne +Ut +iT +na +Er +Er +yZ +hW +jX +BN +ci +Tj +Kx +Ez +da +Kx +Qa +wW +KD +Er +DY +ZT +Zw +DY +Er +Er +Er +QY +KF +cQ +Cu +su +kd +Rl +Er +Er +Er +DY +LP +TO +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(76,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mM +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +na +iT +Lo +uy +iT +na +Er +Er +yZ +BY +Bl +Rb +qa +Nj +Kx +Qa +Cv +HL +Kx +fw +KD +Er +DY +DY +bx +po +Qd +Qd +Qd +Sc +BK +qJ +lY +hT +kd +Sc +Qd +Qd +Qd +po +Cp +DY +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(77,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mr +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +na +iT +Lo +lp +iT +na +Er +Er +yZ +yZ +yZ +yZ +yZ +Nm +Nm +KD +mu +qn +KD +KD +KD +Er +Er +DY +LT +jJ +UA +iU +LX +Vr +SG +zD +nZ +KO +jx +Vr +GM +dZ +UA +Xy +nY +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(78,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mi +mi +mi +mi +mi +mi +bS +cG +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Zs +Zs +Dk +QK +Zs +Zs +Er +Er +Er +Er +Er +Er +Er +Er +Er +Ml +qZ +Et +Ml +Er +Er +Er +Er +DY +zh +qy +Ix +RM +fE +Pj +KA +SF +yg +eH +by +iE +fR +kp +SD +qy +Aj +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(79,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +as +as +as +cG +as +as +mr +yR +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gs +xl +el +gs +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Ml +OE +cB +Ml +Er +Er +DY +DY +DY +DY +DY +vL +ER +Bz +Vr +Ow +jE +ld +YB +ha +Vr +yK +Rn +Iz +DY +DY +DY +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(80,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +iA +Br +Db +to +cv +to +Yh +oM +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gs +CD +BC +gs +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Ml +WR +cN +Ml +Er +Er +DY +JW +JW +Kp +DY +ew +Yu +uk +Vr +Vr +wT +Pe +wT +Vr +Vr +hs +cY +iI +hk +hk +hk +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(81,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +iA +as +rL +Bt +cG +as +as +bM +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gs +Nf +tD +gs +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Ml +ET +cB +Ml +Er +Er +DY +xJ +fK +KB +Em +xj +Km +nk +kR +kR +fm +Af +fm +kR +kR +XH +lr +wA +hk +hk +dU +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(82,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +as +uA +Px +cG +yR +as +mr +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +gs +Mp +el +gs +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Ml +qZ +Pm +Ml +Er +Er +DY +dq +Uv +fP +DY +yq +MP +Bc +kO +qy +qy +qy +qy +qy +qy +Go +qy +Or +DY +DY +DY +DY +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(83,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mi +cG +cG +cG +as +as +mr +Bt +mi +Er +Er +Er +Er +Er +Er +Er +Er +AS +AS +AS +AS +AS +AS +AS +eG +VG +AS +AS +AS +AS +AS +AS +AS +AS +AS +Er +Er +Ml +OE +Ys +Ml +Er +Er +DY +DY +DY +CW +CW +CW +HO +gD +CW +RZ +RZ +RZ +RZ +RZ +dD +CW +CW +CW +CW +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(84,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +yR +as +as +as +RD +bM +yR +mi +Er +Er +Er +Er +Er +Er +Er +Er +AS +ei +AP +ap +ap +ap +uJ +of +Hi +lR +le +Iu +gd +rs +Py +SC +rP +AS +Er +Er +Ml +oc +JR +Ml +Er +Er +Er +Er +Er +uI +VF +Hn +HX +Ox +Tg +Cx +mq +mq +zM +IV +uI +yu +BE +vI +CW +CW +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(85,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +zT +Ck +Ck +kB +kB +AC +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +GF +ap +wp +wp +wp +gJ +ap +ap +yd +BR +dS +Ok +BR +BR +BR +Nw +eB +AS +Er +Er +Ml +OE +HQ +Ml +Er +Er +Er +Er +Er +uI +tT +Fr +DP +Ty +Ty +Ty +Ty +SB +Gm +Ua +CW +tV +xe +tV +zJ +CW +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(86,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +MY +Wx +as +as +DW +bO +JA +mi +Er +Er +Er +Er +Er +Er +Er +Er +GF +ap +wp +tR +wa +pI +ap +ap +ap +PJ +wp +wp +wp +wp +mS +hc +iy +AS +Er +Er +Ml +qZ +cB +Ml +Er +Er +Er +Er +Er +CW +Lv +Fr +TC +Fr +ja +CW +dy +Dd +Gm +YT +CW +Fr +Fr +Fr +CW +CW +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(87,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +AF +as +as +yR +as +mr +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +GF +ap +wp +cU +No +pI +ap +AP +ap +gK +wU +tY +ih +wp +UF +pw +hj +AS +Er +Er +Ml +vN +CU +Ml +Er +Er +Er +Er +Er +CW +pY +Fr +TC +Fr +eS +CW +bE +Dp +OF +Gy +CW +Ui +Fr +ac +CW +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(88,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mi +mi +mi +mi +mi +BO +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +GF +ap +wp +Sg +eb +pI +ap +ap +ap +ZU +id +gK +ez +wp +EY +hc +iy +AS +td +td +td +Av +td +td +td +td +td +tF +tF +CW +PU +Fr +TC +Fr +hi +CW +pZ +Dp +VX +FL +Tm +gh +lM +hB +CW +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(89,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mr +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +GF +ap +wp +wp +wp +yl +ap +ap +ap +ZU +id +gK +HT +wp +kY +hc +Yo +px +aA +aA +eO +gI +cH +aA +aA +IA +aA +aA +aA +Sh +Bx +Fr +TC +Fr +nR +CW +pk +te +hw +mD +CW +TD +Rv +Uz +CW +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(90,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mr +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +AS +ap +AP +ap +ap +ap +AP +ap +ap +ZU +id +gK +HY +wp +mS +of +Hi +kr +eZ +gC +OD +zL +FY +eZ +Rd +hM +ic +gC +eZ +vw +Xh +Pz +GS +Fr +yU +CW +nv +te +Gm +uv +Ga +Ga +UI +Ga +Ga +Ga +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(91,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +FA +cG +mi +Er +Er +Er +Er +Er +Er +Er +Er +AS +AS +AS +AS +AS +OW +cc +cc +ap +ZU +id +gK +iJ +wp +pl +ap +iy +AS +td +td +td +du +td +td +td +td +td +tF +tF +CW +Kl +Fr +TC +Fr +XU +CW +lP +Di +rW +Ol +Ga +WO +DX +Xg +dx +Ga +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(92,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +HD +as +mi +mi +mi +mi +mi +mi +mi +Er +Er +Er +Er +Er +Er +GF +CI +qT +AK +sk +fJ +wp +wp +wp +wp +EY +ap +Pu +AS +Er +Er +mi +Qb +Kh +mi +Er +Er +Er +Er +Er +CW +gO +Kq +Fb +Me +Me +Me +Me +Me +cs +mK +Ga +Ey +WO +dx +Ki +Ga +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(93,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +bM +as +cG +ad +as +as +hn +jl +mi +Er +Er +Er +Er +Er +Er +GF +ES +yX +vH +sk +ap +ap +AP +ok +MI +ap +ap +cj +AS +Er +Er +mi +mr +Wx +mi +Er +Er +Er +Er +Er +CW +DF +Fr +Qj +Fr +Fr +Fr +Fr +Fr +iR +ss +rr +dP +ev +tj +dP +Ga +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(94,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +jQ +to +cv +to +to +to +RB +Bt +mi +Er +Er +Er +Er +Er +Er +GF +Us +oO +oO +ky +AP +ap +ap +ap +ap +AP +ap +ap +AS +Er +Er +mi +mr +yR +mi +Er +Er +Er +Er +Er +CW +Jb +xd +Bo +pV +ga +XC +fU +zG +jC +gx +Zp +ex +aD +zj +dP +Ga +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(95,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mr +as +cG +VW +as +as +bM +as +mi +Er +Er +Er +Er +Er +Er +yC +NW +NW +NW +AS +AS +AS +AS +AS +Mc +AS +AS +AS +AS +Er +Er +mi +bM +RD +mi +Er +Er +Er +Er +fy +fy +fy +fy +sl +Os +Os +Os +fy +fy +UV +RE +Ga +CE +rD +KZ +xi +Ga +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(96,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mr +Bt +cG +cG +cG +jl +NZ +ZP +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +as +Ai +Sn +wM +Px +mi +Er +Er +Er +Er +Er +mi +mr +RD +mi +Er +Er +Er +Er +fy +yx +Hr +rn +Dj +Dj +Dj +Dj +Dj +WH +LS +vo +Ga +Ga +Ga +Ga +Ga +Ga +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(97,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mr +as +as +yR +cG +VW +mr +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +yR +zd +kB +YK +as +mi +Er +Er +Er +Er +Er +mi +uD +nn +mi +Er +Er +Er +Er +fy +sE +dR +rn +Dj +Dj +Dj +Dj +Dj +Dj +Zc +vo +fy +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(98,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +NZ +Jl +as +xy +cG +cG +bS +cG +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +KU +as +Xd +YR +as +mi +Er +Er +Er +Er +Er +mi +sW +yR +mi +Er +Er +Er +Er +fy +TY +dR +rn +Dj +Dj +Kk +Kk +Kk +Dj +Nv +Hs +fy +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(99,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +uD +Rz +as +as +as +as +mr +as +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +mi +cG +cG +cG +bS +cG +mi +mi +mi +mi +mi +mi +mi +mr +Sb +mi +Er +Er +Er +Er +fy +jy +uM +rn +Dj +Dj +dR +MA +dR +Dj +Zc +vo +VT +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(100,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +IF +to +to +to +to +tJ +Hf +to +cv +jh +tJ +tJ +to +YQ +as +yR +as +Px +hn +as +as +as +as +mr +as +as +cG +iz +as +gB +yR +zd +sA +as +mi +Er +Er +Er +Er +BX +no +no +no +Dj +Dj +Td +dT +Td +Dj +Zc +vo +VT +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(101,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +yR +as +as +ly +Wx +as +as +Bt +cG +as +yR +as +as +IF +to +to +oe +to +eq +iD +tJ +ge +FR +Hf +oe +to +cv +Yh +tJ +to +to +to +gu +yR +mi +Er +Er +Er +Er +BX +fs +Rc +no +Dj +Dj +Dj +ra +EV +Vt +OC +vo +fy +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(102,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mi +iA +iA +mi +mi +iA +iA +mi +mi +mi +mi +mi +mi +iA +iA +mi +mi +mi +mi +jR +RD +mn +cG +cG +cG +cG +mi +mi +mi +mi +mi +mi +mi +mi +mi +Er +Er +Er +Er +ch +vr +Lu +yE +ze +Oo +Oo +MU +kh +tu +Oo +lZ +fy +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(103,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +PY +Wx +mr +cG +gX +RD +dh +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +BX +WK +gW +no +Mr +Dj +Kk +gz +nz +vo +gZ +gZ +gZ +gZ +gZ +GA +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(104,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +yR +as +IF +cv +bc +MK +as +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +hp +XN +XN +XN +Mr +Dj +dR +KX +tq +vo +gZ +EK +Oj +IG +lo +FK +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(105,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mi +mi +mi +mi +mi +mi +iA +iA +mi +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +hp +mw +WY +XN +Mr +Dj +Td +Td +AG +vo +gZ +hV +yY +yY +yY +JQ +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(106,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +kv +NM +Mm +dQ +MM +Dj +Dj +Dj +Zc +vo +vv +FK +yY +pg +lt +FK +eL +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(107,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +hp +Jm +Bj +XN +CG +GK +rj +GK +qq +zF +Zt +CR +As +MD +MD +WD +eL +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(108,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +hp +hp +hp +XN +pU +UZ +KY +Dj +Mr +Dj +gZ +wN +nr +Vi +Vi +tU +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(109,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +CL +ve +OR +sM +DK +DK +Pi +DK +gZ +QV +FK +FK +FK +DL +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(110,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +CL +lj +ce +vM +DK +Ud +ZA +Ef +gZ +UB +FK +FK +FK +pc +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(111,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +CL +UZ +UZ +fT +DK +jo +mH +Zu +gZ +qX +aC +FK +FK +pc +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(112,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +CL +Vm +Fj +AZ +DK +cb +zl +lu +gZ +uZ +aC +FK +FK +pc +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(113,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +CL +CL +CL +CL +mC +jU +mT +zl +gZ +OM +Ov +SR +Vi +Vi +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(114,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +mC +mC +mC +mC +GA +GA +GA +GA +GA +GA +GA +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(115,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(116,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(117,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(118,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(119,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(120,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(121,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(122,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(123,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(124,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(125,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(126,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(127,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(128,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(129,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(130,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(131,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(132,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(133,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(134,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(135,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(136,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(137,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(138,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(139,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} +(140,1,1) = {" +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +Er +"} diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm index ecce2e4fd4..3139989968 100644 --- a/maps/submaps/admin_use_vr/ert.dmm +++ b/maps/submaps/admin_use_vr/ert.dmm @@ -8,7 +8,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -47,7 +46,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -103,8 +101,6 @@ /area/ship/ert/barracks) "aC" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/wall/shull, @@ -223,7 +219,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 4; dir = 4; icon_state = "0-4" }, @@ -268,8 +263,6 @@ pixel_x = -32 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/red{ @@ -299,8 +292,6 @@ /area/ship/ert/mech_bay) "bv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -349,8 +340,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -376,8 +365,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/table/rack/steel, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/weapon/rig/ert/medical, @@ -422,8 +409,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -433,7 +418,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -457,8 +441,6 @@ /obj/machinery/light/no_nightshift, /obj/effect/floor_decal/industrial/outline, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -490,7 +472,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 4; dir = 4; icon_state = "0-4" }, @@ -556,7 +537,6 @@ /area/ship/ert/dock_port) "db" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/hyper{ @@ -584,8 +564,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/dispenser/oxygen, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -650,11 +628,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/firedoor/glass, @@ -662,8 +638,6 @@ /area/ship/ert/brig) "dx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -681,13 +655,9 @@ /area/ship/ert/barracks) "dC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -696,8 +666,6 @@ /obj/machinery/shield_capacitor, /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -707,8 +675,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -718,8 +684,6 @@ /area/ship/ert/barracks) "dW" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/wall/rshull, @@ -768,16 +732,12 @@ /area/ship/ert/bridge) "ee" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, /area/ship/ert/mech_bay) "ef" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -791,8 +751,6 @@ req_one_access = list(103) }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -812,8 +770,6 @@ /area/ship/ert/engine) "eG" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/multi_tile{ @@ -829,8 +785,6 @@ /area/ship/ert/barracks) "eH" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -861,8 +815,6 @@ /obj/effect/landmark/late_antag/ert, /obj/structure/table/bench/steel, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -884,8 +836,6 @@ /area/ship/ert/barracks) "fk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/wall/rshull, @@ -895,7 +845,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 4; dir = 4; icon_state = "0-4" }, @@ -920,8 +869,6 @@ name = "Commando" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -931,8 +878,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -945,16 +890,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, /area/ship/ert/med_surg) "fu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -1105,8 +1046,6 @@ /area/ship/ert/barracks) "gn" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1119,8 +1058,6 @@ /area/ship/ert/atmos) "go" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -1141,8 +1078,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -1154,8 +1089,6 @@ /area/ship/ert/dock_star) "gx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -1180,8 +1113,6 @@ /area/ship/ert/mech_bay) "gN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1231,8 +1162,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1316,8 +1245,6 @@ /area/ship/ert/armoury_dl) "gY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -1333,21 +1260,15 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/ship/ert/med_surg) "ha" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1360,8 +1281,6 @@ /area/ship/ert/teleporter) "hb" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -1424,8 +1343,6 @@ }, /obj/structure/reagent_dispensers/foam, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline, @@ -1433,8 +1350,6 @@ /area/ship/ert/hangar) "hq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1497,7 +1412,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, @@ -1530,8 +1444,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -1548,8 +1460,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /obj/item/modular_computer/laptop/preset/custom_loadout/elite, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1572,8 +1482,6 @@ /obj/item/ammo_magazine/m9mml/ap, /obj/item/ammo_magazine/m9mml/ap, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/red, @@ -1614,8 +1522,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1642,8 +1548,6 @@ /area/ship/ert/barracks) "ir" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/shull, @@ -1735,16 +1639,12 @@ /area/ship/ert/barracks) "iz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/shull, /area/ship/ert/mech_bay) "iC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1771,8 +1671,6 @@ /area/ship/ert/eng_storage) "iK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, @@ -1782,8 +1680,6 @@ /area/ship/ert/brig) "iO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/light/no_nightshift{ @@ -1797,8 +1693,6 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1820,8 +1714,6 @@ pixel_y = 26 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -1837,8 +1729,6 @@ name = "Commando" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -1851,13 +1741,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -1956,7 +1842,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow, @@ -1985,8 +1870,6 @@ /area/ship/ert/eng_storage) "jK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -2008,8 +1891,6 @@ /area/ship/ert/barracks) "jZ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, @@ -2027,8 +1908,6 @@ /obj/effect/floor_decal/industrial/warning, /obj/structure/railing, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/reinforced, @@ -2070,8 +1949,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/red, @@ -2091,8 +1968,6 @@ /area/ship/ert/armoury_st) "kw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2120,8 +1995,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2135,8 +2008,6 @@ /obj/machinery/power/port_gen/pacman/mrs, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -2230,8 +2101,6 @@ /area/ship/ert/engine) "lm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/shull, @@ -2279,13 +2148,9 @@ /area/ship/ert/barracks) "lz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -2310,8 +2175,6 @@ /area/ship/ert/teleporter) "lR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2321,8 +2184,6 @@ /area/ship/ert/hallways_aft) "lU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -2393,8 +2254,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -2455,8 +2314,6 @@ /area/ship/ert/barracks) "mt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/power/apc/hyper{ @@ -2466,7 +2323,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2508,8 +2364,6 @@ name = "Commando" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2529,23 +2383,17 @@ /area/ship/ert/med_surg) "mR" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/barracks) "mV" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2569,13 +2417,9 @@ /area/ship/ert/brig) "mZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2595,8 +2439,6 @@ /area/ship/ert/barracks) "nc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2616,8 +2458,6 @@ /area/ship/ert/med_surg) "nn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2627,16 +2467,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/barracks) "np" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2657,8 +2493,6 @@ /area/ship/ert/barracks) "nq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -2678,8 +2512,6 @@ /area/ship/ert/barracks) "nv" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -2709,8 +2541,6 @@ /area/ship/ert/gunnery) "nB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2723,8 +2553,6 @@ /area/ship/ert/mech_bay) "nC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -2741,8 +2569,6 @@ /area/ship/ert/gunnery) "nS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/red{ @@ -2788,8 +2614,6 @@ /area/space) "ob" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -2856,8 +2680,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -2877,7 +2699,6 @@ name = "ERT NIFSoft Vendor" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2926,8 +2747,6 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2940,8 +2759,6 @@ /area/ship/ert/gunnery) "oX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2978,13 +2795,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3311,7 +3124,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, @@ -3339,8 +3151,8 @@ /obj/item/stack/nanopaste/advanced, /obj/item/stack/nanopaste/advanced, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, -/obj/item/weapon/storage/pill_bottle/iron, -/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/blood_regen, +/obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/storage/pill_bottle/sleevingcure/full, /obj/item/weapon/storage/box/syringes, /obj/item/weapon/storage/box/syringes{ @@ -3362,8 +3174,6 @@ /area/ship/ert/med_surg) "ql" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3373,8 +3183,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3410,8 +3218,6 @@ req_access = list(103) }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3431,15 +3237,12 @@ "qt" = ( /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3450,8 +3253,6 @@ /area/ship/ert/brig) "qy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3461,8 +3262,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3517,8 +3316,6 @@ /area/ship/ert/hallways) "qP" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3552,7 +3349,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/reinforced/airless, @@ -3595,7 +3391,6 @@ /area/ship/ert/gunnery) "rr" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/hyper{ @@ -3614,28 +3409,21 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "rt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/wall/rshull, /area/ship/ert/engine) "ry" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3649,8 +3437,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3700,8 +3486,6 @@ pixel_y = -2 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3709,16 +3493,12 @@ "rP" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/hallways_aft) "rR" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -3764,8 +3544,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3778,8 +3556,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -3868,8 +3644,6 @@ req_one_access = list(103) }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3961,8 +3735,6 @@ /area/ship/ert/armoury_dl) "sU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3975,8 +3747,6 @@ /area/ship/ert/eng_storage) "sW" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/no_nightshift{ @@ -3993,8 +3763,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/remote/blast_door{ @@ -4024,8 +3792,6 @@ /area/ship/ert/med) "tn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/no_nightshift{ @@ -4123,8 +3889,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4137,8 +3901,6 @@ /area/ship/ert/med) "uc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4153,8 +3915,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4164,8 +3924,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -4201,8 +3959,6 @@ /area/ship/ert/commander) "ut" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4215,8 +3971,6 @@ /area/ship/ert/hallways_aft) "uu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4228,8 +3982,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -4279,8 +4031,6 @@ }, /obj/machinery/door/firedoor/border_only, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular/open{ @@ -4297,8 +4047,6 @@ /area/ship/ert/engine) "vd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -4311,8 +4059,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4333,8 +4079,6 @@ /area/shuttle/ert_ship_boat) "vp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/no_nightshift{ @@ -4362,7 +4106,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -4385,8 +4128,6 @@ "wh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -4399,8 +4140,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4425,7 +4164,6 @@ }, /obj/structure/window/titanium, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/firedoor/glass, @@ -4433,8 +4171,6 @@ /area/ship/ert/brig) "wC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4450,8 +4186,6 @@ "wG" = ( /obj/structure/reagent_dispensers/water_cooler/full, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -4468,8 +4202,6 @@ /area/ship/ert/med_surg) "wM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/shull, @@ -4483,29 +4215,21 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/engineering) "wU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/barracks) "wX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -4530,8 +4254,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -4544,8 +4266,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -4589,8 +4309,6 @@ /area/ship/ert/brig) "xt" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4641,7 +4359,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -4697,8 +4414,6 @@ }, /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -4730,8 +4445,6 @@ req_access = list(103) }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4824,8 +4537,6 @@ /area/ship/ert/med) "xX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4849,13 +4560,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4965,8 +4672,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -5043,8 +4748,6 @@ pixel_y = -26 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -5053,8 +4756,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -5074,8 +4775,6 @@ /area/ship/ert/hangar) "yR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/no_nightshift{ @@ -5149,8 +4848,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -5194,8 +4891,6 @@ /area/ship/ert/teleporter) "zs" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5205,8 +4900,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -5283,8 +4976,6 @@ /area/ship/ert/hallways_aft) "Aq" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -5324,8 +5015,6 @@ /area/ship/ert/barracks) "Av" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -5341,8 +5030,6 @@ /area/ship/ert/teleporter) "Ay" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5379,20 +5066,15 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/wood, /area/ship/ert/commander) "AN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/wall/rshull, @@ -5474,8 +5156,6 @@ /area/ship/ert/med) "AW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -5526,8 +5206,6 @@ /area/ship/ert/barracks) "Bp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5565,13 +5243,9 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5587,8 +5261,6 @@ /area/ship/ert/hallways) "BF" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5610,8 +5282,6 @@ /area/ship/ert/engineering) "BM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5625,8 +5295,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/no_nightshift{ @@ -5664,8 +5332,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5690,8 +5356,6 @@ /area/ship/ert/med) "Cx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -5726,8 +5390,6 @@ /area/shuttle/ert_ship_boat) "CK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -5737,8 +5399,6 @@ /area/ship/ert/dock_star) "CL" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5751,8 +5411,6 @@ /area/ship/ert/armoury_st) "CM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5772,8 +5430,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -5842,8 +5498,6 @@ "Dk" = ( /obj/structure/sign/nosmoking_1, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -5968,8 +5622,6 @@ /area/ship/ert/hallways_aft) "Eb" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -6014,8 +5666,6 @@ /area/ship/ert/armoury_dl) "Eo" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -6036,8 +5686,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -6089,8 +5737,6 @@ /area/ship/ert/hangar) "Fg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -6271,8 +5917,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6281,8 +5925,6 @@ /area/ship/ert/hallways) "FY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -6292,8 +5934,6 @@ /area/ship/ert/hallways) "Gn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -6331,8 +5971,6 @@ pixel_y = 26 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -6352,8 +5990,6 @@ /area/ship/ert/commander) "GQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6434,8 +6070,6 @@ /area/ship/ert/armoury_dl) "GY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6540,8 +6174,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6632,8 +6264,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -6668,7 +6298,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/alarm/alarms_hidden{ @@ -6685,8 +6314,6 @@ /area/ship/ert/hangar) "Is" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6700,7 +6327,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 4; dir = 4; icon_state = "0-4" }, @@ -6724,11 +6350,9 @@ dir = 8 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/firedoor/glass, @@ -6759,7 +6383,6 @@ }, /obj/structure/window/titanium, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/firedoor/glass, @@ -6792,8 +6415,6 @@ /area/ship/ert/med_surg) "Jh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -6823,8 +6444,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6919,8 +6538,6 @@ /area/ship/ert/engine) "JM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6954,8 +6571,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -6970,16 +6585,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "Kd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6989,13 +6600,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/corner/red{ @@ -7028,7 +6635,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7059,8 +6665,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -7081,8 +6685,6 @@ /area/ship/ert/commander) "KM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7092,16 +6694,12 @@ /area/ship/ert/bridge) "KN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/shull, /area/ship/ert/barracks) "KO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7191,8 +6789,6 @@ /area/ship/ert/brig) "Lh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7202,8 +6798,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -7237,7 +6831,6 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/outline/grey, @@ -7294,8 +6887,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -7309,8 +6900,6 @@ /area/ship/ert/hangar) "LF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -7326,8 +6915,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7355,8 +6942,6 @@ /obj/machinery/light/no_nightshift, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7373,18 +6958,12 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7400,8 +6979,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/techmaint, @@ -7415,8 +6992,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -7480,8 +7055,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -7489,16 +7062,12 @@ "Mk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/teleporter) "Mm" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, @@ -7635,8 +7204,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7657,13 +7224,9 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -7685,8 +7248,6 @@ /area/ship/ert/med_surg) "Nb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/steel_reinforced, @@ -7702,8 +7263,6 @@ /area/ship/ert/med) "Nf" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7726,18 +7285,12 @@ /area/shuttle/ert_ship_boat) "Nh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -7765,18 +7318,12 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/catwalk_plated/techfloor, @@ -7808,8 +7355,6 @@ }, /obj/machinery/atmospherics/binary/pump/fuel/on, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -7832,33 +7377,23 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "NR" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/catwalk_plated/techmaint, @@ -7872,8 +7407,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -7889,8 +7422,6 @@ /area/ship/ert/hallways) "NY" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7904,8 +7435,6 @@ /area/ship/ert/hallways_aft) "NZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7921,18 +7450,12 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -7947,8 +7470,6 @@ /area/ship/ert/hangar) "Og" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7966,8 +7487,6 @@ /area/ship/ert/brig) "Oh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7980,8 +7499,6 @@ /area/ship/ert/brig) "Oi" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8018,21 +7535,15 @@ /area/ship/ert/hallways_aft) "Ox" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engineering) "Oy" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8048,8 +7559,6 @@ /area/ship/ert/med) "OB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8061,18 +7570,12 @@ /area/ship/ert/hangar) "OF" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -8096,8 +7599,6 @@ /area/ship/ert/engine) "ON" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -8110,8 +7611,6 @@ /area/ship/ert/bridge) "OR" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair/bay/chair/padded/blue, @@ -8119,8 +7618,6 @@ /area/ship/ert/bridge) "OS" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8140,8 +7637,6 @@ /area/ship/ert/atmos) "OU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -8155,8 +7650,6 @@ /area/ship/ert/dock_star) "OW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8173,18 +7666,12 @@ /area/ship/ert/bridge) "OX" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -8282,8 +7769,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8357,8 +7842,6 @@ /area/ship/ert/med) "PC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8368,8 +7851,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/catwalk_plated/techmaint, @@ -8418,7 +7899,6 @@ id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -8434,16 +7914,12 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/teleporter) "Qc" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8488,8 +7964,6 @@ /area/shuttle/ert_ship_boat) "QF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8511,7 +7985,6 @@ pixel_x = -24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/no_nightshift{ @@ -8532,7 +8005,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/outline, @@ -8578,24 +8050,18 @@ /area/ship/ert/engineering) "Rh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/armoury_st) "Rt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/armoury_st) "Rv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -8618,8 +8084,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -8635,8 +8099,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -8663,8 +8125,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8707,8 +8167,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -8723,8 +8181,6 @@ /obj/structure/table/steel_reinforced, /obj/machinery/recharger, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -8741,8 +8197,6 @@ /area/ship/ert/teleporter) "Sn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_security{ @@ -8857,18 +8311,12 @@ /area/ship/ert/hallways_aft) "SM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8901,8 +8349,6 @@ /area/space) "SY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8925,8 +8371,6 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9104,24 +8548,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "TB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm/alarms_hidden{ pixel_y = 26 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -9137,8 +8575,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -9240,8 +8676,6 @@ /area/ship/ert/brig) "Uk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning, @@ -9276,7 +8710,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow, @@ -9340,8 +8773,6 @@ /area/ship/ert/bridge) "UI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -9362,7 +8793,6 @@ }, /obj/structure/window/titanium, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/door/firedoor/glass, @@ -9383,12 +8813,10 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/yellow{ - d2 = 4; dir = 4; icon_state = "0-4" }, @@ -9396,8 +8824,6 @@ /area/ship/ert/hallways_aft) "UT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -9436,16 +8862,12 @@ /area/ship/ert/brig) "Vg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways) "Vh" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -9467,8 +8889,6 @@ /area/ship/ert/engineering) "Vq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -9503,8 +8923,6 @@ /area/ship/ert/armoury_st) "VI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/red{ @@ -9514,8 +8932,6 @@ /area/ship/ert/hallways_aft) "VJ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9525,8 +8941,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -9542,8 +8956,6 @@ /area/ship/ert/gunnery) "VO" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -9556,8 +8968,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/plastique, @@ -9685,16 +9095,12 @@ name = "Commando" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) "WW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -9706,8 +9112,6 @@ "WZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9732,7 +9136,6 @@ }, /obj/structure/window/titanium, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/door/firedoor/glass, @@ -9740,8 +9143,6 @@ /area/ship/ert/brig) "Xo" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -9765,8 +9166,6 @@ /area/ship/ert/mech_bay) "Xz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -9794,8 +9193,6 @@ /area/ship/ert/hallways_aft) "XN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9821,8 +9218,6 @@ /area/ship/ert/med) "XS" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/alarm/alarms_hidden{ @@ -9865,7 +9260,6 @@ }, /obj/machinery/power/shield_generator/charged, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/railing/grey{ @@ -9898,21 +9292,15 @@ /area/ship/ert/barracks) "Ys" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways_aft) "Yt" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -9922,8 +9310,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -9941,8 +9327,6 @@ /area/ship/ert/engineering) "Yx" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9956,16 +9340,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/med) "YK" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -9976,8 +9356,6 @@ req_access = list(103) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -9992,13 +9370,9 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -10008,8 +9382,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/outline/red, @@ -10033,13 +9405,9 @@ /area/ship/ert/commander) "YW" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -10081,8 +9449,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -10168,12 +9534,9 @@ pixel_x = 24 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -10198,7 +9561,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -10206,8 +9568,6 @@ "ZK" = ( /obj/structure/table/steel_reinforced, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -10231,8 +9591,6 @@ /area/ship/ert/bridge) "ZP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10250,16 +9608,12 @@ /area/ship/ert/med) "ZU" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/shull, /area/ship/ert/eng_storage) "ZW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10277,8 +9631,6 @@ /area/ship/ert/bridge) "ZY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/bed/chair/bay/chair/padded/blue{ diff --git a/maps/submaps/admin_use_vr/kk_mercship.dmm b/maps/submaps/admin_use_vr/kk_mercship.dmm index 960e77a593..137664c820 100644 --- a/maps/submaps/admin_use_vr/kk_mercship.dmm +++ b/maps/submaps/admin_use_vr/kk_mercship.dmm @@ -81,7 +81,6 @@ /area/ship/manta/armoury_st) "ak" = ( /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/hyper{ @@ -95,8 +94,6 @@ pixel_y = -26 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -115,8 +112,6 @@ /area/ship/manta/hangar) "am" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -160,8 +155,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular/open{ @@ -198,8 +191,6 @@ /area/ship/manta/hangar) "aM" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -403,13 +394,9 @@ /area/ship/manta/armoury_st) "bc" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor/corner{ @@ -431,8 +418,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -490,13 +475,9 @@ /area/ship/manta/hallways_port) "br" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -518,8 +499,6 @@ pixel_x = 26 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -600,7 +579,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -839,7 +817,6 @@ /area/ship/manta/bridge) "cG" = ( /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/hyper{ @@ -867,15 +844,12 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, /area/ship/manta/med) "cK" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -890,8 +864,6 @@ /obj/effect/floor_decal/rust, /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -924,7 +896,6 @@ pixel_y = 24 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techfloor, @@ -970,8 +941,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -991,8 +960,6 @@ /area/ship/manta/recreation) "cX" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1003,8 +970,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1029,8 +994,6 @@ /area/ship/manta/recreation) "cZ" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor, @@ -1064,8 +1027,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1106,8 +1067,6 @@ /area/ship/manta/barracks/bed_1) "dr" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1117,16 +1076,12 @@ /area/ship/manta/bridge) "dy" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, /area/ship/manta/hallways_port) "dC" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -1160,8 +1115,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1174,8 +1127,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -1222,8 +1173,6 @@ /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/glass_external, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1261,8 +1210,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -1371,8 +1318,6 @@ }, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -1398,8 +1343,6 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1449,8 +1392,6 @@ "fg" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1534,8 +1475,6 @@ /area/ship/manta/bridge) "fE" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, @@ -1681,8 +1620,6 @@ /area/ship/manta/recreation) "gl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -1714,8 +1651,6 @@ "gB" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1737,8 +1672,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -1754,7 +1687,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/outline/blue, @@ -1771,13 +1703,9 @@ /area/ship/manta/teleporter) "gG" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -1808,8 +1736,6 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1839,8 +1765,6 @@ /area/ship/manta/bridge) "gX" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/steel_reinforced, @@ -1901,8 +1825,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1931,8 +1853,6 @@ req_one_access = list(150) }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1951,8 +1871,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -2027,8 +1945,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -2071,8 +1987,6 @@ /area/ship/manta/engine) "hW" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2089,8 +2003,6 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -2139,7 +2051,6 @@ "il" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -2259,8 +2170,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2288,8 +2197,6 @@ req_one_access = list(150) }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor, @@ -2306,13 +2213,9 @@ /area/ship/manta/bridge) "iK" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor{ @@ -2337,7 +2240,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/wood, @@ -2347,8 +2249,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -2395,8 +2295,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2416,13 +2314,9 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/reinforced/airless, @@ -2449,7 +2343,6 @@ pixel_y = 24 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -2507,16 +2400,12 @@ /area/ship/manta/recreation) "jt" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/shull, /area/ship/manta/med) "jv" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -2581,8 +2470,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2623,8 +2510,6 @@ /area/ship/manta/hangar) "jT" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor, @@ -2673,8 +2558,6 @@ "ki" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2694,8 +2577,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2768,8 +2649,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2810,8 +2689,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2858,16 +2735,12 @@ /area/ship/manta/dock_port) "lh" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/ship/manta/mech_bay) "li" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor, @@ -2902,8 +2775,6 @@ /area/ship/manta/armoury_st) "lk" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -2940,13 +2811,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/catwalk_plated/dark, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -2968,8 +2835,6 @@ /area/ship/manta/armoury_st) "lA" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor, @@ -2989,8 +2854,6 @@ /area/ship/manta/hallways_aft) "lG" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor{ @@ -3023,8 +2886,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3085,7 +2946,6 @@ pixel_x = 24 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -3108,8 +2968,6 @@ /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donut, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -3159,8 +3017,6 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3184,8 +3040,6 @@ }, /obj/item/mecha_parts/mecha_equipment/cloak, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3225,8 +3079,6 @@ /area/ship/manta/med) "mD" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3242,8 +3094,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -3288,13 +3138,9 @@ /area/ship/manta/hallways_star) "mW" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor{ @@ -3311,8 +3157,6 @@ "na" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3337,8 +3181,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3360,7 +3202,6 @@ pixel_x = 24 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor{ @@ -3370,8 +3211,6 @@ /area/ship/manta/mech_bay) "np" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -3388,8 +3227,6 @@ /area/ship/manta/magazine) "nu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -3419,8 +3256,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -3449,8 +3284,6 @@ /area/ship/manta/armoury_st) "nG" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -3465,7 +3298,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -3478,8 +3310,6 @@ /area/ship/manta/dock_port) "nP" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/corner{ @@ -3518,21 +3348,15 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, /area/ship/manta/holding) "nY" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -3580,8 +3404,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3591,8 +3413,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3612,8 +3432,6 @@ /area/ship/manta/hallways_aft) "om" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3629,8 +3447,6 @@ /area/ship/manta/hallways_port) "op" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -3644,8 +3460,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -3666,7 +3480,6 @@ pixel_x = 24 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -3799,8 +3612,6 @@ desc = "A lightweight combat exosuit, based off the standard Gygax chassis but no doubt thoroughly customized and upgraded." }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -3808,8 +3619,6 @@ "oU" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3891,8 +3700,6 @@ "pB" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3923,8 +3730,6 @@ /area/ship/manta/magazine) "pO" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor, @@ -3951,7 +3756,6 @@ pixel_x = 24 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/effect/catwalk_plated/dark, @@ -4011,11 +3815,9 @@ "qw" = ( /obj/machinery/power/terminal, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/techfloor{ @@ -4061,8 +3863,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4091,7 +3891,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, @@ -4128,8 +3927,6 @@ /area/ship/manta/mech_bay) "qP" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm/alarms_hidden{ @@ -4150,7 +3947,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/reinforced/airless, @@ -4187,16 +3983,12 @@ /area/ship/manta/med) "rb" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor/corner{ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4209,7 +4001,6 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/white, @@ -4223,7 +4014,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, @@ -4259,8 +4049,6 @@ /area/ship/manta/mech_bay) "rC" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -4340,8 +4128,6 @@ req_one_access = list(150) }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -4355,8 +4141,6 @@ /area/ship/manta/armoury_st) "rX" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4393,8 +4177,6 @@ /area/ship/manta/armoury_st) "sl" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -4411,8 +4193,6 @@ /area/shuttle/manta_ship_boat) "sq" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -4432,13 +4212,9 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4494,8 +4270,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4517,16 +4291,12 @@ /area/ship/manta/bridge) "sR" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/wall/rshull, /area/ship/manta/holding) "sS" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4550,8 +4320,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4588,8 +4356,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -4654,8 +4420,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4706,8 +4470,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4725,7 +4487,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/reinforced/airless, @@ -4745,8 +4506,6 @@ /area/ship/manta/hangar) "ua" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -4766,8 +4525,6 @@ /area/ship/manta/dock_port) "uc" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm/alarms_hidden{ @@ -4893,8 +4650,6 @@ /area/ship/manta/hallways_star) "uK" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4915,8 +4670,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -4951,8 +4704,6 @@ /area/ship/manta/hallways_star) "uS" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/corner{ @@ -4995,16 +4746,12 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/hallways_star) "uY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5012,7 +4759,6 @@ "uZ" = ( /obj/machinery/power/port_gen/pacman/super/potato, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/no_nightshift{ @@ -5027,8 +4773,6 @@ req_one_access = list(150) }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5042,8 +4786,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -5063,8 +4805,6 @@ }, /obj/machinery/meter, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5097,8 +4837,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -5185,7 +4923,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/outline/blue, @@ -5213,16 +4950,12 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, /area/ship/manta/holding) "vU" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5238,8 +4971,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5262,13 +4993,9 @@ "vW" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -5280,13 +5007,9 @@ /area/ship/manta/hallways_port) "wb" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -5316,8 +5039,6 @@ req_one_access = list(150) }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5327,8 +5048,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -5341,8 +5060,6 @@ /area/ship/manta/bridge) "wi" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5371,8 +5088,6 @@ /area/ship/manta/bridge) "wn" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5383,8 +5098,6 @@ /area/ship/manta/armoury_st) "wo" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -5395,8 +5108,6 @@ /area/ship/manta/armoury_st) "wp" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5417,8 +5128,6 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/no_nightshift, @@ -5461,8 +5170,6 @@ /area/ship/manta/armoury_st) "wy" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5478,13 +5185,9 @@ /area/ship/manta/armoury_st) "wC" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5494,29 +5197,21 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/armoury_st) "wM" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/engineering) "wO" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5526,8 +5221,6 @@ /area/ship/manta/armoury_st) "wP" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -5545,8 +5238,6 @@ req_one_access = list(150) }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5560,8 +5251,6 @@ /area/ship/manta/bridge) "wX" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -5572,8 +5261,6 @@ "wZ" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5581,13 +5268,9 @@ /area/ship/manta/hangar) "xa" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/corner{ @@ -5665,8 +5348,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -5701,8 +5382,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5723,8 +5402,6 @@ /area/ship/manta/magazine) "xF" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -5742,16 +5419,12 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/hangar) "xK" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5777,8 +5450,6 @@ "xN" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5792,8 +5463,6 @@ "xP" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/no_nightshift, @@ -5804,8 +5473,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5834,8 +5501,6 @@ "xW" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5851,8 +5516,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5882,8 +5545,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5897,7 +5558,6 @@ "yj" = ( /obj/machinery/power/port_gen/pacman/super/potato, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light/no_nightshift{ @@ -5907,8 +5567,6 @@ /area/ship/manta/engineering) "yk" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm/alarms_hidden{ @@ -5936,21 +5594,15 @@ /area/ship/manta/dock_star) "yo" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/reinforced/airless, /area/ship/manta/dock_port) "yp" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5967,8 +5619,6 @@ "ys" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/no_nightshift, @@ -5983,13 +5633,9 @@ "yt" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6015,8 +5661,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6026,8 +5670,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -6050,8 +5692,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6111,13 +5751,9 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -6135,8 +5771,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, @@ -6163,8 +5797,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -6215,8 +5847,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6245,8 +5875,6 @@ layer = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -6267,8 +5895,6 @@ /area/ship/manta/recreation) "zp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -6280,8 +5906,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -6310,7 +5934,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, @@ -6381,8 +6004,6 @@ /area/ship/manta/bridge) "zC" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6445,8 +6066,6 @@ /area/ship/manta/barracks) "zU" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6463,8 +6082,6 @@ "zV" = ( /obj/machinery/flasher, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -6483,8 +6100,6 @@ pixel_x = 23 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -6513,8 +6128,6 @@ "Aj" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6539,8 +6152,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6580,13 +6191,9 @@ /area/ship/manta/atmos) "AC" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -6627,8 +6234,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -6651,8 +6256,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6665,8 +6268,6 @@ req_access = list(150) }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6696,8 +6297,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, @@ -6714,8 +6313,6 @@ /area/ship/manta/barracks) "AZ" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -6728,8 +6325,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -6742,7 +6337,6 @@ pixel_x = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/techfloor{ @@ -6752,8 +6346,6 @@ /area/ship/manta/engineering) "Bn" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -6776,16 +6368,12 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/barracks) "Bz" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/wall/rshull, @@ -6820,8 +6408,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6867,8 +6453,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -6942,8 +6526,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -7023,8 +6605,6 @@ /area/ship/manta/recreation) "Dc" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7116,8 +6696,6 @@ /area/ship/manta/atmos) "Dp" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7158,8 +6736,6 @@ /area/ship/manta/armoury_st) "Dw" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -7248,8 +6824,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -7309,8 +6883,6 @@ /area/shuttle/manta_ship_boat) "Ed" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/wall/rshull, @@ -7331,8 +6903,6 @@ req_access = list(999) }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -7342,8 +6912,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7399,21 +6967,15 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/hallways_port) "Ey" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7472,8 +7034,6 @@ /area/ship/manta/armoury_st) "EI" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -7502,8 +7062,6 @@ /area/shuttle/manta_ship_boat) "EN" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -7518,8 +7076,6 @@ "EU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7529,8 +7085,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -7561,8 +7115,6 @@ /area/ship/manta/barracks) "Fb" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm/alarms_hidden{ @@ -7632,7 +7184,6 @@ pixel_y = -24 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light/no_nightshift{ @@ -7645,16 +7196,12 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/recreation) "FB" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -7669,16 +7216,12 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, /area/ship/manta/med) "FH" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -7705,8 +7248,6 @@ /area/ship/manta/holding) "FQ" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7730,7 +7271,6 @@ hacked = 1 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techmaint, @@ -7758,8 +7298,6 @@ "Gg" = ( /obj/structure/table/woodentable, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/weapon/paper/manta_new_personnel_brief, @@ -7797,8 +7335,6 @@ /area/ship/manta/atmos) "Gu" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7826,8 +7362,6 @@ }, /obj/machinery/meter, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -7878,21 +7412,15 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, /area/ship/manta/holding) "GS" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor/corner{ @@ -7905,8 +7433,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -8002,8 +7528,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8061,8 +7585,6 @@ /area/ship/manta/armoury_st) "HV" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8074,8 +7596,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8097,24 +7617,18 @@ }, /obj/machinery/meter, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, /area/ship/manta/dock_star) "In" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor{ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8131,13 +7645,9 @@ /area/ship/manta/hallways_aft) "Io" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor, @@ -8193,8 +7703,6 @@ /area/ship/manta/engineering) "IG" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8233,8 +7741,6 @@ /area/ship/manta/armoury_st) "IK" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor, @@ -8257,16 +7763,12 @@ /area/ship/manta/hallways_aft) "IO" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/engineering) "IT" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -8320,8 +7822,6 @@ /area/ship/manta/holding) "Jk" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8337,8 +7837,6 @@ /area/ship/manta/bridge) "Jl" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -8365,21 +7863,15 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/ship/manta/recreation) "Js" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/techfloor{ @@ -8422,13 +7914,9 @@ /area/ship/manta/armoury_st) "Jw" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8471,8 +7959,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/no_nightshift{ @@ -8484,8 +7970,6 @@ /area/ship/manta/hallways_star) "JX" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8501,8 +7985,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -8541,8 +8023,6 @@ /area/shuttle/manta_ship_boat) "Kn" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8558,8 +8038,6 @@ /area/ship/manta/bridge) "Ko" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -8571,16 +8049,12 @@ /area/ship/manta/hallways_star) "Kp" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor{ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8597,8 +8071,6 @@ "Kq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -8646,8 +8118,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -8694,7 +8164,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/reinforced/airless, @@ -8704,8 +8173,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8754,8 +8221,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -8811,8 +8276,6 @@ /area/ship/manta/holding) "Lj" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8848,8 +8311,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -8877,7 +8338,6 @@ pixel_y = -24 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techfloor, @@ -8891,8 +8351,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -8912,8 +8370,6 @@ /area/ship/manta/engineering) "LM" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8936,8 +8392,6 @@ /area/ship/manta/hangar) "LR" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced/airless, @@ -8977,8 +8431,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, @@ -9017,21 +8469,15 @@ /area/ship/manta/hallways_star) "Me" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/ship/manta/magazine) "Mf" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor{ @@ -9061,8 +8507,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -9116,13 +8560,9 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -9145,8 +8585,6 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -9165,16 +8603,12 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, /area/ship/manta/holding) "MI" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor/corner{ @@ -9296,8 +8730,6 @@ "Ng" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -9358,8 +8790,6 @@ /area/space) "Nw" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm/alarms_hidden{ @@ -9456,8 +8886,6 @@ /area/ship/manta/engineering) "NK" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9489,8 +8917,6 @@ /obj/structure/railing, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9602,8 +9028,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/light/no_nightshift{ @@ -9647,8 +9071,6 @@ /area/ship/manta/holding) "ON" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/wall/rshull, @@ -9680,8 +9102,6 @@ /area/ship/manta/hallways_star) "OV" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm/alarms_hidden{ @@ -9717,8 +9137,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/no_nightshift{ @@ -9736,8 +9154,6 @@ pixel_y = -23 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/no_nightshift, @@ -9802,8 +9218,6 @@ /area/ship/manta/holding) "PI" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/reinforced/airless, @@ -9841,16 +9255,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, /area/ship/manta/holding) "PP" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -9863,8 +9273,6 @@ /area/ship/manta/commander) "PU" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9877,8 +9285,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -9929,7 +9335,6 @@ pixel_y = 24 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/no_nightshift{ @@ -9945,7 +9350,6 @@ pixel_x = -24 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/effect/catwalk_plated/dark, @@ -9953,8 +9357,6 @@ /area/ship/manta/magazine) "Qj" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/wood, @@ -9975,14 +9377,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -9998,8 +9396,6 @@ /area/ship/manta/recreation) "Qy" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor, @@ -10007,8 +9403,6 @@ /area/ship/manta/bridge) "QD" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -10029,8 +9423,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10067,8 +9459,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10108,8 +9498,6 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -10182,8 +9570,6 @@ /area/ship/manta/recreation) "RJ" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10279,8 +9665,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -10325,8 +9709,6 @@ /area/ship/manta/armoury_st) "RV" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -10377,8 +9759,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10389,8 +9769,6 @@ /area/ship/manta/hangar) "Sf" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -10431,7 +9809,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/reinforced/airless, @@ -10445,8 +9822,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10461,8 +9836,6 @@ /area/ship/manta/armoury_st) "SB" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -10490,8 +9863,6 @@ req_one_access = list(150) }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10509,26 +9880,18 @@ /area/ship/manta/mech_bay) "SP" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/ship/manta/holding) "SV" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -10569,7 +9932,6 @@ pixel_x = 24 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -10674,8 +10036,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -10698,13 +10058,9 @@ /area/ship/manta/hallways_port) "Tr" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/wall/rshull, @@ -10769,8 +10125,6 @@ "TC" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -10824,8 +10178,6 @@ "TN" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/no_nightshift, @@ -10860,13 +10212,9 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -10891,8 +10239,6 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -10974,8 +10320,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10991,8 +10335,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/multi_tile/metal{ @@ -11012,8 +10354,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -11040,8 +10380,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -11060,8 +10398,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -11080,8 +10416,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_engineering{ @@ -11107,8 +10441,6 @@ /area/ship/manta/engine) "Vg" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11137,8 +10469,6 @@ /area/ship/manta/mech_bay) "Vl" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -11196,7 +10526,6 @@ "Vz" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -11236,8 +10565,6 @@ req_one_access = list(150) }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -11313,8 +10640,6 @@ pixel_y = 26 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/storage/firstaid/fire, @@ -11327,16 +10652,12 @@ /area/ship/manta/holding) "VO" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, /area/ship/manta/engine) "VP" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor, @@ -11360,8 +10681,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11374,8 +10693,6 @@ /area/ship/manta/hallways_aft) "We" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11402,8 +10719,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11444,8 +10759,6 @@ "WN" = ( /obj/machinery/door/firedoor/multi_tile, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11462,16 +10775,12 @@ "WO" = ( /obj/structure/table/woodentable, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, /area/ship/manta/barracks) "WU" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/multi_tile/metal{ @@ -11495,8 +10804,6 @@ /area/ship/manta/bridge) "Xa" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11515,8 +10822,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11534,8 +10839,6 @@ /area/ship/manta/hallways_port) "Xl" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11553,8 +10856,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11567,21 +10868,15 @@ /area/ship/manta/barracks/bed_1) "Xn" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, /area/ship/manta/armoury_st) "Xo" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -11598,8 +10893,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -11626,13 +10919,9 @@ "Xy" = ( /obj/structure/bed/chair/comfy/black, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11695,13 +10984,9 @@ /area/ship/manta/engine) "XF" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11720,8 +11005,6 @@ /area/ship/manta/engineering) "XL" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -11732,8 +11015,6 @@ "XP" = ( /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -11746,8 +11027,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -11787,8 +11066,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -11802,7 +11079,6 @@ id_tag = "mercenary_pd" }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/reinforced/airless, @@ -11829,8 +11105,6 @@ /area/ship/manta/barracks) "Yh" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -11846,8 +11120,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -11896,8 +11168,6 @@ /area/ship/manta/holding) "Yp" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -11920,8 +11190,6 @@ /area/ship/manta/holding) "Ys" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/rshull, @@ -11929,8 +11197,6 @@ "YA" = ( /obj/structure/bed/chair/bay/comfy/red, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -11946,7 +11212,6 @@ pixel_y = 24 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /obj/effect/catwalk_plated/dark, @@ -11965,8 +11230,6 @@ /area/ship/manta/bridge) "YF" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -12004,8 +11267,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12017,7 +11278,6 @@ "YS" = ( /obj/machinery/power/terminal, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/techfloor{ @@ -12036,8 +11296,6 @@ /area/ship/manta/bridge) "YW" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12078,8 +11336,6 @@ /area/ship/manta/gunnery) "Zh" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -12087,21 +11343,15 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, /area/ship/manta/holding) "Zk" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/rshull, @@ -12144,8 +11394,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -12155,8 +11403,6 @@ /area/ship/manta/dock_port) "Zz" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12167,24 +11413,18 @@ }, /obj/structure/catwalk, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/ship/manta/magazine) "ZB" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, @@ -12202,7 +11442,6 @@ pixel_x = 24 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -12220,8 +11459,6 @@ /area/ship/manta/recreation) "ZI" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor/corner{ @@ -12278,8 +11515,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, diff --git a/maps/submaps/admin_use_vr/lucky_7.dmm b/maps/submaps/admin_use_vr/lucky_7.dmm index 356e3cb461..fd147816e4 100644 --- a/maps/submaps/admin_use_vr/lucky_7.dmm +++ b/maps/submaps/admin_use_vr/lucky_7.dmm @@ -1,631 +1,23433 @@ -"aa" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/tiled,/area/submap/casino_event) -"ab" = (/obj/structure/table/borosilicate,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) -"ac" = (/obj/structure/table/borosilicate,/obj/structure/dancepole,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) -"ad" = (/obj/structure/table/borosilicate,/turf/simulated/floor/tiled/eris/steel/bar_light,/area/submap/casino_event) -"ae" = (/turf/simulated/wall,/area/submap/casino_event) -"af" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) -"ag" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) -"ah" = (/obj/structure/table/bench/padded,/obj/effect/floor_decal/spline/plain,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/steel/bar_dance,/area/submap/casino_event) -"ai" = (/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"aj" = (/obj/structure/bed/chair/bay/comfy/blue,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ak" = (/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"al" = (/obj/structure/table/darkglass,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"am" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"an" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ao" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ap" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"aq" = (/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"ar" = (/obj/machinery/computer/arcade/orion_trail,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"as" = (/obj/machinery/computer/arcade/battle,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"at" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"au" = (/obj/structure/flora/pottedplant/largebush,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"av" = (/obj/machinery/door/morgue{dir = 2; name = "Private Room"; req_access = null},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"aw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"ax" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"ay" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"az" = (/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"aA" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"aB" = (/obj/machinery/door/airlock{name = "Arcade"},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"aC" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"aD" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"aE" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"aF" = (/obj/machinery/clawmachine,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"aG" = (/obj/structure/table/woodentable,/obj/machinery/light,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"aH" = (/obj/structure/table/gamblingtable,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light,/turf/simulated/floor/carpet/retro,/area/submap/casino_event) -"aI" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"aJ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"aK" = (/obj/structure/flora/pottedplant/tall,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"aL" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/plating,/area/submap/casino_event) -"aM" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/submap/casino_event) -"aN" = (/obj/structure/table/steel,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/plating,/area/submap/casino_event) -"aO" = (/turf/simulated/floor/plating,/area/submap/casino_event) -"aP" = (/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"aQ" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"aR" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"aS" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/plating,/area/submap/casino_event) -"aT" = (/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) -"aU" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"aV" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/submap/casino_event) -"aW" = (/obj/random/trash,/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"aX" = (/obj/random/trash,/obj/random/trash,/turf/simulated/floor/plating,/area/submap/casino_event) -"aY" = (/obj/random/trash,/obj/machinery/light/small{dir = 4},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"aZ" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"ba" = (/obj/structure/window/basic,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"bb" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 1"; name = "Private Game Room 1"},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bc" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 2"; name = "Private Game Room 2"},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"bd" = (/obj/machinery/door/airlock{id_tag = "L7 PGR 3"; name = "Private Game Room 3"},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"be" = (/obj/random/trash,/obj/random/trash,/obj/machinery/light/small,/obj/structure/railing{dir = 8},/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bf" = (/obj/random/trash,/obj/random/trash,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bg" = (/obj/random/trash_pile,/obj/random/trash,/obj/random/trash,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bh" = (/obj/machinery/slot_machine,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"bi" = (/obj/machinery/slot_machine,/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"bj" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bk" = (/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bl" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bm" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"bn" = (/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"bo" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"bp" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/book/manual/wizzoffguide,/obj/item/weapon/deck/wizoff,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"bq" = (/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"br" = (/obj/machinery/button/remote/airlock{id = "L7 PGR 3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"bs" = (/obj/structure/railing{dir = 1},/obj/random/trash_pile,/turf/simulated/floor/plating,/area/submap/casino_event) -"bt" = (/obj/random/trash_pile,/obj/random/trash,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bu" = (/obj/random/trash,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bv" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"bw" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bx" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"by" = (/obj/structure/bed/chair/comfy/beige,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"bz" = (/obj/machinery/door/airlock/maintenance/common{name = "Trash Collection"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bA" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bB" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bC" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bD" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"bE" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"bF" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"bG" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"bH" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"bI" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"bJ" = (/obj/random/trash_pile,/turf/simulated/floor/plating,/area/submap/casino_event) -"bK" = (/obj/random/trash_pile,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bL" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/casino_event) -"bM" = (/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) -"bN" = (/obj/effect/floor_decal/rust,/obj/random/trash_pile,/turf/simulated/floor/plating,/area/submap/casino_event) -"bO" = (/obj/effect/floor_decal/rust,/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/submap/casino_event) -"bP" = (/obj/effect/floor_decal/rust,/obj/structure/closet/firecloset,/turf/simulated/floor/plating,/area/submap/casino_event) -"bQ" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"bR" = (/obj/structure/bed/chair/sofa/left/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"bS" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/casino,/obj/item/weapon/pen,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"bT" = (/obj/structure/bed/chair/sofa/right/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"bU" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"bV" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"bW" = (/obj/structure/table/woodentable,/obj/item/trash/asian_bowl,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"bX" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bY" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"bZ" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"ca" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"cb" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"cc" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"cd" = (/obj/structure/bed/chair/comfy/beige{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"ce" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"cf" = (/obj/structure/bed/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"cg" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/rust,/obj/random/contraband,/turf/simulated/floor/plating,/area/submap/casino_event) -"ch" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) -"ci" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cj" = (/obj/structure/bed/chair/sofa/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ck" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cl" = (/obj/structure/bed/chair/sofa/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cm" = (/obj/machinery/door/airlock{id_tag = "br bathroom"; name = "Bathroom"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"cn" = (/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"co" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"cp" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/casino_event) -"cq" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/submap/casino_event) -"cr" = (/obj/structure/catwalk,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) -"cs" = (/obj/structure/bed/chair/sofa/right/black{dir = 4},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ct" = (/obj/structure/bed/chair/sofa/left/black{dir = 8},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cu" = (/obj/structure/table/standard,/obj/machinery/button/remote/airlock{id = "br bathroom"; name = "Bathroom Lock"; pixel_x = -20; pixel_y = 10; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"cv" = (/obj/machinery/vending/wallmed1/public{pixel_x = 28},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"cw" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"cx" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/obj/machinery/light,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"cy" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"cz" = (/obj/structure/bed/chair/comfy/beige{dir = 1; icon_state = "comfychair_preview"},/obj/machinery/light,/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"cA" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"cB" = (/obj/structure/bed/chair/comfy/beige{dir = 1},/obj/machinery/light,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"cC" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/submap/casino_event) -"cD" = (/turf/simulated/wall/r_wall,/area/submap/casino_event) -"cE" = (/obj/structure/table/steel,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/obj/item/device/flashlight,/turf/simulated/floor/plating,/area/submap/casino_event) -"cF" = (/obj/structure/table/rack/steel,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/submap/casino_event) -"cG" = (/turf/simulated/floor/tiled,/area/submap/casino_event) -"cH" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/closet/secure_closet/brig{id = "Cell 2"},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cI" = (/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/machinery/light/small{dir = 1},/obj/structure/bed/padded,/obj/item/weapon/bedsheet,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cJ" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cK" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/junk,/obj/effect/floor_decal/rust,/obj/random/maintenance/engineering,/turf/simulated/floor/plating,/area/submap/casino_event) -"cL" = (/obj/effect/floor_decal/rust,/obj/machinery/light/small,/turf/simulated/floor/plating,/area/submap/casino_event) -"cM" = (/obj/structure/table/rack/steel,/obj/random/maintenance,/obj/random/junk,/obj/random/junk,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/blood/oil,/obj/random/contraband,/turf/simulated/floor/plating,/area/submap/casino_event) -"cN" = (/obj/structure/table/rack/shelf,/obj/item/device/slow_sizegun,/obj/item/device/slow_sizegun,/obj/item/device/slow_sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/gun/energy/sizegun,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cO" = (/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"cP" = (/obj/machinery/casino_prize_dispenser,/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"cQ" = (/obj/effect/floor_decal/spline/plain,/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"cR" = (/obj/machinery/casino_prize_dispenser,/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"cS" = (/obj/machinery/casinosentientprize_handler{casinosentientprize_sale = "enabled"; pixel_y = 32},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"cT" = (/obj/machinery/chipmachine{pixel_y = 32},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"cU" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cV" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/box/roulette_balls_cheat,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cW" = (/obj/structure/table/rack/shelf,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cX" = (/obj/structure/table/rack/shelf,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/deck/schnapsen,/obj/item/weapon/deck/wizoff,/obj/item/weapon/deck/tarot,/obj/item/weapon/deck/egy,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cY" = (/obj/structure/table/rack/shelf,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"cZ" = (/obj/effect/floor_decal/spline/plain{dir = 9},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"da" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"db" = (/obj/structure/table/steel,/obj/item/weapon/spacecasinocash/c1000{pixel_x = -3; pixel_y = -3},/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000{pixel_x = 3; pixel_y = 3},/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) -"dc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) -"dd" = (/obj/structure/table/rack/steel,/obj/item/weapon/spacecash/c1000{pixel_x = 6; pixel_y = 6},/obj/item/weapon/spacecash/c1000{pixel_x = 3; pixel_y = 3},/obj/item/weapon/spacecash/c1000,/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) -"de" = (/obj/structure/closet,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/item/device/flashlight/color,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) -"df" = (/obj/structure/table/rack/shelf,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/obj/item/weapon/spacecasinocash/c1000,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"dg" = (/obj/structure/table/rack/shelf,/obj/item/device/bodysnatcher,/obj/item/device/bodysnatcher,/obj/item/device/sleevemate,/obj/item/device/sleevemate,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"dh" = (/obj/structure/flora/pottedplant/unusual,/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"di" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dj" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dk" = (/obj/machinery/light/floortube{dir = 8},/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dl" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dm" = (/obj/structure/casino_table/craps,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/machinery/light/floortube{dir = 8},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dn" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"do" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"dp" = (/obj/machinery/shower{pixel_y = 20},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/random/soap,/turf/simulated/floor/tiled,/area/submap/casino_event) -"dq" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"dr" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"ds" = (/obj/structure/toilet{pixel_y = 10},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) -"dt" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"du" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"dv" = (/obj/structure/sink{dir = 8; pixel_x = -13; pixel_y = -4},/obj/structure/mirror{pixel_x = -24},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) -"dw" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"dx" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"dy" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) -"dz" = (/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"dA" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"dB" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"dC" = (/obj/machinery/door/airlock{id_tag = "br bathroom"; name = "Bathroom"},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) -"dD" = (/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"dE" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"dF" = (/obj/machinery/chipmachine{pixel_y = 32},/obj/machinery/atm{pixel_x = 32},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"dG" = (/obj/effect/floor_decal/corner/lightorange{dir = 5},/obj/effect/floor_decal/borderfloor/shifted{dir = 1},/obj/effect/floor_decal/corner/lightorange/border/shifted{dir = 1},/obj/structure/closet/secure_closet/brig{id = "Cell 1"},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"dH" = (/obj/structure/table/steel,/obj/item/stack/material/diamond{amount = 50; pixel_x = -5; pixel_y = -5},/obj/item/stack/material/diamond{amount = 50},/obj/item/stack/material/diamond{amount = 50; pixel_x = 5; pixel_y = 5},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) -"dI" = (/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) -"dJ" = (/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/structure/table/rack/steel,/obj/random/contraband,/obj/structure/railing,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) -"dK" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_fancy,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"dL" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"dM" = (/obj/structure/table/woodentable,/obj/item/trash/asian_bowl,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dN" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dO" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dP" = (/obj/structure/casino_table/blackjack_r{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dQ" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"dR" = (/obj/effect/floor_decal/spline/plain{dir = 10},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"dS" = (/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"dT" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"dU" = (/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"dV" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"dW" = (/obj/structure/casino_table/roulette_chart,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"dX" = (/obj/structure/casino_table/roulette_table,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"dY" = (/obj/structure/casino_table/craps,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"dZ" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"ea" = (/obj/structure/casino_table/craps,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"eb" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"ec" = (/obj/structure/table/steel,/obj/random/cash/huge{pixel_y = 8},/obj/random/cash/huge,/obj/item/weapon/bikehorn{pixel_x = -7; pixel_y = 7},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) -"ed" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ee" = (/obj/machinery/door/airlock{name = "Breakroom"; req_access = list(101)},/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ef" = (/obj/item/weapon/stool/padded{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"eg" = (/obj/structure/casino_table/blackjack_m{dir = 4},/obj/item/weapon/deck/cards/casino,/obj/machinery/light/floortube{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"eh" = (/obj/machinery/button/remote/airlock{id = "roulette_1"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"ei" = (/obj/machinery/button/remote/airlock{id = "roulette_2"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"ej" = (/obj/machinery/button/remote/airlock{id = "roulette_3"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"ek" = (/obj/machinery/button/remote/airlock{id = "craps_1"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"el" = (/obj/machinery/button/remote/airlock{id = "craps_2"; name = "Door Lock"; pixel_x = 24; pixel_y = -26; specialfunctions = 4},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"em" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "Safe"; req_access = list(101); req_one_access = null},/turf/simulated/floor/tiled/techfloor,/area/submap/casino_event) -"en" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_normal,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"eo" = (/obj/structure/table/rack/shelf,/obj/item/weapon/storage/dicecup,/obj/item/weapon/storage/dicecup,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"ep" = (/obj/structure/table/rack/shelf,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"eq" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"er" = (/obj/structure/casino_table/blackjack_l{dir = 4},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"es" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"et" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice,/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"eu" = (/obj/machinery/door/airlock{id_tag = "roulette_1"; name = "Private Roulette Room 1"},/turf/simulated/floor/carpet/green,/area/submap/casino_event) -"ev" = (/obj/machinery/door/airlock{id_tag = "roulette_2"; name = "Private Roulette Room 2"},/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"ew" = (/obj/machinery/door/airlock{id_tag = "roulette_3"; name = "Private Roulette Room 3"},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"ex" = (/obj/machinery/door/airlock{id_tag = "craps_1"; name = "Private Craps Room 1"},/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"ey" = (/obj/machinery/door/airlock{id_tag = "craps_2"; name = "Private Craps Room 2"},/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"ez" = (/obj/machinery/door/airlock/glass_security{req_access = list(101); req_one_access = null},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eA" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/obj/structure/flora/pottedplant/unusual,/turf/simulated/floor/tiled,/area/submap/casino_event) -"eB" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eC" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eD" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/vending/security{dir = 8; req_access = list(101)},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eE" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"eF" = (/obj/structure/flora/pottedplant/tropical,/turf/simulated/floor/tiled,/area/submap/casino_event) -"eG" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eH" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/floor_decal/rust,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/submap/casino_event) -"eI" = (/obj/structure/coatrack,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"eJ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eK" = (/obj/structure/table/reinforced,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino/bowman,/obj/item/device/radio/headset/casino/bowman,/turf/simulated/floor/tiled,/area/submap/casino_event) -"eL" = (/obj/structure/table/glass,/obj/machinery/vending/wallmed1/public{pixel_y = -32},/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/obj/item/weapon/backup_implanter,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"eM" = (/obj/random/trash_pile,/obj/random/maintenance,/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) -"eN" = (/turf/simulated/floor/lino,/area/submap/casino_event) -"eO" = (/obj/structure/casino_table/craps{dir = 1},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"eP" = (/obj/structure/closet,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"eQ" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/loadout/uniform,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"eR" = (/obj/machinery/transhuman/autoresleever,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"eS" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/red/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 1},/obj/machinery/vending/wallmed1/public{pixel_y = 28},/obj/structure/table/rack,/obj/item/weapon/spacecasinocash/c500,/obj/item/weapon/spacecasinocash/c500,/obj/item/weapon/spacecasinocash/c500,/turf/simulated/floor/tiled,/area/submap/casino_event) -"eT" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eU" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/submap/casino_event) -"eV" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eW" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/radio,/turf/simulated/floor/tiled,/area/submap/casino_event) -"eX" = (/obj/structure/bed/chair/office/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eY" = (/obj/item/modular_computer/console{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"eZ" = (/obj/random/trash_pile,/obj/effect/floor_decal/rust,/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/submap/casino_event) -"fa" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/wood,/area/submap/casino_event) -"fb" = (/obj/structure/table/woodentable,/obj/item/trash/bowl,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"fc" = (/obj/machinery/door/airlock{id_tag = "blackjack_1"; name = "Private Blackjack Room 1"},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fd" = (/obj/machinery/door/airlock{id_tag = "blackjack_2"; name = "Private Blackjack Room 2"},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"fe" = (/obj/machinery/door/airlock{id_tag = "blackjack_3"; name = "Private Blackjack Room 3"},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"ff" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "casino_check"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fg" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/red/border{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fh" = (/obj/structure/table/reinforced,/obj/item/ammo_magazine/m45{pixel_x = -5; pixel_y = -3},/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fi" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/red/border{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/handcuffs{pixel_y = -5},/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs{pixel_y = 5},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fj" = (/obj/structure/casino_table/blackjack_m{dir = 4},/obj/machinery/light/floortube{dir = 8},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"fk" = (/obj/machinery/chipmachine{pixel_x = -32},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fl" = (/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fm" = (/obj/machinery/button/remote/airlock{id = "blackjack_1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fn" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/carpet/purple,/area/submap/casino_event) -"fo" = (/obj/machinery/chipmachine{pixel_x = -32},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"fp" = (/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"fq" = (/obj/machinery/button/remote/airlock{id = "blackjack_2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"fr" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/box/roulette_balls_normal,/obj/item/weapon/storage/box/roulette_balls_fancy,/obj/item/weapon/storage/box/roulette_balls_cheat,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"fs" = (/obj/machinery/chipmachine{pixel_x = -32},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"ft" = (/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"fu" = (/obj/machinery/button/remote/airlock{id = "blackjack_3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"fv" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/sblucarpet,/area/submap/casino_event) -"fw" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/turf/simulated/floor/wood,/area/submap/casino_event) -"fx" = (/obj/item/weapon/stool/baystool/padded,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"fy" = (/obj/item/modular_computer/console{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fz" = (/obj/structure/bed/chair/office/light,/turf/simulated/floor/tiled,/area/submap/casino_event) -"fA" = (/obj/structure/table/reinforced,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/obj/item/ammo_casing/spent,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/submap/casino_event) -"fB" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/red/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/red/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fC" = (/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 1; pixel_y = 4},/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 2; pixel_y = -6},/obj/structure/table/rack/gun_rack,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/red/bordercorner2,/turf/simulated/floor/tiled,/area/submap/casino_event) -"fD" = (/obj/structure/table/rack,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = -3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = -3},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/red/border,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = 3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = 3},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fE" = (/obj/structure/table/rack,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/red/border{dir = 6},/obj/item/clothing/suit/armor/bulletproof/alt{pixel_x = -6},/obj/item/clothing/suit/armor/bulletproof/alt{pixel_x = 6},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fF" = (/obj/structure/table/rack/shelf,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"fG" = (/obj/structure/table/rack/shelf,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino,/obj/item/device/radio/headset/casino/bowman,/obj/item/device/radio/headset/casino/bowman,/obj/item/device/radio/headset/casino/bowman,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"fH" = (/obj/machinery/telecomms/allinone/casino,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"fI" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"fJ" = (/obj/structure/casino_table/blackjack_l{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"fK" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fL" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fM" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"fN" = (/obj/structure/bed/chair/comfy/red,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"fO" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"fP" = (/obj/structure/bed/chair/comfy/green,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"fQ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fR" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"fS" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/eastleft{dir = 2},/obj/item/weapon/pen,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "casino_check"; opacity = 0},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/eastright{dir = 2},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "casino_check"; opacity = 0},/turf/simulated/floor/tiled,/area/submap/casino_event) -"fU" = (/obj/structure/table/woodentable,/obj/item/trash/plate,/obj/item/weapon/material/kitchen/utensil/fork/plastic,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"fV" = (/obj/structure/casino_table/blackjack_m{dir = 8},/obj/machinery/light/floortube{dir = 4},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"fW" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fX" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"fY" = (/obj/item/weapon/stool/padded{dir = 4},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"fZ" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"ga" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"gb" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"gc" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"gd" = (/obj/structure/casino_table/blackjack_l,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"ge" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"gf" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"gg" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gh" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gi" = (/obj/structure/casino_table/blackjack_m,/obj/machinery/light/floortube{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"gj" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gk" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gl" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/submap/casino_event) -"gm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gn" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) -"go" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gr" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gs" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gt" = (/turf/simulated/floor/wood,/area/submap/casino_event) -"gu" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/spline/plain{dir = 10},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gv" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/cigar/havana{pixel_x = -2; pixel_y = 2},/obj/item/weapon/storage/fancy/cigar{pixel_x = 2; pixel_y = 3},/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gw" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/spline/plain{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gx" = (/obj/structure/casino_table/blackjack_r{dir = 8},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"gy" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"gz" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"gA" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gB" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/wood,/area/submap/casino_event) -"gC" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"gD" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/submap/casino_event) -"gE" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/turf/simulated/floor/tiled,/area/submap/casino_event) -"gF" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/submap/casino_event) -"gG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/light,/turf/simulated/floor/tiled,/area/submap/casino_event) -"gH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gI" = (/obj/structure/casino_table/blackjack_l,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"gJ" = (/obj/structure/casino_table/blackjack_m,/obj/machinery/light/floortube{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"gK" = (/obj/structure/casino_table/blackjack_r,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"gL" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/submap/casino_event) -"gM" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"gN" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/submap/casino_event) -"gO" = (/obj/structure/table/woodentable,/obj/item/pizzabox/margherita,/turf/simulated/floor/wood,/area/submap/casino_event) -"gP" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle,/turf/simulated/floor/wood,/area/submap/casino_event) -"gQ" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/submap/casino_event) -"gR" = (/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/wood,/area/submap/casino_event) -"gS" = (/obj/structure/table/woodentable,/obj/random/maintenance/foodstuff,/turf/simulated/floor/wood,/area/submap/casino_event) -"gT" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/turf/simulated/floor/wood,/area/submap/casino_event) -"gU" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/spline/plain{dir = 8},/obj/item/clothing/mask/smokable/pipe,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"gV" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) -"gW" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/submap/casino_event) -"gX" = (/obj/machinery/light,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"gY" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/grey/border{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"gZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/grey/border{dir = 1},/obj/machinery/vending/wallmed1/public{pixel_y = 28},/turf/simulated/floor/tiled,/area/submap/casino_event) -"ha" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/grey/border{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hb" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/grey/border{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hc" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/submap/casino_event) -"hd" = (/obj/structure/table/standard,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled,/area/submap/casino_event) -"he" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/grey/border{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hf" = (/obj/machinery/washing_machine,/obj/item/clothing/under/modjump3,/turf/simulated/floor/tiled,/area/submap/casino_event) -"hg" = (/obj/structure/table/standard,/obj/item/clothing/under/suit_jacket/really_black{pixel_x = 5; pixel_y = 10},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hh" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hi" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/grey/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hj" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/grey/bordercorner,/turf/simulated/floor/tiled,/area/submap/casino_event) -"hk" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/grey/border{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hl" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/grey/border{dir = 10},/turf/simulated/floor/tiled,/area/submap/casino_event) -"hm" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/grey/border,/turf/simulated/floor/tiled,/area/submap/casino_event) -"hn" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/grey/border{dir = 6},/turf/simulated/floor/tiled,/area/submap/casino_event) -"ho" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/vending/bepis,/turf/simulated/floor/tiled/monotile,/area/submap/casino_event) -"hp" = (/obj/effect/floor_decal/corner/lightgrey{dir = 10},/obj/effect/floor_decal/corner/lightgrey{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/vending/sol,/turf/simulated/floor/tiled/monotile,/area/submap/casino_event) -"hq" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"hr" = (/obj/machinery/door/airlock{id_tag = "L7 Room 1"; name = "Private Room 1"},/turf/simulated/floor/wood,/area/submap/casino_event) -"hs" = (/obj/machinery/door/airlock{id_tag = "L7 Room 2"; name = "Private Room 2"},/turf/simulated/floor/wood,/area/submap/casino_event) -"ht" = (/obj/machinery/door/airlock{id_tag = "L7 Room 3"; name = "Private Room 3"},/turf/simulated/floor/wood,/area/submap/casino_event) -"hu" = (/obj/machinery/door/airlock{id_tag = "L7 Room 4"; name = "Private Room 4"},/turf/simulated/floor/wood,/area/submap/casino_event) -"hv" = (/obj/machinery/door/airlock{id_tag = "L7 VIP Room"; name = "VIP Room"},/turf/simulated/floor/wood,/area/submap/casino_event) -"hw" = (/obj/structure/toilet{dir = 4},/obj/machinery/button/remote/airlock{id = "casino_stall_1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"hx" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/towel/random,/turf/simulated/floor/wood,/area/submap/casino_event) -"hy" = (/obj/structure/toilet{dir = 4},/obj/machinery/button/remote/airlock{id = "casino_stall_2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"hz" = (/obj/machinery/button/remote/airlock{id = "L7 Room 1"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) -"hA" = (/obj/machinery/button/remote/airlock{id = "L7 Room 2"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) -"hB" = (/obj/machinery/button/remote/airlock{id = "L7 Room 3"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) -"hC" = (/obj/machinery/button/remote/airlock{id = "L7 Room 4"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) -"hD" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) -"hE" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/wood,/area/submap/casino_event) -"hF" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/submap/casino_event) -"hG" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/weapon/storage/pill_bottle/happy,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/turf/simulated/floor/wood,/area/submap/casino_event) -"hH" = (/obj/structure/bed/chair/sofa/right/purp,/turf/simulated/floor/wood,/area/submap/casino_event) -"hI" = (/obj/structure/bed/chair/sofa/left/purp,/turf/simulated/floor/wood,/area/submap/casino_event) -"hJ" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"hK" = (/obj/structure/table/woodentable,/obj/random/drinkbottle,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/submap/casino_event) -"hL" = (/obj/structure/undies_wardrobe,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/submap/casino_event) -"hM" = (/obj/item/weapon/flame/candle/candelabra/everburn,/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/submap/casino_event) -"hN" = (/obj/random/drinkbottle,/obj/structure/table/fancyblack,/turf/simulated/floor/wood,/area/submap/casino_event) -"hO" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/captaindouble,/obj/structure/curtain/open/bed,/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"hP" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) -"hQ" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/yellowdouble,/turf/simulated/floor/wood,/area/submap/casino_event) -"hR" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/wood,/area/submap/casino_event) -"hS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/orangedouble,/turf/simulated/floor/wood,/area/submap/casino_event) -"hT" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/greendouble,/turf/simulated/floor/wood,/area/submap/casino_event) -"hU" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/turf/simulated/floor/wood,/area/submap/casino_event) -"hV" = (/obj/structure/bed/chair/sofa/left/purp{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) -"hW" = (/obj/structure/bed/chair/sofa/right/purp{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) -"hX" = (/obj/structure/table/rack/shelf,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/dark,/area/submap/casino_event) -"hY" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 4},/turf/simulated/floor/tiled/freezer,/area/submap/casino_event) -"hZ" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"ia" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"ib" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"ic" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"id" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"ie" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"if" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/water/pool,/area/submap/casino_event) -"ig" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"ih" = (/obj/random/soap,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"ii" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled,/area/submap/casino_event) -"ij" = (/obj/structure/table/glass,/obj/random/soap,/obj/item/weapon/towel/random,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"ik" = (/turf/simulated/floor/water/pool,/area/submap/casino_event) -"il" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"im" = (/obj/machinery/holoplant,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"in" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"io" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool,/area/submap/casino_event) -"ip" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/pool,/area/submap/casino_event) -"iq" = (/obj/structure/casino_table/blackjack_r,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"ir" = (/obj/machinery/door/airlock{id_tag = "br bathroom"; name = "Bathroom"},/turf/simulated/floor/wood,/area/submap/casino_event) -"is" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"it" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iu" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iv" = (/obj/structure/casino_table/blackjack_l{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iw" = (/obj/structure/casino_table/blackjack_m{dir = 8},/obj/machinery/light/floortube{dir = 4},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"ix" = (/obj/item/weapon/stool/baystool/padded{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iy" = (/obj/structure/casino_table/blackjack_r{dir = 8},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iz" = (/obj/structure/casino_table/blackjack_l{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iA" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iB" = (/obj/structure/casino_table/blackjack_r{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iC" = (/obj/item/weapon/stool/baystool/padded{dir = 1},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"iD" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/wood,/area/submap/casino_event) -"iE" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/double,/turf/simulated/floor/wood,/area/submap/casino_event) -"iF" = (/obj/machinery/button/remote/airlock{id = "L7 Room 5"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) -"iG" = (/obj/machinery/door/airlock{id_tag = "casino_stall_1"; name = "Stall 1"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"iH" = (/obj/machinery/door/airlock{name = "Backroom"},/turf/simulated/floor/wood,/area/submap/casino_event) -"iI" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/purcarpet,/area/submap/casino_event) -"iJ" = (/obj/machinery/computer/timeclock/premade/north,/turf/simulated/floor/tiled,/area/submap/casino_event) -"iK" = (/obj/machinery/item_bank{pixel_y = 28},/turf/simulated/floor/tiled,/area/submap/casino_event) -"iL" = (/turf/space,/area/submap/casino_event) -"iM" = (/obj/structure/casino_table/craps,/obj/machinery/light/floortube{dir = 8},/obj/item/weapon/dice{pixel_x = 4; pixel_y = 6},/obj/item/weapon/storage/dicecup,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"iN" = (/obj/structure/sink{pixel_y = 20},/obj/structure/mirror{pixel_y = 38},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"iO" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/wood,/area/submap/casino_event) -"iP" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"iQ" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"iR" = (/obj/structure/casino_table/blackjack_m{dir = 1},/obj/item/weapon/deck/cards/casino,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"iS" = (/obj/structure/sink{pixel_y = 20},/obj/structure/mirror{pixel_y = 38},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"iT" = (/obj/machinery/door/airlock{id_tag = "casino_stall_2"; name = "Stall 2"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"iU" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/kafel_full,/area/submap/casino_event) -"iV" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"iW" = (/obj/machinery/door/airlock{id_tag = "casino_stall_3"; name = "Stall 3"},/turf/simulated/floor/tiled/white,/area/submap/casino_event) -"iX" = (/obj/machinery/button/remote/airlock{id = "L7 VIP Room"; name = "Door Lock"; pixel_x = 24; pixel_y = 26; specialfunctions = 4},/turf/simulated/floor/wood,/area/submap/casino_event) -"iY" = (/obj/effect/overmap/visitable/sector/common_gateway/lucky7,/turf/space,/area/submap/casino_event) -"iZ" = (/obj/effect/landmark/hidden_level,/turf/space,/area/submap/casino_event) -"ja" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet/bcarpet,/area/submap/casino_event) -"jb" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet/gaycarpet,/area/submap/casino_event) -"jc" = (/obj/structure/closet/walllocker_double{dir = 8; name = "Game Cabinet"; pixel_x = -28},/obj/item/weapon/deck/cards/casino,/obj/item/weapon/deck/cards,/turf/simulated/floor/carpet/turcarpet,/area/submap/casino_event) -"jd" = (/obj/effect/floor_decal/spline/plain{dir = 5},/turf/simulated/floor/wood,/area/submap/casino_event) -"je" = (/obj/machinery/door/airlock{id_tag = "L7 Room 5"; name = "Private Room 5"},/turf/simulated/floor/wood,/area/submap/casino_event) -"jn" = (/obj/machinery/door/airlock{name = "Tournament Room"},/turf/simulated/floor/carpet/blue2,/area/submap/casino_event) -"jq" = (/obj/structure/flora/pottedplant/tall,/turf/simulated/floor/carpet/brown,/area/submap/casino_event) -"jx" = (/obj/machinery/vending/foodasian,/turf/simulated/floor/lino,/area/submap/casino_event) -"jy" = (/obj/machinery/vending/fooditalian,/turf/simulated/floor/lino,/area/submap/casino_event) -"jz" = (/obj/machinery/vending/foodfast,/turf/simulated/floor/lino,/area/submap/casino_event) -"jA" = (/obj/machinery/vending/fooddessert{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) -"jB" = (/obj/machinery/vending/foodstuffing{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) -"jC" = (/obj/machinery/vending/foodfish,/turf/simulated/floor/lino,/area/submap/casino_event) -"jD" = (/obj/machinery/vending/foodveggie,/turf/simulated/floor/lino,/area/submap/casino_event) -"jE" = (/obj/machinery/vending/foodmeat,/turf/simulated/floor/lino,/area/submap/casino_event) -"jG" = (/obj/machinery/vending/foodfish{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) -"jH" = (/obj/machinery/vending/foodmeat{dir = 1},/turf/simulated/floor/lino,/area/submap/casino_event) -"jI" = (/obj/machinery/vending/deluxe_boozeomat/open,/turf/simulated/floor/lino,/area/submap/casino_event) -"jJ" = (/obj/machinery/vending/deluxe_cigs/open,/turf/simulated/floor/lino,/area/submap/casino_event) -"jK" = (/obj/machinery/vending/deluxe_dinner/open,/turf/simulated/floor/lino,/area/submap/casino_event) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"ab" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/submap/casino_event) +"ac" = ( +/obj/structure/table/borosilicate, +/obj/structure/dancepole, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/submap/casino_event) +"ad" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/submap/casino_event) +"ae" = ( +/turf/simulated/wall, +/area/submap/casino_event) +"af" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/submap/casino_event) +"ag" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/submap/casino_event) +"ah" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/submap/casino_event) +"ai" = ( +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"aj" = ( +/obj/structure/bed/chair/bay/comfy/blue, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ak" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"al" = ( +/obj/structure/table/darkglass, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"am" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"an" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ao" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ap" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"aq" = ( +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"ar" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"as" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"at" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"au" = ( +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"av" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Private Room"; + req_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"aw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"ax" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"ay" = ( +/obj/structure/flora/pottedplant/tall, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"az" = ( +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"aA" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"aB" = ( +/obj/machinery/door/airlock{ + name = "Arcade" + }, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"aC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"aD" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"aE" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"aF" = ( +/obj/machinery/clawmachine, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"aG" = ( +/obj/structure/table/woodentable, +/obj/machinery/light, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"aH" = ( +/obj/structure/table/gamblingtable, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/machinery/light, +/turf/simulated/floor/carpet/retro, +/area/submap/casino_event) +"aI" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"aJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"aK" = ( +/obj/structure/flora/pottedplant/tall, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"aL" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aM" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aN" = ( +/obj/structure/table/steel, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aO" = ( +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aP" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aQ" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"aR" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"aS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aT" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aU" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"aV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aW" = ( +/obj/random/trash, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aX" = ( +/obj/random/trash, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aY" = ( +/obj/random/trash, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"aZ" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"ba" = ( +/obj/structure/window/basic, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"bb" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 PGR 1"; + name = "Private Game Room 1" + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bc" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 PGR 2"; + name = "Private Game Room 2" + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"bd" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 PGR 3"; + name = "Private Game Room 3" + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"be" = ( +/obj/random/trash, +/obj/random/trash, +/obj/machinery/light/small, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bf" = ( +/obj/random/trash, +/obj/random/trash, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bg" = ( +/obj/random/trash_pile, +/obj/random/trash, +/obj/random/trash, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bh" = ( +/obj/machinery/slot_machine, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"bi" = ( +/obj/machinery/slot_machine, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"bj" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/book/manual/wizzoffguide, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bk" = ( +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bl" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 PGR 1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bm" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/book/manual/wizzoffguide, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"bn" = ( +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"bo" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 PGR 2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"bp" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/book/manual/wizzoffguide, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"bq" = ( +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"br" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 PGR 3"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"bs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bt" = ( +/obj/random/trash_pile, +/obj/random/trash, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bu" = ( +/obj/random/trash, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bv" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"bw" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bx" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"by" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"bz" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Trash Collection" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bA" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bB" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bC" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bD" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"bE" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"bF" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"bG" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"bH" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"bI" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"bJ" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bK" = ( +/obj/random/trash_pile, +/obj/effect/floor_decal/rust, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bL" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bM" = ( +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bN" = ( +/obj/effect/floor_decal/rust, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bO" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bP" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"bQ" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"bR" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"bS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/casino, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"bT" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"bU" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"bV" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"bW" = ( +/obj/structure/table/woodentable, +/obj/item/trash/asian_bowl, +/obj/item/weapon/material/kitchen/utensil/fork/plastic, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"bX" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bY" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"bZ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"ca" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"cb" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"cc" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"cd" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"ce" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"cf" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"cg" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/effect/floor_decal/rust, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"ch" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"ci" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cj" = ( +/obj/structure/bed/chair/sofa/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ck" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cl" = ( +/obj/structure/bed/chair/sofa/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cm" = ( +/obj/machinery/door/airlock{ + id_tag = "br bathroom"; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"cn" = ( +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"co" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"cp" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cq" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cr" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cs" = ( +/obj/structure/bed/chair/sofa/right/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ct" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cu" = ( +/obj/structure/table/standard, +/obj/machinery/button/remote/airlock{ + id = "br bathroom"; + name = "Bathroom Lock"; + pixel_x = -20; + pixel_y = 10; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"cv" = ( +/obj/machinery/vending/wallmed1/public{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"cw" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"cx" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"cy" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"cz" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1; + icon_state = "comfychair_preview" + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"cA" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"cB" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"cC" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cD" = ( +/turf/simulated/wall/r_wall, +/area/submap/casino_event) +"cE" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cF" = ( +/obj/structure/table/rack/steel, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cG" = ( +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"cH" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cI" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cJ" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cK" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/junk, +/obj/effect/floor_decal/rust, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cL" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cM" = ( +/obj/structure/table/rack/steel, +/obj/random/maintenance, +/obj/random/junk, +/obj/random/junk, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"cN" = ( +/obj/structure/table/rack/shelf, +/obj/item/device/slow_sizegun, +/obj/item/device/slow_sizegun, +/obj/item/device/slow_sizegun, +/obj/item/weapon/gun/energy/sizegun, +/obj/item/weapon/gun/energy/sizegun, +/obj/item/weapon/gun/energy/sizegun, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cO" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"cP" = ( +/obj/machinery/casino_prize_dispenser, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"cQ" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"cR" = ( +/obj/machinery/casino_prize_dispenser, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"cS" = ( +/obj/machinery/casinosentientprize_handler{ + casinosentientprize_sale = "enabled"; + pixel_y = 32 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"cT" = ( +/obj/machinery/chipmachine{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"cU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/security, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cV" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/box/roulette_balls_cheat, +/obj/item/weapon/storage/box/roulette_balls_cheat, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cW" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cX" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/deck/schnapsen, +/obj/item/weapon/deck/wizoff, +/obj/item/weapon/deck/tarot, +/obj/item/weapon/deck/egy, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cY" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced, +/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced, +/obj/item/weapon/gun/energy/mouseray/metamorphosis/advanced, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"cZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"da" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"db" = ( +/obj/structure/table/steel, +/obj/item/weapon/spacecasinocash/c1000{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/turf/simulated/floor/tiled/techfloor, +/area/submap/casino_event) +"dc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/casino_event) +"dd" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/spacecash/c1000{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/weapon/spacecash/c1000{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/spacecash/c1000, +/turf/simulated/floor/tiled/techfloor, +/area/submap/casino_event) +"de" = ( +/obj/structure/closet, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/item/device/flashlight/color, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"df" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/obj/item/weapon/spacecasinocash/c1000, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"dg" = ( +/obj/structure/table/rack/shelf, +/obj/item/device/bodysnatcher, +/obj/item/device/bodysnatcher, +/obj/item/device/sleevemate, +/obj/item/device/sleevemate, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"dh" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"di" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dj" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dk" = ( +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/structure/casino_table/roulette_chart, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dl" = ( +/obj/structure/casino_table/roulette_table, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dm" = ( +/obj/structure/casino_table/craps, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dn" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"do" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"dp" = ( +/obj/machinery/shower{ + pixel_y = 20 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/random/soap, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"dq" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"dr" = ( +/obj/machinery/chipmachine{ + pixel_y = 32 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"ds" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/casino_event) +"dt" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"du" = ( +/obj/machinery/chipmachine{ + pixel_y = 32 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"dv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -13; + pixel_y = -4 + }, +/obj/structure/mirror{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/casino_event) +"dw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"dx" = ( +/obj/machinery/chipmachine{ + pixel_y = 32 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"dy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/casino_event) +"dz" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"dA" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"dB" = ( +/obj/machinery/chipmachine{ + pixel_y = 32 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"dC" = ( +/obj/machinery/door/airlock{ + id_tag = "br bathroom"; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/casino_event) +"dD" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"dE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"dF" = ( +/obj/machinery/chipmachine{ + pixel_y = 32 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"dG" = ( +/obj/effect/floor_decal/corner/lightorange{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1" + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"dH" = ( +/obj/structure/table/steel, +/obj/item/stack/material/diamond{ + amount = 50; + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/stack/material/diamond{ + amount = 50 + }, +/obj/item/stack/material/diamond{ + amount = 50; + pixel_x = 5; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/casino_event) +"dI" = ( +/turf/simulated/floor/tiled/techfloor, +/area/submap/casino_event) +"dJ" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/structure/table/rack/steel, +/obj/random/contraband, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"dK" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"dL" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"dM" = ( +/obj/structure/table/woodentable, +/obj/item/trash/asian_bowl, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dN" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork/plastic, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dP" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dQ" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"dR" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"dS" = ( +/obj/structure/casino_table/roulette_chart, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"dT" = ( +/obj/structure/casino_table/roulette_table, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"dU" = ( +/obj/structure/casino_table/roulette_chart, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"dV" = ( +/obj/structure/casino_table/roulette_table, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"dW" = ( +/obj/structure/casino_table/roulette_chart, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"dX" = ( +/obj/structure/casino_table/roulette_table, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"dY" = ( +/obj/structure/casino_table/craps, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"dZ" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"ea" = ( +/obj/structure/casino_table/craps, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"eb" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"ec" = ( +/obj/structure/table/steel, +/obj/random/cash/huge{ + pixel_y = 8 + }, +/obj/random/cash/huge, +/obj/item/weapon/bikehorn{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/casino_event) +"ed" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ee" = ( +/obj/machinery/door/airlock{ + name = "Breakroom"; + req_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ef" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"eg" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 4 + }, +/obj/item/weapon/deck/cards/casino, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"eh" = ( +/obj/machinery/button/remote/airlock{ + id = "roulette_1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = -26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"ei" = ( +/obj/machinery/button/remote/airlock{ + id = "roulette_2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = -26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"ej" = ( +/obj/machinery/button/remote/airlock{ + id = "roulette_3"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = -26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"ek" = ( +/obj/machinery/button/remote/airlock{ + id = "craps_1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = -26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"el" = ( +/obj/machinery/button/remote/airlock{ + id = "craps_2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = -26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"em" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "Safe"; + req_access = list(101); + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/casino_event) +"en" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/box/roulette_balls_normal, +/obj/item/weapon/storage/box/roulette_balls_normal, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"eo" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"ep" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"eq" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"er" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"es" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/storage/box/roulette_balls_normal, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/obj/item/weapon/storage/box/roulette_balls_cheat, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"et" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/weapon/dice, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"eu" = ( +/obj/machinery/door/airlock{ + id_tag = "roulette_1"; + name = "Private Roulette Room 1" + }, +/turf/simulated/floor/carpet/green, +/area/submap/casino_event) +"ev" = ( +/obj/machinery/door/airlock{ + id_tag = "roulette_2"; + name = "Private Roulette Room 2" + }, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"ew" = ( +/obj/machinery/door/airlock{ + id_tag = "roulette_3"; + name = "Private Roulette Room 3" + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"ex" = ( +/obj/machinery/door/airlock{ + id_tag = "craps_1"; + name = "Private Craps Room 1" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"ey" = ( +/obj/machinery/door/airlock{ + id_tag = "craps_2"; + name = "Private Craps Room 2" + }, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"ez" = ( +/obj/machinery/door/airlock/glass_security{ + req_access = list(101); + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/flora/pottedplant/unusual, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/vending/security{ + dir = 8; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eE" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"eF" = ( +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eH" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"eI" = ( +/obj/structure/coatrack, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"eJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eK" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino/bowman, +/obj/item/device/radio/headset/casino/bowman, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eL" = ( +/obj/structure/table/glass, +/obj/machinery/vending/wallmed1/public{ + pixel_y = -32 + }, +/obj/item/weapon/backup_implanter, +/obj/item/weapon/backup_implanter, +/obj/item/weapon/backup_implanter, +/obj/item/weapon/backup_implanter, +/obj/item/weapon/backup_implanter, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"eM" = ( +/obj/random/trash_pile, +/obj/random/maintenance, +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"eN" = ( +/turf/simulated/floor/lino, +/area/submap/casino_event) +"eO" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"eP" = ( +/obj/structure/closet, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"eQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"eR" = ( +/obj/machinery/transhuman/autoresleever, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"eS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/obj/structure/table/rack, +/obj/item/weapon/spacecasinocash/c500, +/obj/item/weapon/spacecasinocash/c500, +/obj/item/weapon/spacecasinocash/c500, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/radio, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eX" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eY" = ( +/obj/item/modular_computer/console{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"eZ" = ( +/obj/random/trash_pile, +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/casino_event) +"fa" = ( +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"fb" = ( +/obj/structure/table/woodentable, +/obj/item/trash/bowl, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"fc" = ( +/obj/machinery/door/airlock{ + id_tag = "blackjack_1"; + name = "Private Blackjack Room 1" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fd" = ( +/obj/machinery/door/airlock{ + id_tag = "blackjack_2"; + name = "Private Blackjack Room 2" + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"fe" = ( +/obj/machinery/door/airlock{ + id_tag = "blackjack_3"; + name = "Private Blackjack Room 3" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"ff" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + id = "casino_check" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fh" = ( +/obj/structure/table/reinforced, +/obj/item/ammo_magazine/m45{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/handcuffs{ + pixel_y = -5 + }, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fj" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"fk" = ( +/obj/machinery/chipmachine{ + pixel_x = -32 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fl" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fm" = ( +/obj/machinery/button/remote/airlock{ + id = "blackjack_1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fn" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/storage/box/roulette_balls_normal, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/obj/item/weapon/storage/box/roulette_balls_cheat, +/turf/simulated/floor/carpet/purple, +/area/submap/casino_event) +"fo" = ( +/obj/machinery/chipmachine{ + pixel_x = -32 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"fp" = ( +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"fq" = ( +/obj/machinery/button/remote/airlock{ + id = "blackjack_2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"fr" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/storage/box/roulette_balls_normal, +/obj/item/weapon/storage/box/roulette_balls_fancy, +/obj/item/weapon/storage/box/roulette_balls_cheat, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"fs" = ( +/obj/machinery/chipmachine{ + pixel_x = -32 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"ft" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"fu" = ( +/obj/machinery/button/remote/airlock{ + id = "blackjack_3"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"fv" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/sblucarpet, +/area/submap/casino_event) +"fw" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"fx" = ( +/obj/item/weapon/stool/baystool/padded, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"fy" = ( +/obj/item/modular_computer/console{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fz" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fA" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/ammo_casing/spent, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fC" = ( +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 2; + pixel_y = -6 + }, +/obj/structure/table/rack/gun_rack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fD" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/ammo_box/b12g/pellet{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fE" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/item/clothing/suit/armor/bulletproof/alt{ + pixel_x = -6 + }, +/obj/item/clothing/suit/armor/bulletproof/alt{ + pixel_x = 6 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fF" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"fG" = ( +/obj/structure/table/rack/shelf, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino, +/obj/item/device/radio/headset/casino/bowman, +/obj/item/device/radio/headset/casino/bowman, +/obj/item/device/radio/headset/casino/bowman, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"fH" = ( +/obj/machinery/telecomms/allinone/casino, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"fI" = ( +/obj/structure/table/woodentable, +/obj/item/trash/plate, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"fJ" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"fK" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fL" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fM" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"fN" = ( +/obj/structure/bed/chair/comfy/red, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"fO" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"fP" = ( +/obj/structure/bed/chair/comfy/green, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"fQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fR" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"fS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2 + }, +/obj/item/weapon/pen, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "casino_check"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 2 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "casino_check"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"fU" = ( +/obj/structure/table/woodentable, +/obj/item/trash/plate, +/obj/item/weapon/material/kitchen/utensil/fork/plastic, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"fV" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"fW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fX" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"fY" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"fZ" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"ga" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"gb" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"gc" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"gd" = ( +/obj/structure/casino_table/blackjack_l, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"ge" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"gf" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"gg" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gh" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gi" = ( +/obj/structure/casino_table/blackjack_m, +/obj/machinery/light/floortube{ + dir = 1 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"gj" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gk" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gl" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"go" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gs" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gt" = ( +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gu" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gv" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/cigar/havana{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/storage/fancy/cigar{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gw" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gx" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"gy" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"gz" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"gA" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gC" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"gD" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gE" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gI" = ( +/obj/structure/casino_table/blackjack_l, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"gJ" = ( +/obj/structure/casino_table/blackjack_m, +/obj/machinery/light/floortube{ + dir = 1 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"gK" = ( +/obj/structure/casino_table/blackjack_r, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"gL" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gM" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"gN" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gO" = ( +/obj/structure/table/woodentable, +/obj/item/pizzabox/margherita, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gP" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gQ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gS" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gT" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gU" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/clothing/mask/smokable/pipe, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"gV" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gW" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"gX" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"gY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"gZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"ha" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hc" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hd" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"he" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hf" = ( +/obj/machinery/washing_machine, +/obj/item/clothing/under/modjump3, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hg" = ( +/obj/structure/table/standard, +/obj/item/clothing/under/suit_jacket/really_black{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hi" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hj" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/grey/bordercorner, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"hn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"ho" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/vending/bepis, +/turf/simulated/floor/tiled/monotile, +/area/submap/casino_event) +"hp" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/vending/sol, +/turf/simulated/floor/tiled/monotile, +/area/submap/casino_event) +"hq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"hr" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 1"; + name = "Private Room 1" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hs" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 2"; + name = "Private Room 2" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"ht" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 3"; + name = "Private Room 3" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hu" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 4"; + name = "Private Room 4" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hv" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 VIP Room"; + name = "VIP Room" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hw" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "casino_stall_1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"hx" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/towel/random, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hy" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "casino_stall_2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"hz" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 Room 1"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hA" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 Room 2"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hB" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 Room 3"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hC" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 Room 4"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hD" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hE" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hF" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hG" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/weapon/storage/pill_bottle/happy, +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hH" = ( +/obj/structure/bed/chair/sofa/right/purp, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hI" = ( +/obj/structure/bed/chair/sofa/left/purp, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hJ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"hK" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hL" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hM" = ( +/obj/item/weapon/flame/candle/candelabra/everburn, +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hN" = ( +/obj/random/drinkbottle, +/obj/structure/table/fancyblack, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hO" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"hP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hQ" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/yellowdouble, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hR" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hS" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/orangedouble, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hT" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/greendouble, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hU" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hV" = ( +/obj/structure/bed/chair/sofa/left/purp{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hW" = ( +/obj/structure/bed/chair/sofa/right/purp{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"hX" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/deck/cards, +/obj/item/weapon/deck/cards, +/obj/item/weapon/deck/cards, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/tiled/dark, +/area/submap/casino_event) +"hY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/submap/casino_event) +"hZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"ia" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"ib" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"ic" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"id" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"ie" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"if" = ( +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"ig" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"ih" = ( +/obj/random/soap, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"ii" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"ij" = ( +/obj/structure/table/glass, +/obj/random/soap, +/obj/item/weapon/towel/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"ik" = ( +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"il" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"im" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"in" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"io" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"ip" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/pool, +/area/submap/casino_event) +"iq" = ( +/obj/structure/casino_table/blackjack_r, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"ir" = ( +/obj/machinery/door/airlock{ + id_tag = "br bathroom"; + name = "Bathroom" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"is" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"it" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iu" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iv" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iw" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"ix" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iy" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iz" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iA" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 1 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iB" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iC" = ( +/obj/item/weapon/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"iD" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"iE" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/double, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"iF" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 Room 5"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"iG" = ( +/obj/machinery/door/airlock{ + id_tag = "casino_stall_1"; + name = "Stall 1" + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"iH" = ( +/obj/machinery/door/airlock{ + name = "Backroom" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"iI" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/casino_event) +"iJ" = ( +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"iK" = ( +/obj/machinery/item_bank{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/submap/casino_event) +"iL" = ( +/turf/space, +/area/submap/casino_event) +"iM" = ( +/obj/structure/casino_table/craps, +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/item/weapon/dice{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/dicecup, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"iN" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 38 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"iO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"iP" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 1 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"iQ" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 1 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"iR" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 1 + }, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"iS" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"iT" = ( +/obj/machinery/door/airlock{ + id_tag = "casino_stall_2"; + name = "Stall 2" + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"iU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/casino_event) +"iV" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"iW" = ( +/obj/machinery/door/airlock{ + id_tag = "casino_stall_3"; + name = "Stall 3" + }, +/turf/simulated/floor/tiled/white, +/area/submap/casino_event) +"iX" = ( +/obj/machinery/button/remote/airlock{ + id = "L7 VIP Room"; + name = "Door Lock"; + pixel_x = 24; + pixel_y = 26; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"iY" = ( +/obj/effect/overmap/visitable/sector/common_gateway/lucky7, +/turf/space, +/area/submap/casino_event) +"iZ" = ( +/obj/effect/landmark/hidden_level, +/turf/space, +/area/submap/casino_event) +"ja" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/carpet/bcarpet, +/area/submap/casino_event) +"jb" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/carpet/gaycarpet, +/area/submap/casino_event) +"jc" = ( +/obj/structure/closet/walllocker_double/casino{ + dir = 8; + name = "Game Cabinet"; + pixel_x = -28 + }, +/obj/item/weapon/deck/cards/casino, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/casino_event) +"jd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"je" = ( +/obj/machinery/door/airlock{ + id_tag = "L7 Room 5"; + name = "Private Room 5" + }, +/turf/simulated/floor/wood, +/area/submap/casino_event) +"jn" = ( +/obj/machinery/door/airlock{ + name = "Tournament Room" + }, +/turf/simulated/floor/carpet/blue2, +/area/submap/casino_event) +"jq" = ( +/obj/structure/flora/pottedplant/tall, +/turf/simulated/floor/carpet/brown, +/area/submap/casino_event) +"jx" = ( +/obj/machinery/vending/foodasian, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jy" = ( +/obj/machinery/vending/fooditalian, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jz" = ( +/obj/machinery/vending/foodfast, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jA" = ( +/obj/machinery/vending/fooddessert{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jB" = ( +/obj/machinery/vending/foodstuffing{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jC" = ( +/obj/machinery/vending/foodfish, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jD" = ( +/obj/machinery/vending/foodveggie, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jE" = ( +/obj/machinery/vending/foodmeat, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jG" = ( +/obj/machinery/vending/foodfish{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jH" = ( +/obj/machinery/vending/foodmeat{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jI" = ( +/obj/machinery/vending/deluxe_boozeomat/open, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jJ" = ( +/obj/machinery/vending/deluxe_cigs/open, +/turf/simulated/floor/lino, +/area/submap/casino_event) +"jK" = ( +/obj/machinery/vending/deluxe_dinner/open, +/turf/simulated/floor/lino, +/area/submap/casino_event) (1,1,1) = {" -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaaaaaaaaaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaaaaabacabaaaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaaabadabadabaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeafagagagahaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaiaiaiaiaiaiaiaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeajajaiakaiajajaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaealalaiaeaialalaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeamamaianaiamamaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaiaiaiaiaiaiaiaeaeaaaaaaaeaaaaaaaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaoaiaiaiapaeaeaqarasaratasarasauaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeavavavaeaeaeawaxaxaxaqaxaxaxaqaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazazazazazaeaqaqaqaqaqaqaqaqaqaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaAazazazazazazaBaqaqaqaqaqaCaDaEaqaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazazazazazaeaqaFaGaFaqaCaHaEaqaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeazazazaeaeaeaeaeaeaeaeaeaeaeaeaeaeaaaaaaaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLaeaIazazazazazazazazazaJazazazazazaJazazazazazazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaLaMaNaOaOaPaeiLiLiLiLiLiLiLiLaaaQaQazazazazazazazazazazazazazazazazazazazazazaRaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaSaTaTaTaOaOaeiLiLiLiLiLiLiLiLaaaUaUazazazazazazazazazazazazazazazazazazazazazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaVaTaPaWaXaYaeiLiLiLiLiLiLiLiLaaaZaZazazazbabaaeaeaebbaeaeaeaeaebcaeaeaeaeaebdaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaOaTaSbebfbgaeiLiLiLiLiLiLiLiLaeazazazazazbhbiaebjbkblbkbkaebmbnbobnbnaebpbqbrbqbqaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaOaTbsaebtbuaeiLiLiLiLiLiLiLiLaeazazazazazbvbvaebkbwbwbwbkaebnbxbxbxbnaebqbybybybqaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeaebzaeaeaeaeaeaeaaaaaaaeaeaeaeaeaQaQazazazbabaaebAbBbBbBbCaebDbEbEbEbFaebGbHbHbHbIaeaeaeaeiLaeaeaeaeiLaeaeaeaeiLaeaeaeaeiLaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaOaOaSbJbKbLaOaObMbNaebObPaebQbRbSbTaiaebUbVaebWaUazazazbhbiaebXbBbYbBbZaecabEcbbEccaecdbHcebHcfaedpdsaeiLaedpdsaeiLaedpdsaeiLaedpdsaeiLaedpdsaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecgaTaTaTaTbMbMaTaTbMchaTaTciaicjckclaicmcncoaeaZaZazazazbvbvaebAbBbBbBbCaebDbEbEbEbFaebGbHbHbHbIaedvdyaeiLaedvdyaeiLaedvdyaeiLaedvdyaeiLaedvdyaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecpaTaOaPaObJaScqcqcqaeaOcraeaicsckctaiaecucvaeazazazazazazazaebkcwcxcwbkaebncyczcybnaebqcAcBcAbqaeaedCaeaeaeaedCaeaeaeaedCaeaeaeaedCaeaeaeaedCaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcDcDcDcDaecCcDcDcDcDcDcEaOcFaeaOaTaeaiaiaiaiaiaeaeaeaeaeaeazazazaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaehxgthEhTaehxgthEhRaehxgthEhUaehxgthEhSaehxgthEfwaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcHcIcJcDcGcGcDcHcIcJcDcKcLcMaeaSbMaeaiaiaiaiaiaiaicNaeazazazazazaJazcOcScPcQcRazcTazaJazazazazazazaJazazaehFgtgWgtaehFgtgWgtaehFgtgWgtaehFgtgWgtaehFgtgWgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDaiaiaicUcGcGcUaiaiaicDcDcDcDcDaObMaecVaiaicWcXaiaicYaeazazazazazazazazazazazazazazazazazazazazazazazazcZaeaeiHaeaeaeaeiHaeaeaeaeiHaeaeaeaeiHaeaeaeaeiHaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcDcDcDcDcGdacDcDcDcDcDdbdcddcDdebMaecVaiaihXdfaiaidgaedhazdiaUaUdjazazazazazazazazazazdkdlazazdmdnazazdoaeesbndqdraefnbkdtduaefrbqdwdxaefvdzdAdBaeiIdDdEdFaeaeaeaeaeaeaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDdGcIcJcDcGcGcDdGcIcJcDdHdIddcDdJaTaedKaiaidLdfaiaiaiaeazazdidMdNdjdOaeaIazdPdQdOaeaIazazazazazazazazazdRaebndSdTbnaebkdUdVbkaebqdWdXbqaedzdYdZdzaedDeaebdDaebqbqfxbqbqbqbqfxbqbqbqbqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDaiaiaicUcGcGcUaiaiaicDecdIddcDaOaTaedKaiaieddfaiaiaieeazazazazazazazazazefegdQazazazazazazazazazazazazazaebnbnehbnaebkbkeibkaebqbqejbqaedzdzekdzaedDdDeldDaefYgdgiiqisfYgdgiiqisbqbqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLcDcDcDcDcDcGdacDcDcDcDcDcDemcDcDbNaTaeenaiaieoepaiaiaiaeazazdiaUeqdjazazazazerdQazazazazdkdlazaziMetazazdOaeaeaeeuaeaeaeaeevaeaeaeaeewaeaeaeaeexaeaeaeaeeyaeaebqitititbqbqitititbqiubqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGezcGeAeBcGeCcCbLaTaeaiaiaiaiaiaiaiaiaeaIazdiaUeEdjazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazaebqbqbqbqbqbqbqbqbqfYivbqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeeFcGcGcGezcGcGcGcGeGaeaeeHaeaiaiaiaeaeaeaeaeaeeIazazazazazdOaeaIazazazdOaeaIazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazazjnbqbqbqbqbqbqbqbqbqfYiwixaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeezaeaeaeeJcGeKcGeDaeeMbMaeaiaiaiaejxjyjxjzjyjzazdieEaUdjazazazazazazazazazazdkdlazaziMeOazazazazazazazazazazazazazazazazazazazazazazazazazazazjqaebqbqbqbqbqbqbqbqbqfYiybqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeePeQePeRaeeScGeTeUaeeVcGeWeXeYaeeZaTfaaiaiaiaeeNeNeNeNeNeNazdiaUfbdjazazazazdPdQazazazazazazazazazazazazazaeaeaefcaeaeaeaeaefdaeaeaeaeaefeaeaeaeaeaeaeaeaeaeaebqiuiuiubqbqiuiuiubqitbqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecncncncnaeeVcGcGffaefgcGfhcGfiaeaSaOaeaiaiaiaejAjGjBjAjBjHazazazazazazazazeffjdQazazazazazazazazazazazazdOaefkflfmflflaefofpfqfpfpaefsftfuftftaeiLiLiLiLiLiLaefYiziAiBisfYiziAiBisbqbqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeeLeLcncnaefyfzcGfAaefBcGfCfDfEaeaPaOaefFfGfHaejCjDjEjIjJjKazdiaUfIdjdOaeaIazerdQdOaeaIazazeffJazazazdPdQazaeflfKfLfKflaefpfMfNfMfpaeftfOfPfOftaeiLiLiLiLiLiLaebqbqiCbqbqbqbqiCbqbqbqbqaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGfQiKiJaeaeaefRaeaeaefSfTaeaeaeezaeaeaeaeaeaeaeaeaeaeaeeNeNeNeNeNeNazdifUaUdjazcOazazazazazcTazazazeffVdQazeffjdQazaefWfXiPfZgaaegbgciQgegfaeggghiRgjgkaeiLiLiLiLiLiLaeaeaeaeaeaeaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGcGcGcGcGcGcGglgmgngngogpgqcGgrgpgsglgtgtgtgugvgwgTiOiOiOiOiOjdazazazazazazazazazazazazazazazazefgxazazazerdQazaejaflgyflflaejbfpgzfpfpaejcftgAftftaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGcGcGcGcGcGcGglcGcGcGcGcGcGcGcGcGcGglgtgtgtgtgtgtgtgtgtgtgtgtgBazbababababaazazgCazazbababababaazazazgCazazazazaeaeiHaeaeaeaeaeiHaeaeaeaeaeiHaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGcGcGcGcGcGgDcGcGglgEgFgGgFgFgFgFgGgFgHglgtgtgtgtgtgtgtgtgtgtgtgtgBazbhbhbhbhbhazgIgJgKazbhbhbhbhbhazazgIgJgKazazdOaehxgtgthEhQaehxgtgthEiDaehxgtgthEiEaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecGcGgDcGcGaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaegtgLgLgLgtgLgLgLgtgLgLgLgBazbvbvbvbvbvazgMgMgMazbvbvbvbvbvazazgMgMgMazazcZaehFgtgWgtgtaehFgtgWgtgtaehFgtgWgtgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLaehwiGiNiNiSaegNgOgPgQgtgQgRgSgtgQgPgTgBazbababababaazazazazazbababababaazazbababaazazgUaeaedCaeaeaeaeaedCaeaeaeaeaedCaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaecncncnirgtgVgVgVgtgVgVgVgtgVgVgVgBazbhbhbhbhbhazazazazazbhbhbhbhbhazazbhbhbhazazdRaedpdyaeiLiLaedpdyaeiLiLaedpdyaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehyiTcncncnaegtgtgtgtgWgtgtgtgWgtgtgtgBgXbvbvbvbvbvgXazazazgXbvbvbvbvbvgXazbvbvbvgXazazaedviUaeiLiLaedviUaeiLiLaedviUaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaecncncnaeaeaaaaaaaeaaaaaaaeaaaaaaaeaeaeaeaeaeaeaeazazazaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeiLiLaeaeaeaeiLiLaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeiViWcncncoaeiLiLiLiLiLiLiLiLiLiLiLiLiLaegYgZgZgZhaaeazazazaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLaahbhccGhdheaeazazazaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaahbhfcGhgheaeazazazaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaahbhccGcGheaeazazazaaiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehhhicGhjhkaeazazazaeiLiLiLiLiLiLiLaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaehlhmhnaeaeazazazaeaeaeaeaeaeaeaeaehohpaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazazazhqhqhqazaJazazazaJazazazazazazazazhqhqaJazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaAazazazazazazazazazazazazazazazazazazazazazazazazazaRaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeayazazgXazazazazazazazgXazazazazazazazgXazazazazazazaKaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaehraeaeaehsaeaeaehtaeaeaehuaeaeaejeaeaeaehvaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaegthzhxaegthAhxaegthBhxaegthChxaegtiFhxaegtiXgtgtgthDgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehEgthFaehEgthFaehEgthFaehEgthFaehEgthFaehGgthHhIdDdDhJaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehKgtgtaehKgtgtaehKgtgtaehKgtgtaehKgtgtaehLgthMhNdDdDhOaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaehPgthQaehPgthRaehPgthSaehPgthTaehPgthUaegtgthVhWdDdDhJaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaegtgtgtaegtgtgtaegtgtgtaegtgtgtaegtgtgtaegtgtgtgtgtgWgtaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecmaeaeaecmaeaeaecmaeaeaecmaeaeaecmaeaeaecmaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecnbUbVaecnbUbVaecnbUbVaecnbUbVaecnbUbVaecnbUbVhYhZiaibaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeiccncnaeiccncnaeiccncnaeiccncnaeiccncnaeidcncnhYieifigaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaecnihiiaecnihiiaecnihiiaecnihiiaecnihiiaeijcncnhYieikilaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeaeidcncnhYieikigaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeiicnimhYinioipaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLaeaeaeaeaeaeaeaeaeiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiYiZiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL -iLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiLiL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(2,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iY +iL +"} +(3,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iZ +iL +"} +(4,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(5,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(6,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(7,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(8,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(9,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(10,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(11,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(12,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(13,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(14,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(15,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(16,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(17,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(18,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(19,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(20,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(21,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(22,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(23,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(24,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(25,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(26,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(27,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(28,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(29,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(30,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(31,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(32,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +cG +cG +cG +cG +cG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(33,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +cG +cG +cG +cG +cG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(34,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +fQ +cG +cG +cG +gD +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(35,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +iK +cG +cG +cG +cG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(36,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +iJ +cG +cG +cG +cG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(37,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +cG +cG +cG +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(38,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +cD +cD +cD +cD +cD +cD +cD +iL +iL +ae +eP +cn +eL +ae +cG +cG +cG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(39,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +cD +cH +ai +cD +dG +ai +cD +iL +iL +ae +eQ +cn +eL +ae +cG +cG +gD +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(40,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +cD +cI +ai +cD +cI +ai +cD +iL +iL +ae +eP +cn +cn +fR +cG +cG +cG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(41,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +cD +cJ +ai +cD +cJ +ai +cD +iL +iL +ae +eR +cn +cn +ae +cG +cG +cG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(42,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +cD +cD +cU +cD +cD +cU +cD +ae +ae +ae +ae +ae +ae +ae +gl +gl +gl +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(43,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aO +cg +cp +ae +cG +cG +cG +cG +cG +cG +cG +eF +ae +eS +eV +fy +ae +gm +cG +gE +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(44,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aO +aT +aT +cC +cG +cG +da +cG +cG +da +cG +cG +ez +cG +cG +fz +fS +gn +cG +gF +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(45,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aS +aT +aO +cD +cD +cU +cD +cD +cU +cD +cG +cG +ae +eT +cG +cG +fT +gn +cG +gG +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(46,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bJ +aT +aP +cD +cH +ai +cD +dG +ai +cD +cG +cG +ae +eU +ff +fA +ae +go +cG +gF +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(47,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bK +aT +aO +cD +cI +ai +cD +cI +ai +cD +ez +ez +ae +ae +ae +ae +ae +gp +cG +gF +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(48,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bL +bM +bJ +cD +cJ +ai +cD +cJ +ai +cD +cG +cG +eJ +eV +fg +fB +ae +gq +cG +gF +ae +hw +ae +hy +ae +iV +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(49,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +aO +bM +aS +cD +cD +cD +cD +cD +cD +cD +eA +cG +cG +cG +cG +cG +ez +cG +cG +gF +ae +iG +ae +iT +ae +iW +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(50,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aL +aS +aV +aO +aO +ae +aO +aT +cq +cE +cK +cD +db +dH +ec +cD +eB +cG +eK +eW +fh +fC +ae +gr +cG +gG +ae +iN +cn +cn +cn +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(51,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aM +aT +aT +aT +aT +bz +bM +aT +cq +aO +cL +cD +dc +dI +dI +em +cG +cG +cG +eX +cG +fD +ae +gp +cG +gF +ae +iN +cn +cn +cn +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(52,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aN +aT +aP +aS +bs +ae +bN +bM +cq +cF +cM +cD +dd +dd +dd +cD +eC +eG +eD +eY +fi +fE +ae +gs +cG +gH +ae +iS +cn +cn +cn +co +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(53,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aO +aT +aW +be +ae +ae +ae +ch +ae +ae +ae +cD +cD +cD +cD +cD +cC +ae +ae +ae +ae +ae +ae +gl +gl +gl +ae +ae +ir +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(54,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aO +aO +aX +bf +bt +ae +bO +aT +aO +aO +aS +aO +de +dJ +aO +bN +bL +ae +eM +eZ +aS +aP +ae +gt +gt +gt +gt +gN +gt +gt +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(55,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aP +aO +aY +bg +bu +ae +bP +aT +cr +aT +bM +bM +bM +aT +aT +aT +aT +eH +bM +aT +aO +aO +ae +gt +gt +gt +gL +gO +gV +gt +aa +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(56,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ci +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +fa +ae +ae +ae +gt +gt +gt +gL +gP +gV +gt +aa +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(57,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bQ +ai +ai +ai +ai +cV +cV +dK +dK +en +ai +ai +ai +ai +ai +fF +ae +gu +gt +gt +gL +gQ +gV +gt +aa +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(58,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +bR +cj +cs +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +fG +ae +gv +gt +gt +gt +gt +gt +gW +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(59,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +bS +ck +ck +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +fH +ae +gw +gt +gt +gL +gQ +gV +gt +aa +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(60,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +bT +cl +ct +ai +ai +cW +hX +dL +ed +eo +ai +ae +ae +ae +ae +ae +ae +gT +gt +gt +gL +gR +gV +gt +aa +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(61,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ai +ai +ai +ai +ai +cX +df +df +df +ep +ai +ae +jx +eN +jA +jC +eN +iO +gt +gt +gL +gS +gV +gt +aa +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(62,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +cm +ae +ae +ai +ai +ai +ai +ai +ai +ai +ae +jy +eN +jG +jD +eN +iO +gt +gt +gt +gt +gt +gW +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(63,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bU +cn +cu +ae +ai +ai +ai +ai +ai +ai +ai +ae +jx +eN +jB +jE +eN +iO +gt +gt +gL +gQ +gV +gt +aa +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(64,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bV +co +cv +ae +cN +cY +dg +ai +ai +ai +ai +ae +jz +eN +jA +jI +eN +iO +gt +gt +gL +gP +gV +gt +aa +iL +iL +iL +iL +iL +ae +ay +aA +ay +ae +gt +hE +hK +hP +gt +cm +cn +ic +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(65,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +aa +aa +aa +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ee +ae +ae +ae +jy +eN +jB +jJ +eN +iO +gt +gt +gL +gT +gV +gt +aa +iL +iL +iL +iL +iL +ae +az +az +az +hr +hz +gt +gt +gt +gt +ae +bU +cn +ih +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(66,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +aa +ae +ai +aj +al +am +ai +ae +ae +ay +aA +ay +ae +aI +aQ +aU +aZ +az +az +aQ +bW +aZ +az +ae +az +az +dh +az +az +az +aI +eI +jz +eN +jH +jK +eN +jd +gB +gB +gB +gB +gB +gB +ae +iL +iL +iL +iL +iL +ae +az +az +az +ae +hx +hF +gt +hQ +gt +ae +bV +cn +ii +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(67,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +aa +ab +af +ai +aj +al +am +ai +ao +ae +az +az +az +ae +az +aQ +aU +aZ +az +az +aQ +aU +aZ +az +ae +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +gX +ae +ae +aa +aa +aa +ae +ae +az +az +gX +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(68,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +ab +ad +ag +ai +ai +ai +ai +ai +ai +av +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +di +di +az +di +di +az +di +di +az +di +di +az +ba +bh +bv +ba +bh +bv +ae +gY +hb +hb +hb +hh +ae +az +az +az +ae +gt +hE +hK +hP +gt +cm +cn +ic +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(69,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +ac +ab +ag +ai +ak +ae +an +ai +ai +av +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +aU +dM +az +aU +aU +az +eE +aU +az +aU +fU +az +ba +bh +bv +ba +bh +bv +ae +gZ +hc +hf +hc +hi +hl +hq +az +az +hs +hA +gt +gt +gt +gt +ae +bU +cn +ih +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(70,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +ab +ad +ag +ai +ai +ai +ai +ai +ai +av +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +az +aU +dN +az +eq +eE +az +aU +fb +az +fI +aU +az +ba +bh +bv +ba +bh +bv +ae +gZ +cG +cG +cG +cG +hm +hq +az +az +ae +hx +hF +gt +hR +gt +ae +bV +cn +ii +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(71,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +aa +ab +ah +ai +aj +al +am +ai +ap +ae +az +az +az +ae +az +az +az +ba +bh +bv +ba +bh +bv +az +ae +aJ +az +dj +dj +az +dj +dj +az +dj +dj +az +dj +dj +az +ba +bh +bv +ba +bh +bv +ae +gZ +hd +hg +cG +hj +hn +hq +az +az +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(72,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +aa +ae +ai +aj +al +am +ai +ae +ae +az +az +az +ae +az +az +az +ba +bi +bv +ba +bi +bv +az +ae +az +az +az +dO +az +az +az +dO +az +az +az +dO +az +az +ba +bh +bv +ba +bh +bv +ae +ha +he +he +he +hk +ae +az +az +az +ae +gt +hE +hK +hP +gt +cm +cn +ic +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(73,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +aB +ae +ae +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +cO +az +az +ae +az +az +az +ae +az +az +az +ae +cO +az +az +az +az +az +az +gX +ae +ae +ae +ae +ae +ae +ae +aJ +az +az +ht +hB +gt +gt +gt +gt +ae +bU +cn +ih +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(74,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aq +aw +aq +aq +aq +ae +az +az +az +ae +bj +bk +bA +bX +bA +bk +ae +cS +az +az +aI +az +az +az +aI +az +az +az +aI +az +az +az +gI +gM +az +az +az +az +az +az +az +az +az +az +az +az +az +ae +hx +hF +gt +hS +gt +ae +bV +cn +ii +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(75,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +ar +ax +aq +aq +aF +ae +az +az +az +ae +bk +bw +bB +bB +bB +cw +ae +cP +az +az +az +ef +az +az +az +az +az +ef +az +az +az +gC +gJ +gM +az +az +az +az +az +az +az +az +az +az +az +az +gX +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(76,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +as +ax +aq +aq +aG +ae +aJ +az +az +bb +bl +bw +bB +bY +bB +cx +ae +cQ +az +az +dP +eg +er +az +az +az +dP +fj +er +az +az +az +gK +gM +az +az +az +az +az +az +az +az +az +az +az +az +az +ae +gt +hE +hK +hP +gt +cm +cn +ic +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(77,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +ar +ax +aq +aq +aF +ae +az +az +az +ae +bk +bw +bB +bB +bB +cw +ae +cR +az +az +dQ +dQ +dQ +az +az +az +dQ +dQ +dQ +az +az +az +az +az +az +az +gX +ae +ae +aa +aa +aa +ae +ae +aJ +az +az +hu +hC +gt +gt +gt +gt +ae +bU +cn +ih +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(78,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +at +aq +aq +aq +aq +ae +az +az +az +ae +bk +bk +bC +bZ +bC +bk +ae +az +az +az +dO +az +az +az +dO +az +az +az +dO +az +az +ba +bh +bv +ba +bh +bv +ae +iL +iL +iL +iL +iL +ae +az +az +az +ae +hx +hF +gt +hT +gt +ae +bV +cn +ii +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(79,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +as +ax +aq +aC +aC +ae +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +cT +az +az +ae +az +az +az +ae +az +az +az +ae +cT +az +ba +bh +bv +ba +bh +bv +ae +iL +iL +iL +iL +iL +ae +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(80,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +ar +ax +aq +aD +aH +ae +az +az +az +ae +bm +bn +bD +ca +bD +bn +ae +az +az +az +aI +az +az +az +aI +az +az +az +aI +az +az +ba +bh +bv +ba +bh +bv +ae +iL +iL +iL +iL +iL +ae +az +az +az +ae +gt +hE +hK +hP +gt +cm +cn +ic +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(81,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +as +ax +aq +aE +aE +ae +az +az +az +ae +bn +bx +bE +bE +bE +cy +ae +aJ +az +az +az +az +az +az +az +az +az +az +az +az +az +ba +bh +bv +ba +bh +bv +ae +iL +iL +iL +iL +iL +ae +az +az +az +je +iF +gt +gt +gt +gt +ae +bU +cn +ih +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(82,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +au +aq +aq +aq +aq +ae +aJ +az +az +bc +bo +bx +bE +cb +bE +cz +ae +az +az +dk +az +az +dk +az +az +dk +az +az +az +az +az +ba +bh +bv +ba +bh +bv +ae +iL +iL +iL +iL +iL +ae +az +az +az +ae +hx +hF +gt +hU +gt +ae +bV +cn +ii +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(83,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +aa +aa +aa +ae +ae +az +az +az +ae +bn +bx +bE +bE +bE +cy +ae +az +az +dl +az +az +dl +az +az +dl +az +az +ef +ef +ef +az +az +az +az +az +gX +ae +iL +iL +iL +iL +iL +ae +az +az +gX +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(84,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +az +az +az +ae +bn +bn +bF +cc +bF +bn +ae +az +az +az +az +az +az +az +az +az +az +az +fJ +fV +gx +az +az +az +az +az +az +ae +iL +iL +iL +iL +iL +ae +az +az +az +ae +gt +hG +hL +gt +gt +cm +cn +id +ij +id +ii +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(85,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +az +az +az +az +az +az +az +az +az +az +az +az +dQ +az +az +gI +gM +ba +bh +bv +ae +iL +iL +iL +iL +ae +ae +az +az +az +hv +iX +gt +gt +gt +gt +ae +bU +cn +cn +cn +cn +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(86,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +az +az +az +ae +bp +bq +bG +cd +bG +bq +ae +az +az +dm +az +az +iM +az +az +iM +az +az +az +az +az +gC +gJ +gM +ba +bh +bv +ae +iL +iL +iL +iL +ae +ho +hq +az +az +ae +gt +hH +hM +hV +gt +ae +bV +cn +cn +cn +im +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(87,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +aa +az +az +az +ae +bq +by +bH +bH +bH +cA +ae +az +az +dn +az +az +et +az +az +eO +az +az +az +ef +az +az +gK +gM +ba +bh +bv +ae +iL +iL +iL +iL +ae +hp +hq +az +az +ae +gt +hI +hN +hW +gt +ae +hY +hY +hY +hY +hY +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(88,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +az +az +az +bd +br +by +bH +ce +bH +cB +ae +aJ +az +az +az +az +az +az +az +az +az +az +dP +fj +er +az +az +az +az +az +gX +ae +iL +iL +iL +iL +ae +ae +aJ +az +az +ae +gt +dD +dD +dD +gt +ae +hZ +ie +ie +ie +in +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(89,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +aK +aR +aK +ae +bq +by +bH +bH +bH +cA +ae +az +az +az +az +az +az +az +az +az +az +az +dQ +dQ +dQ +az +az +az +az +az +az +ae +iL +iL +iL +iL +iL +ae +az +az +az +ae +hD +dD +dD +dD +gW +ae +ia +if +ik +ik +io +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(90,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +bq +bq +bI +cf +bI +bq +ae +az +cZ +do +dR +az +dO +az +az +az +az +dO +az +az +az +az +dO +cZ +gU +dR +az +ae +iL +iL +iL +iL +iL +ae +aK +aR +aK +ae +gt +hJ +hO +hJ +gt +ae +ib +ig +il +ig +ip +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(91,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(92,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +dp +dv +ae +hx +hF +ae +es +bn +bn +ae +az +az +az +ae +fk +fl +fW +ja +ae +hx +hF +ae +dp +dv +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(93,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ds +dy +dC +gt +gt +iH +bn +dS +bn +ae +az +az +az +ae +fl +fK +fX +fl +iH +gt +gt +dC +dy +iU +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(94,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +hE +gW +ae +dq +dT +eh +eu +az +az +az +fc +fm +fL +iP +gy +ae +gt +gW +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(95,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +hT +gt +ae +dr +bn +bn +ae +az +az +az +ae +fl +fK +fZ +fl +ae +hE +gt +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(96,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +az +az +az +ae +fl +fl +ga +fl +ae +hQ +gt +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(97,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +dp +dv +ae +hx +hF +ae +fn +bk +bk +ae +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(98,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ds +dy +dC +gt +gt +iH +bk +dU +bk +ae +az +az +az +ae +fo +fp +gb +jb +ae +hx +hF +ae +dp +dv +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(99,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +hE +gW +ae +dt +dV +ei +ev +az +az +az +ae +fp +fM +gc +fp +iH +gt +gt +dC +dy +iU +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(100,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +hR +gt +ae +du +bk +bk +ae +az +az +az +fd +fq +fN +iQ +gz +ae +gt +gW +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(101,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +az +az +az +ae +fp +fM +ge +fp +ae +hE +gt +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(102,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +dp +dv +ae +hx +hF +ae +fr +bq +bq +ae +az +az +az +ae +fp +fp +gf +fp +ae +iD +gt +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(103,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ds +dy +dC +gt +gt +iH +bq +dW +bq +ae +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(104,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +hE +gW +ae +dw +dX +ej +ew +az +az +az +ae +fs +ft +gg +jc +ae +hx +hF +ae +dp +dv +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(105,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +hU +gt +ae +dx +bq +bq +ae +az +az +az +ae +ft +fO +gh +ft +iH +gt +gt +dC +dy +iU +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(106,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +az +az +az +fe +fu +fP +iR +gA +ae +gt +gW +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(107,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +dp +dv +ae +hx +hF +ae +fv +dz +dz +ae +az +az +az +ae +ft +fO +gj +ft +ae +hE +gt +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(108,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ds +dy +dC +gt +gt +iH +dz +dY +dz +ae +az +az +az +ae +ft +ft +gk +ft +ae +iE +gt +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(109,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +hE +gW +ae +dA +dZ +ek +ex +az +az +az +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(110,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +hS +gt +ae +dB +dz +dz +ae +az +az +az +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(111,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +az +az +az +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(112,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +dp +dv +ae +hx +hF +ae +iI +dD +dD +ae +az +az +az +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(113,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ds +dy +dC +gt +gt +iH +dD +ea +dD +ae +az +az +az +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(114,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +hE +gW +ae +dE +eb +el +ey +az +az +az +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(115,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +fw +gt +ae +dF +dD +dD +ae +az +az +jq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(116,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +jn +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(117,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +fY +bq +bq +bq +bq +bq +fY +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(118,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +gd +it +bq +bq +bq +iu +iz +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(119,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +fx +gi +it +bq +bq +bq +iu +iA +iC +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(120,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +iq +it +bq +bq +bq +iu +iB +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(121,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +is +bq +bq +bq +bq +bq +is +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(122,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +fY +bq +bq +bq +bq +bq +fY +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(123,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +gd +it +bq +bq +bq +iu +iz +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(124,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +fx +gi +it +bq +bq +bq +iu +iA +iC +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(125,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +iq +it +bq +bq +bq +iu +iB +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(126,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +is +bq +fY +fY +fY +bq +is +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(127,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +bq +iu +iv +iw +iy +it +bq +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(128,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +bq +bq +bq +bq +ix +bq +bq +bq +bq +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(129,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(130,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(131,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(132,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(133,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(134,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(135,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(136,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(137,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(138,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(139,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +"} +(140,1,1) = {" +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL "} diff --git a/maps/submaps/admin_use_vr/salamander_trader.dmm b/maps/submaps/admin_use_vr/salamander_trader.dmm index ffac636dab..a038d2afee 100644 --- a/maps/submaps/admin_use_vr/salamander_trader.dmm +++ b/maps/submaps/admin_use_vr/salamander_trader.dmm @@ -84,7 +84,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -135,8 +134,6 @@ /area/shuttle/salamander_trader_head) "bY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -166,7 +163,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -230,8 +226,6 @@ /area/shuttle/salamander_trader_engineering) "dO" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -295,8 +289,6 @@ "eP" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -346,8 +338,6 @@ /area/shuttle/salamander_trader_engineering) "fE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing/grey{ @@ -400,8 +390,6 @@ /area/shuttle/salamander_trader) "gl" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -419,7 +407,6 @@ pixel_x = -28 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/handrail, @@ -502,8 +489,6 @@ /area/shuttle/salamander_trader) "hp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -526,8 +511,6 @@ /area/shuttle/salamander_trader_engineering) "hO" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -560,8 +543,6 @@ /area/shuttle/salamander_trader_engineering) "im" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -572,8 +553,6 @@ "iq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -587,13 +566,9 @@ /area/shuttle/salamander_trader_q2) "is" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -603,8 +578,6 @@ /area/shuttle/salamander_trader_engineering) "iC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -614,8 +587,6 @@ /area/shuttle/salamander_trader) "iJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -645,8 +616,6 @@ /area/shuttle/salamander_trader) "iS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -657,8 +626,6 @@ /area/shuttle/salamander_trader) "iW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -702,18 +669,12 @@ /area/shuttle/salamander_trader) "jT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -732,8 +693,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -756,8 +715,6 @@ /area/shuttle/salamander_trader_engineering) "kL" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/handrail{ @@ -807,8 +764,6 @@ "ld" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -999,8 +954,6 @@ /area/shuttle/salamander_trader_cockpit) "nB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1143,13 +1096,9 @@ /area/shuttle/salamander_trader) "qg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1172,7 +1121,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1252,8 +1200,6 @@ /area/shuttle/salamander_trader) "rw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -1268,8 +1214,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -1337,8 +1281,6 @@ /area/shuttle/salamander_trader_galley) "vI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1359,8 +1301,6 @@ /area/shuttle/salamander_trader) "xL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1378,8 +1318,6 @@ /area/shuttle/salamander_trader) "yv" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1398,8 +1336,6 @@ /area/shuttle/salamander_trader) "zO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1430,7 +1366,6 @@ pixel_y = -24 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1546,8 +1481,6 @@ /area/shuttle/salamander_trader_cockpit) "HG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/handrail{ @@ -1585,8 +1518,6 @@ /area/shuttle/salamander_trader) "IQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1669,8 +1600,6 @@ /area/shuttle/salamander_trader) "No" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1762,8 +1691,6 @@ "Qq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1844,8 +1771,6 @@ /area/shuttle/salamander_trader_q2) "Td" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/railing/grey{ @@ -1902,7 +1827,6 @@ /area/shuttle/salamander_trader) "Vh" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -1960,8 +1884,6 @@ /area/shuttle/salamander_trader) "WN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/multi_tile/metal{ @@ -2040,7 +1962,6 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/alarm/alarms_hidden{ diff --git a/maps/submaps/depreciated_vr/ert_base.dmm b/maps/submaps/depreciated_vr/ert_base.dmm index e16d4b09ed..0e182e0365 100644 --- a/maps/submaps/depreciated_vr/ert_base.dmm +++ b/maps/submaps/depreciated_vr/ert_base.dmm @@ -790,8 +790,8 @@ /obj/item/stack/nanopaste/advanced, /obj/item/stack/nanopaste/advanced, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, -/obj/item/weapon/storage/pill_bottle/iron, -/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/blood_regen, +/obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/storage/pill_bottle/sleevingcure/full, /obj/item/weapon/extinguisher/mini, /obj/item/weapon/extinguisher/mini, diff --git a/maps/submaps/engine_submaps/southern_cross/engine_rust.dmm b/maps/submaps/engine_submaps/southern_cross/engine_rust.dmm index 3a8594844a..dbb3ad0b5f 100644 --- a/maps/submaps/engine_submaps/southern_cross/engine_rust.dmm +++ b/maps/submaps/engine_submaps/southern_cross/engine_rust.dmm @@ -1,217 +1,2373 @@ -"aa" = (/turf/template_noop,/area/template_noop) -"ab" = (/turf/space,/area/space) -"ac" = (/obj/item/weapon/book/manual/rust_engine,/turf/template_noop,/area/template_noop) -"ad" = (/obj/machinery/computer/general_air_control/supermatter_core{dir = 1; frequency = 1438; input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; pressure_setting = 100; sensors = list("engine_sensor" = "Engine Core"); throwpass = 1},/turf/template_noop,/area/template_noop) -"ae" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Radiation Collector Blast Doors"; pixel_x = -6; pixel_y = 7; req_access = list(10)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_x = 0; pixel_y = -3; req_access = list(10)},/obj/machinery/button/remote/blast_door/radproof{pixel_x = 6; pixel_y = 7},/turf/template_noop,/area/template_noop) -"af" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"ag" = (/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/obj/machinery/door/blast/radproof/open,/turf/simulated/floor,/area/engineering/engine_room) -"ah" = (/obj/machinery/computer/fusion_fuel_control{id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) -"ai" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"aj" = (/obj/structure/lattice,/turf/space,/area/space) -"ak" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room) -"al" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"am" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) -"an" = (/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"ao" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; name = "Fusion Core Access"; req_access = list(11)},/obj/machinery/door/blast/radproof/open,/turf/simulated/floor,/area/engineering/engine_room) -"ap" = (/turf/space,/area/engineering/engine_smes) -"aq" = (/turf/simulated/floor,/area/engineering/engine_room) -"ar" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_room) -"as" = (/obj/structure/table/reinforced,/obj/fiftyspawner/deuterium,/turf/simulated/floor,/area/engineering/engine_room) -"at" = (/obj/structure/table/reinforced,/obj/fiftyspawner/tritium,/turf/simulated/floor,/area/engineering/engine_room) -"au" = (/obj/machinery/fusion_fuel_compressor,/turf/simulated/floor,/area/engineering/engine_room) -"av" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space) -"aw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/space,/area/space) -"ax" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/lattice,/turf/space,/area/space) -"ay" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/space,/area/space) -"az" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aA" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aB" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/engineering/engine_room) -"aC" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) -"aD" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/engine_room) -"aE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering,/turf/simulated/floor,/area/engineering/engine_room) -"aF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/lattice,/turf/space,/area/space) -"aG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/structure/lattice,/turf/space,/area/space) -"aH" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/lattice,/turf/space,/area/space) -"aI" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aJ" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) -"aK" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_room) -"aL" = (/obj/machinery/computer/gyrotron_control{id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) -"aM" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/engine_room) -"aN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area/space) -"aO" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/space,/area/space) -"aP" = (/obj/machinery/power/fusion_core/mapped{id_tag = "engine"},/obj/structure/cable/cyan,/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aQ" = (/obj/machinery/computer/fusion_core_control{id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) -"aR" = (/obj/machinery/atmospherics/unary/outlet_injector{unacidable = 1; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aS" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "engine_sensor"; output = 63},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aT" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aU" = (/obj/machinery/camera/network/engine,/obj/machinery/button/remote/airlock{id = "engine_access_hatch"; name = "Door Bolt Control"; pixel_x = -4; pixel_y = 28; req_access = list(10); specialfunctions = 4},/turf/simulated/floor,/area/engineering/engine_room) -"aV" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/rust_engine,/obj/machinery/button/remote/blast_door/radproof{pixel_x = 6; pixel_y = 7},/turf/simulated/floor,/area/engineering/engine_room) -"aW" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aX" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aY" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"aZ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"ba" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"bb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"bc" = (/turf/simulated/wall/r_wall,/area/template_noop) -"bd" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"be" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"bf" = (/obj/machinery/camera/network/engine{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) -"bg" = (/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/turf/simulated/floor,/area/engineering/engine_room) -"bh" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/turf/simulated/floor,/area/engineering/engine_room) -"bi" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor,/area/engineering/engine_room) -"bj" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id_tag = "engine"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"bk" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/engineering/engine_room) -"bl" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor,/area/engineering/engine_room) -"bm" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_room) -"bn" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) -"bo" = (/turf/simulated/floor/tiled/techmaint,/area/template_noop) -"bp" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"bq" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"br" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"bs" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_room) -"bt" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_room) -"bu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor,/area/engineering/engine_room) -"bv" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 5},/turf/simulated/floor,/area/engineering/engine_room) -"bw" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"bx" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor,/area/engineering/engine_room) -"by" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_room) -"bz" = (/turf/simulated/floor,/area/template_noop) -"bA" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/turf/simulated/floor,/area/engineering/engine_room) -"bB" = (/turf/simulated/wall/lead,/area/engineering/engine_room) -"bC" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine radiator viewport shutters."; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutters"; pixel_x = -25; pixel_y = 0; req_access = list(10)},/turf/simulated/floor,/area/engineering/engine_room) -"bD" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) -"bE" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"bF" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"bG" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor,/area/engineering/engine_room) -"bH" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor,/area/engineering/engine_room) -"bI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/engineering/engine_room) -"bJ" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera/network/engine{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"bK" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/structure/lattice,/turf/space,/area/space) -"bL" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/structure/lattice,/turf/space,/area/space) -"bM" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"bN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"bO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/engineering/engine_room) -"bP" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) -"bQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"bR" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"bS" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_room) -"bT" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) -"bU" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) -"bV" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8; icon_state = "map"},/turf/simulated/floor,/area/engineering/engine_room) -"bW" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow,/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Output"; name_tag = "Engine Output"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/engineering/engine_room) -"bX" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"bY" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/turf/space,/area/space) -"bZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"ca" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) -"cb" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/engineering/engine_room) -"cc" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"cd" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"ce" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"cf" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_room) -"cg" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor,/area/engineering/engine_room) -"ch" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) -"ci" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"cj" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/structure/lattice,/turf/space,/area/space) -"ck" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_room) -"cl" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/binary/pump/high_power,/turf/simulated/floor,/area/engineering/engine_room) -"cm" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room) -"cn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/engineering/engine_room) -"co" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor,/area/engineering/engine_room) -"cp" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"cq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"cr" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/engine_room) -"cs" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) -"ct" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) -"cu" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) -"cv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_room) -"cw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/space,/area/space) -"cx" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"cy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"cz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) -"cA" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"cB" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_room) -"cC" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) -"cD" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) -"cE" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) -"cF" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/engine{dir = 8},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor,/area/engineering/engine_room) -"cG" = (/turf/simulated/wall/r_wall,/area/engineering/engine_gas) -"cH" = (/turf/simulated/floor,/area/engineering/engine_gas) -"cI" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = -25; req_access = null; req_one_access = list(11,24)},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor,/area/engineering/engine_gas) -"cJ" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_gas) -"cK" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/engineering/engine_gas) -"cL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor,/area/engineering/engine_room) -"cM" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"cN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/airlock_sensor/airlock_interior{id_tag = "eng_al_int_snsr"; master_tag = "engine_room_airlock"; pixel_x = 22; pixel_y = 0; req_access = list(10)},/turf/simulated/floor,/area/engineering/engine_room) -"cO" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_gas) -"cP" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor,/area/engineering/engine_room) -"cQ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"cR" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) -"cS" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) -"cT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_room) -"cU" = (/turf/simulated/floor/plating,/area/template_noop) -"cV" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/engine_gas) -"cW" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = 25; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/engine_gas) -"cX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor,/area/engineering/engine_gas) -"cY" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_room) -"cZ" = (/obj/machinery/button/remote/blast_door{id = "EngineVent"; name = "Reactor Ventillatory Control"; pixel_x = 0; pixel_y = -25; req_access = list(10)},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) -"da" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) -"db" = (/obj/machinery/atmospherics/valve/digital{dir = 4; name = "Emergency Cooling Valve 2"},/obj/machinery/light,/turf/simulated/floor,/area/engineering/engine_room) -"dc" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor,/area/engineering/engine_room) -"dd" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 9},/turf/simulated/floor,/area/engineering/engine_room) -"de" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor,/area/engineering/engine_room) -"df" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor,/area/engineering/engine_gas) -"dg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/engineering/engine_gas) -"dh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/engineering/engine_gas) -"di" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/engine_gas) -"dj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) -"dk" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor,/area/engineering/engine_gas) -"dl" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/engine_gas) -"dm" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/engineering/engine_gas) -"dn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor,/area/engineering/engine_gas) -"do" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/engine_gas) -"dp" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/engineering/engine_gas) -"dq" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_gas) -"dr" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_gas) -"ds" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest2"; name = "Engine Room Blast Doors"; pixel_x = 25; pixel_y = 0; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/engine_gas) -"dt" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/template_noop) -"du" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/template_noop) -"dv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/turf/simulated/floor/tiled/steel_grid,/area/template_noop) -"dw" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"dx" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id_tag = "engine"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) -"dy" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id_tag = "engine"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"dz" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"dA" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) -"dB" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/lead,/area/engineering/engine_room) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/space, +/area/space) +"ac" = ( +/obj/item/weapon/book/manual/rust_engine, +/turf/template_noop, +/area/template_noop) +"ad" = ( +/obj/machinery/computer/general_air_control/supermatter_core{ + dir = 1; + frequency = 1438; + input_tag = "cooling_in"; + name = "Engine Cooling Control"; + output_tag = "cooling_out"; + pressure_setting = 100; + sensors = list("engine_sensor" = "Engine Core"); + throwpass = 1 + }, +/turf/template_noop, +/area/template_noop) +"ae" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine charging port."; + id = "SupermatterPort"; + name = "Radiation Collector Blast Doors"; + pixel_x = -6; + pixel_y = 7; + req_access = list(10) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id = "EngineBlast"; + name = "Engine Monitoring Room Blast Doors"; + pixel_x = 0; + pixel_y = -3; + req_access = list(10) + }, +/turf/template_noop, +/area/template_noop) +"af" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ag" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + name = "Fusion Core Access"; + req_access = list(11) + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ah" = ( +/obj/machinery/computer/fusion_fuel_control{ + id_tag = "engine" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ai" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"aj" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"ak" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"al" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "EngineVent"; + name = "Reactor Vent"; + p_open = 0 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"am" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"an" = ( +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"ao" = ( +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/engineering/engine_room) +"ap" = ( +/turf/space, +/area/engineering/engine_smes) +"aq" = ( +/turf/simulated/floor, +/area/engineering/engine_room) +"ar" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/engineering/engine_room) +"as" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/deuterium, +/turf/simulated/floor, +/area/engineering/engine_room) +"at" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/tritium, +/turf/simulated/floor, +/area/engineering/engine_room) +"au" = ( +/obj/machinery/fusion_fuel_compressor, +/turf/simulated/floor, +/area/engineering/engine_room) +"av" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space) +"aw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/space, +/area/space) +"ax" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/space, +/area/space) +"az" = ( +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aA" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aC" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aD" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering, +/turf/simulated/floor, +/area/engineering/engine_room) +"aF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/lattice, +/turf/space, +/area/space) +"aG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"aH" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"aI" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aJ" = ( +/obj/machinery/fusion_fuel_injector/mapped{ + dir = 8; + id_tag = "engine" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aK" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aL" = ( +/obj/machinery/computer/gyrotron_control{ + id_tag = "engine" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aM" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aN" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/space, +/area/space) +"aO" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/space, +/area/space) +"aP" = ( +/obj/machinery/power/fusion_core/mapped{ + id_tag = "engine" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aQ" = ( +/obj/machinery/computer/fusion_core_control{ + id_tag = "engine" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aR" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + unacidable = 1; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aS" = ( +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "engine_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aU" = ( +/obj/machinery/camera/network/engine, +/obj/machinery/button/remote/airlock{ + id = "engine_access_hatch"; + name = "Door Bolt Control"; + pixel_x = -4; + pixel_y = 28; + req_access = list(10); + specialfunctions = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"aV" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/rust_engine, +/turf/simulated/floor, +/area/engineering/engine_room) +"aW" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aY" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"aZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"ba" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"bb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"bc" = ( +/turf/simulated/wall/r_wall, +/area/template_noop) +"bd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"be" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/reinforced, +/area/engineering/engine_room) +"bf" = ( +/obj/machinery/camera/network/engine{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/engineering/engine_room) +"bh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/turf/simulated/floor, +/area/engineering/engine_room) +"bi" = ( +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bj" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 1; + id_tag = "engine" + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor, +/area/engineering/engine_room) +"bl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor, +/area/engineering/engine_room) +"bm" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bn" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bo" = ( +/turf/simulated/floor/tiled/techmaint, +/area/template_noop) +"bp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"br" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bs" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bt" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"by" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bz" = ( +/turf/simulated/floor, +/area/template_noop) +"bA" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/machinery/camera/network/engine{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bB" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine radiator viewport shutters."; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutters"; + pixel_x = -25; + pixel_y = 0; + req_access = list(10) + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bE" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor, +/area/engineering/engine_room) +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor, +/area/engineering/engine_room) +"bJ" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bK" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"bL" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"bM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor, +/area/engineering/engine_room) +"bP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/engineering/engine_room) +"bQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor, +/area/engineering/engine_room) +"bT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10; + icon_state = "intact"; + + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_room) +"bU" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_room) +"bV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8; + icon_state = "map"; + + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bW" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Output" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bX" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/space, +/area/space) +"bZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ca" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cb" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor, +/area/engineering/engine_room) +"cc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ce" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cf" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cg" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ch" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ci" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cj" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"ck" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "EngineRadiatorViewport"; + name = "Engine Radiator Viewport Shutter"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/engineering/engine_room) +"cl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power, +/turf/simulated/floor, +/area/engineering/engine_room) +"cm" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/engineering/engine_room) +"cn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor, +/area/engineering/engine_room) +"co" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cs" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"ct" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/space, +/area/space) +"cx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cy" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/engineering/engine_room) +"cA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + icon_state = "intact"; + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor, +/area/engineering/engine_room) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + icon_state = "intact"; + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_room) +"cD" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + icon_state = "map"; + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/engineering/engine_room) +"cE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor, +/area/engineering/engine_room) +"cF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/engine{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cG" = ( +/turf/simulated/wall/r_wall, +/area/engineering/engine_gas) +"cH" = ( +/turf/simulated/floor, +/area/engineering/engine_gas) +"cI" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id = "EngineEmitterPortWest"; + name = "Engine Room Blast Doors"; + pixel_x = 0; + pixel_y = -25; + req_access = null; + req_one_access = list(11,24) + }, +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"cJ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_gas) +"cK" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"cL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor, +/area/engineering/engine_room) +"cM" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "eng_al_int_snsr"; + master_tag = "engine_room_airlock"; + pixel_x = 22; + pixel_y = 0; + req_access = list(10) + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cO" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "EngineEmitterPortWest"; + layer = 3.3; + name = "Engine Gas Storage" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/engineering/engine_gas) +"cP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"cU" = ( +/turf/simulated/floor/plating, +/area/template_noop) +"cV" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor, +/area/engineering/engine_gas) +"cW" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id = "EngineEmitterPortWest"; + name = "Engine Room Blast Doors"; + pixel_x = 0; + pixel_y = 25; + req_access = null; + req_one_access = list(11,24) + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"cX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32; + + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"cY" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor, +/area/engineering/engine_room) +"cZ" = ( +/obj/machinery/button/remote/blast_door{ + id = "EngineVent"; + name = "Reactor Ventillatory Control"; + pixel_x = 0; + pixel_y = -25; + req_access = list(10) + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor, +/area/engineering/engine_room) +"da" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"db" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 2" + }, +/obj/machinery/light, +/turf/simulated/floor, +/area/engineering/engine_room) +"dc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + icon_state = "intact"; + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"dd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + icon_state = "intact"; + dir = 9 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"de" = ( +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"df" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"di" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dj" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE"; + pixel_y = 0 + }, +/turf/simulated/wall/r_wall, +/area/engineering/engine_room) +"dk" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dl" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"do" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dp" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dr" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/engineering/engine_gas) +"ds" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the engine control room blast doors."; + id = "EngineEmitterPortWest2"; + name = "Engine Room Blast Doors"; + pixel_x = 25; + pixel_y = 0; + req_access = null; + req_one_access = list(11,24) + }, +/turf/simulated/floor, +/area/engineering/engine_gas) +"dt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "RADIOACTIVE AREA"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall/r_wall, +/area/template_noop) +"du" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "EngineEmitterPortWest2"; + layer = 3.3; + name = "Engine Gas Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"dv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + icon_state = "pdoor1"; + id = "EngineEmitterPortWest2"; + layer = 3.3; + name = "Engine Gas Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/template_noop) +"dw" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"dx" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 1; + id_tag = "engine" + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/engine_room) +"dy" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + dir = 1; + id_tag = "engine" + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/engine_room) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaabababababababababababababababababababababababababababaaaa -aaabababababababababababababababababababababababababababaaaa -aaaiaiaiaiaiajaiaiaiakakakakalakakakakakakakakakakamababaaaa -aaaiababababajapababakanananananananagaUafarasatauakababaaaa -aaaiabavawawaxawawayakanananazaAaAaAaoaCaDaraqaqaqakababaaaa -aaajajaFaGaxaxaxaxaHakanananaIanananagaJaKaraLaqaMakababaaaa -aaaiabaNaOawaxawawayakanananaPanananagaJaKaraQaqaqakababaaaa -aaaiajaFaGaxaxaxaxaHakanaRanaSanaTanagaJaKarahaqaVakababaaaa -aaaiabaNaOawaxawawayakaWaXaYanaZbabbagaqaKararaEarbcbcbcaaaa -aaaiajaFaGaxaxaxaxaHakanbdanananbeanagaqaKaqaqaqbfbcaaaaaaaa -aaaiabaNaOawaxawawayakbgbhbgbgbgbAbgakaqaKaqaqaqbibcaaaaaaaa -aaaiajaFaGaxaxaxaxaHakdxbpbjbqbjbrdybBaqbmaCaCaCbnboaaaaaaaa -aaaiabaNaOawaxawawayakbJbXdwdzdwdAdwdBaCbsaqaqaqbtboaaaaaaaa -aaaiajaFaGaxaxaxaxaHakaBbkaqaqaqblaqaqaqaqaqaqaqbubcbcbcaaaa -aaaiabaNaOawaxawawayakaqbkaqaqaqbvbwbwbwbwbxaqaqbybzacadaaaa -aaajajaFaGaxaxaxaxaHakbCbDbEbFbFbFbFbFbFbFbGbFbHbIbzaaaaaaaa -aaajajaFbKaxaxaxaxbLbMbNbObObPbQbRbRbSbTbUbVbxbkbWbzaaaeaaaa -aaaiabaNavawaxawawbYbZcacbcccccbaqaqcdcecfcgchbkcibzaaaaaaaa -aaaiajaFbKaxaxaxaxcjckclcmcncncmaqcocpcqcrcsctcucvbzaaaaaaaa -aaaiabaNavawaxawawcwamcxcycyczcycycAcBbTbUcCcDcEcFbcbcbcaaaa -aaaiajaFbKaxaxaxaxcjcGcHcIcJcJcKcHcLcMcecfcgchbkcNbcaaaaaaaa -aaaiabaNavawaxawawcwcGcGcGcOcOcGcGcPcQcRcrcsctcScTcUaaaaaaaa -aaaiajaFbKaxaxaxaxcjcGcVcWcHcHcXcGcYcZdadbdcddaqdebcaaaaaaaa -aaaiabaNavawaxawawcwcGdfcVdgdhdicGakakakdjakakakakbcbcbcaaaa -aaaiajaFbKaxaxaxaxcjcGdkdldmdndocGaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaiabaNavawaxawawcwcGdldpdqdrdscGaaaaaaaaaaaaaaaaaaaaaaaaaa -aaajajaFbKaxaxaxaxcjcGcGcGdtdudvbcaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaiabaOawawaxawawcwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +ab +ab +ai +ai +ai +aj +ai +ai +ai +ai +ai +ai +ai +ai +ai +aj +aj +ai +ai +ai +ai +ai +ai +ai +ai +ai +aj +ai +aa +"} +(3,1,1) = {" +aa +ab +ab +ai +ab +ab +aj +ab +aj +ab +aj +ab +aj +ab +aj +ab +aj +aj +ab +aj +ab +aj +ab +aj +ab +aj +ab +aj +ab +aa +"} +(4,1,1) = {" +aa +ab +ab +ai +ab +av +aF +aN +aF +aN +aF +aN +aF +aN +aF +aN +aF +aF +aN +aF +aN +aF +aN +aF +aN +aF +aN +aF +aO +aa +"} +(5,1,1) = {" +aa +ab +ab +ai +ab +aw +aG +aO +aG +aO +aG +aO +aG +aO +aG +aO +aG +bK +av +bK +av +bK +av +bK +av +bK +av +bK +aw +aa +"} +(6,1,1) = {" +aa +ab +ab +ai +ab +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +aa +"} +(7,1,1) = {" +aa +ab +ab +aj +aj +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +"} +(8,1,1) = {" +aa +ab +ab +ai +ap +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +aa +"} +(9,1,1) = {" +aa +ab +ab +ai +ab +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +ax +aw +aa +"} +(10,1,1) = {" +aa +ab +ab +ai +ab +ay +aH +ay +aH +ay +aH +ay +aH +ay +aH +ay +aH +bL +bY +cj +cw +cj +cw +cj +cw +cj +cw +cj +cw +aa +"} +(11,1,1) = {" +aa +ab +ab +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bM +bZ +ck +am +cG +cG +cG +cG +cG +cG +cG +aa +aa +"} +(12,1,1) = {" +aa +ab +ab +ak +an +an +an +an +an +aW +an +ao +dx +bA +aB +aq +bC +bN +ca +cl +cx +cH +cG +cV +df +dk +dl +cG +aa +aa +"} +(13,1,1) = {" +aa +ab +ab +ak +an +an +an +an +aR +aX +bd +bg +bp +bB +bk +bk +bD +bO +cb +cm +cy +cI +cG +cW +cV +dl +dp +cG +aa +aa +"} +(14,1,1) = {" +aa +ab +ab +ak +an +an +an +an +an +aY +an +ao +bj +bJ +aq +aq +bE +bO +cc +cn +cy +cJ +cO +cH +dg +dm +dq +dt +aa +aa +"} +(15,1,1) = {" +aa +ab +ab +al +an +az +aI +aP +aS +an +an +ao +bq +bX +aq +aq +bF +bP +cc +cn +cz +cJ +cO +cH +dh +dn +dr +du +aa +aa +"} +(16,1,1) = {" +aa +ab +ab +ak +an +aA +an +an +an +aZ +an +ao +bj +bJ +aq +aq +bF +bQ +cb +cm +cy +cK +cG +cX +di +do +ds +dv +aa +aa +"} +(17,1,1) = {" +aa +ab +ab +ak +an +aA +an +an +aT +ba +be +bh +br +dw +bl +bv +bF +bR +aq +aq +cy +cH +cG +cG +cG +cG +cG +bc +aa +aa +"} +(18,1,1) = {" +aa +ab +ab +ak +an +aA +an +an +an +bb +an +ao +dy +bJ +aq +bw +bF +bR +aq +co +cA +cL +cP +cY +ak +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +ab +ab +ak +ao +ag +ao +ao +ao +ao +ao +ak +aq +aC +aq +bw +bF +bS +cd +cp +cB +cM +cQ +cZ +ak +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +ab +ab +ak +aU +aC +aJ +aJ +aJ +aq +aq +aq +aq +aC +aq +bw +bF +bT +ce +cq +bT +ce +cR +da +ak +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +ab +ab +ak +af +aD +aK +aK +aK +aK +aK +aK +bm +bs +aq +bw +bF +bU +cf +cr +bU +cf +cr +db +dj +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +ab +ab +ak +ar +aE +ar +ar +ar +ar +aq +aq +aC +aq +aq +bx +bG +bV +cg +cs +cC +cg +cs +dc +ak +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +ab +ab +ak +as +aq +aL +aQ +ah +ar +aq +aq +aC +aq +aq +aq +bF +bx +ch +ct +cD +ch +ct +dd +ak +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +ab +ab +ak +at +aq +aq +aq +aq +ar +aq +aq +aC +aq +aq +aq +bH +bk +bk +cu +cE +bk +cS +aq +ak +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +ab +ab +ak +au +aq +aM +aq +aV +ar +bf +bi +bn +bt +bu +by +bI +bW +ci +cv +cF +cN +cT +de +ak +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +ab +ab +am +ak +ak +ak +ak +ak +bc +bc +bc +bo +bo +bc +bz +bz +bz +bz +bz +bc +bc +cU +bc +bc +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +bc +aa +aa +aa +aa +bc +ac +aa +aa +aa +aa +bc +aa +aa +aa +bc +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +bc +aa +aa +aa +aa +bc +ad +aa +ae +aa +aa +bc +aa +aa +aa +bc +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa "} diff --git a/maps/submaps/engine_submaps/southern_cross/engine_singulo.dmm b/maps/submaps/engine_submaps/southern_cross/engine_singulo.dmm index 805e0d6396..b6e9a58f97 100644 --- a/maps/submaps/engine_submaps/southern_cross/engine_singulo.dmm +++ b/maps/submaps/engine_submaps/southern_cross/engine_singulo.dmm @@ -35,7 +35,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact"; - + }, /turf/simulated/floor, /area/engineering/engine_gas) @@ -48,37 +48,27 @@ /area/space) "ak" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "al" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/space) "am" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "an" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -103,7 +93,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4; icon_state = "map"; - + }, /turf/simulated/floor, /area/engineering/engine_gas) @@ -126,8 +116,6 @@ /area/space) "as" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust/mono_rusted1, @@ -151,8 +139,6 @@ name = "Engine North Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -171,8 +157,6 @@ pixel_y = -25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -189,8 +173,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -206,8 +188,6 @@ req_one_access = list(10,11) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -221,7 +201,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact"; - + }, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -242,8 +222,6 @@ /area/engineering/engine_room) "ax" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -256,8 +234,6 @@ /area/engineering/engine_room) "ay" = ( /obj/structure/cable/cyan{ - d1 = 0; - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -269,8 +245,6 @@ /area/engineering/engine_gas) "az" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/sensor{ @@ -278,7 +252,6 @@ name_tag = "Engine Power" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -320,8 +293,6 @@ /area/engineering/engine_room) "aE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -334,8 +305,6 @@ /area/engineering/engine_room) "aF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering, @@ -355,7 +324,6 @@ "aH" = ( /obj/machinery/power/rad_collector, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -365,8 +333,6 @@ /area/engineering/engine_room) "aI" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/blast/regular{ @@ -389,13 +355,9 @@ /area/engineering/engine_room) "aK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -408,8 +370,6 @@ /area/engineering/engine_room) "aL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -425,8 +385,6 @@ /area/engineering/engine_room) "aM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -437,7 +395,7 @@ dir = 1; icon_state = "borderfloor"; pixel_y = 0; - + }, /obj/effect/floor_decal/corner/yellow/border{ dir = 1 @@ -452,13 +410,9 @@ /area/engineering/engine_room) "aN" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -471,7 +425,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloor{ @@ -497,25 +450,18 @@ "aP" = ( /obj/machinery/power/rad_collector, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/engineering/engine_room) "aQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular{ @@ -534,26 +480,20 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact"; - + }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "aS" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -563,8 +503,6 @@ /area/engineering/engine_room) "aT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -574,8 +512,6 @@ /area/engineering/engine_room) "aU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -595,13 +531,9 @@ /area/engineering/engine_room) "aV" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -613,24 +545,18 @@ /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4; icon_state = "map"; - + }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "aW" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -644,8 +570,6 @@ /area/space) "aY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/blast/regular{ @@ -676,8 +600,6 @@ /area/engineering/engine_room) "ba" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -699,13 +621,9 @@ /area/engineering/engine_room) "bd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -718,13 +636,9 @@ /area/engineering/engine_room) "be" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -770,8 +684,6 @@ /area/submap/pa_room) "bj" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_engineering, @@ -779,8 +691,6 @@ /area/submap/pa_room) "bk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -793,8 +703,6 @@ /area/engineering/engine_room) "bl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -865,15 +773,12 @@ /area/submap/pa_room) "bs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/submap/pa_room) "bt" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -952,15 +857,12 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/submap/pa_room) "bD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -970,8 +872,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1036,15 +936,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/submap/pa_room) "bM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -1054,16 +951,12 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "bN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1196,8 +1089,6 @@ /area/submap/pa_room) "cb" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -1255,8 +1146,6 @@ /area/engineering/engine_room) "cg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1269,18 +1158,12 @@ /area/engineering/engine_room) "ch" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/blast/regular{ @@ -1296,8 +1179,6 @@ /area/engineering/engine_room) "ci" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -1310,8 +1191,6 @@ /area/engineering/engine_room) "cj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -1331,8 +1210,6 @@ /area/engineering/engine_room) "ck" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1345,14 +1222,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact"; - + }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "cl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -1372,7 +1247,6 @@ "cm" = ( /obj/machinery/power/rad_collector, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small, @@ -1380,8 +1254,6 @@ /area/engineering/engine_room) "cn" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor/corner, @@ -1390,8 +1262,6 @@ /area/engineering/engine_room) "co" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -1401,8 +1271,6 @@ /area/engineering/engine_room) "cp" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1414,8 +1282,6 @@ /area/engineering/engine_room) "cq" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -1429,8 +1295,6 @@ /area/engineering/engine_room) "cr" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1450,7 +1314,6 @@ state = 1 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -1473,8 +1336,6 @@ name = "Engine South Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -1492,8 +1353,6 @@ pixel_y = 25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -1513,8 +1372,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -1530,8 +1387,6 @@ /area/engineering/engine_room) "cw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -1545,7 +1400,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; icon_state = "intact"; - + }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -1558,8 +1413,6 @@ /area/engineering/engine_room) "cx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1572,29 +1425,21 @@ /area/engineering/engine_room) "cy" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "cz" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "cA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1637,8 +1482,6 @@ /area/space) "cG" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/blast/regular{ diff --git a/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm b/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm index 1f81261b4f..6f64565c87 100644 --- a/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm +++ b/maps/submaps/engine_submaps/southern_cross/engine_tesla.dmm @@ -28,7 +28,6 @@ }, /obj/effect/floor_decal/corner/yellow/bordercorner, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -38,8 +37,6 @@ /area/engineering/engine_room) "ah" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering, @@ -64,7 +61,6 @@ /area/engineering/engine_waste) "al" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/emitter{ @@ -94,8 +90,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -111,16 +105,12 @@ /area/engineering/engine_room) "ar" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/space) "as" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -152,8 +142,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -179,7 +167,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -195,8 +182,6 @@ /area/engineering/engine_room) "az" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -223,8 +208,6 @@ name = "Engine North Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -240,8 +223,6 @@ req_one_access = list(10,11) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -273,8 +254,6 @@ /area/engineering/engine_room) "aD" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -290,16 +269,12 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "aG" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -310,8 +285,6 @@ "aH" = ( /obj/machinery/door/airlock/glass_engineering, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -323,13 +296,10 @@ name_tag = "Engine Power" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -349,8 +319,6 @@ "aM" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -382,13 +350,9 @@ /area/engineering/engine_room) "aQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -401,8 +365,6 @@ /area/engineering/engine_room) "aR" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -418,8 +380,6 @@ /area/engineering/engine_room) "aS" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -443,14 +403,10 @@ /area/engineering/engine_room) "aU" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -473,7 +429,6 @@ "aX" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, @@ -510,8 +465,6 @@ /area/engineering/engine_room) "bc" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -524,8 +477,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -535,8 +486,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -573,34 +522,24 @@ /area/space) "bk" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "bl" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "bm" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -627,16 +566,12 @@ /area/space) "bq" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, /area/space) "br" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_engineering, @@ -653,8 +588,6 @@ /area/space) "bt" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust/mono_rusted1, @@ -672,8 +605,6 @@ pixel_y = -25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -697,8 +628,6 @@ /area/submap/pa_room) "bz" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -723,8 +652,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -743,8 +670,6 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -792,8 +717,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -881,7 +804,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -904,7 +826,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -923,8 +844,6 @@ /area/space) "cc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -943,8 +862,6 @@ /area/engineering/engine_room) "cf" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -957,8 +874,6 @@ /area/engineering/engine_room) "cg" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -999,8 +914,6 @@ /area/engineering/engine_room) "cj" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1010,21 +923,15 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "ck" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1032,27 +939,21 @@ "cl" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/space) "cm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/submap/pa_room) "cn" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -1062,8 +963,6 @@ /area/engineering/engine_room) "co" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/clothing/head/hardhat, @@ -1071,8 +970,6 @@ /area/space) "cp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1088,8 +985,6 @@ /area/engineering/engine_room) "cq" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -1111,8 +1006,6 @@ /area/template_noop) "cs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1141,8 +1034,6 @@ /area/engineering/engine_room) "cw" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -1161,16 +1052,12 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "cy" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -1213,8 +1100,6 @@ name = "Engine South Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -1231,8 +1116,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -1248,15 +1131,12 @@ /area/engineering/engine_room) "cC" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "cD" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -1278,8 +1158,6 @@ /area/engineering/engine_room) "cF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -1321,7 +1199,6 @@ /area/submap/pa_room) "cI" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/tesla_coil, @@ -1365,8 +1242,6 @@ /area/template_noop) "cM" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -1385,8 +1260,6 @@ /area/engineering/engine_room) "cN" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -1411,16 +1284,12 @@ req_access = list(10) }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/submap/pa_room) "hf" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1465,8 +1334,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -1479,13 +1346,9 @@ /area/engineering/engine_room) "jD" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -1504,8 +1367,6 @@ /area/space) "qP" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -1524,8 +1385,6 @@ /area/engineering/engine_room) "rS" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -1538,8 +1397,6 @@ /area/engineering/engine_room) "rU" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -1552,24 +1409,18 @@ /area/engineering/engine_room) "rV" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, /area/space) "sq" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, /area/submap/pa_room) "vq" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -1596,8 +1447,6 @@ /area/submap/pa_room) "yC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1607,8 +1456,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1624,8 +1471,6 @@ pixel_y = 25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -1649,16 +1494,12 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/submap/pa_room) "An" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1666,21 +1507,15 @@ /area/space) "Bi" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "Bp" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -1733,8 +1568,6 @@ /area/engineering/engine_room) "Ms" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -1744,8 +1577,6 @@ /area/engineering/engine_room) "My" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor, @@ -1756,15 +1587,12 @@ /obj/structure/cable/yellow, /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, /area/space) "Of" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor{ @@ -1777,8 +1605,6 @@ /area/engineering/engine_room) "SX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -1788,8 +1614,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1797,16 +1621,12 @@ "Tu" = ( /obj/effect/floor_decal/techfloor/orange/corner, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/pa_room) "TM" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ diff --git a/maps/submaps/engine_submaps_vr/tether/engine_rust.dmm b/maps/submaps/engine_submaps_vr/tether/engine_rust.dmm index e6b8ed1c95..e8c813fe05 100644 --- a/maps/submaps/engine_submaps_vr/tether/engine_rust.dmm +++ b/maps/submaps/engine_submaps_vr/tether/engine_rust.dmm @@ -46,8 +46,6 @@ /area/engineering/engine_room) "ag" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ @@ -156,16 +154,12 @@ /area/space) "az" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/reinforced, /area/engineering/engine_room) "aA" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced, @@ -178,16 +172,12 @@ /area/engineering/engine_room) "aC" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/engineering/engine_room) "aD" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor, @@ -218,8 +208,6 @@ /area/space) "aI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/reinforced, @@ -233,8 +221,6 @@ /area/engineering/engine_room) "aK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -384,7 +370,6 @@ /area/engineering/engine_room) "bi" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -400,7 +385,6 @@ id_tag = "engine" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -418,26 +402,18 @@ /area/engineering/engine_room) "bm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/engineering/engine_room) "bn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -467,24 +443,18 @@ /area/engineering/engine_room) "bs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, /area/engineering/engine_room) "bt" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/engineering/engine_room) "bu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -512,8 +482,6 @@ /area/engineering/engine_room) "by" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -523,8 +491,6 @@ /area/template_noop) "bA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/camera/network/engine{ @@ -537,8 +503,6 @@ /area/engineering/engine_room) "bB" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, @@ -593,8 +557,6 @@ /area/engineering/engine_room) "bI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -602,13 +564,9 @@ /area/engineering/engine_room) "bJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -711,7 +669,6 @@ /area/engineering/engine_room) "bW" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow, @@ -729,8 +686,6 @@ /area/engineering/engine_room) "bX" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -802,7 +757,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -822,8 +776,6 @@ /area/engineering/engine_room) "ci" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -905,8 +857,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -919,8 +869,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -934,8 +882,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -945,21 +891,15 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/engineering/engine_room) "cv" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -1026,8 +966,6 @@ /area/engineering/engine_room) "cF" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/engine{ @@ -1083,8 +1021,6 @@ /area/engineering/engine_room) "cN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airlock_sensor/airlock_interior{ @@ -1134,16 +1070,12 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/engineering/engine_room) "cT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -1307,7 +1239,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -1344,8 +1275,6 @@ "ds" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/remote/blast_door{ @@ -1381,8 +1310,6 @@ "dv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular{ @@ -1395,8 +1322,6 @@ /area/template_noop) "dw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -1411,7 +1336,6 @@ id_tag = "engine" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -1428,7 +1352,6 @@ id_tag = "engine" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning{ diff --git a/maps/submaps/engine_submaps_vr/tether/engine_singulo.dmm b/maps/submaps/engine_submaps_vr/tether/engine_singulo.dmm index fa74a3912b..b9e97ebe72 100644 --- a/maps/submaps/engine_submaps_vr/tether/engine_singulo.dmm +++ b/maps/submaps/engine_submaps_vr/tether/engine_singulo.dmm @@ -46,37 +46,27 @@ /area/space) "ak" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "al" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/space) "am" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "an" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -120,8 +110,6 @@ /area/space) "as" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust/mono_rusted1, @@ -145,8 +133,6 @@ name = "Engine North Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -163,8 +149,6 @@ pixel_y = -25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -181,8 +165,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -198,8 +180,6 @@ req_one_access = list(10,11) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -231,8 +211,6 @@ /area/engineering/engine_room) "ax" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -245,7 +223,6 @@ /area/engineering/engine_room) "ay" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -257,8 +234,6 @@ /area/engineering/engine_gas) "az" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/sensor{ @@ -266,7 +241,6 @@ name_tag = "Engine Power" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -304,8 +278,6 @@ /area/engineering/engine_room) "aE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -318,8 +290,6 @@ /area/engineering/engine_room) "aF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering, @@ -338,7 +308,6 @@ "aH" = ( /obj/machinery/power/rad_collector, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -348,8 +317,6 @@ /area/engineering/engine_room) "aI" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/blast/regular{ @@ -372,13 +339,9 @@ /area/engineering/engine_room) "aK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -391,8 +354,6 @@ /area/engineering/engine_room) "aL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -408,8 +369,6 @@ /area/engineering/engine_room) "aM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -432,13 +391,9 @@ /area/engineering/engine_room) "aN" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -451,7 +406,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloor{ @@ -477,25 +431,18 @@ "aP" = ( /obj/machinery/power/rad_collector, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/engineering/engine_room) "aQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular{ @@ -514,8 +461,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -525,13 +470,9 @@ /area/engineering/engine_room) "aS" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -541,8 +482,6 @@ /area/engineering/engine_room) "aT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -552,8 +491,6 @@ /area/engineering/engine_room) "aU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -572,13 +509,9 @@ /area/engineering/engine_room) "aV" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -594,18 +527,12 @@ /area/engineering/engine_room) "aW" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -619,8 +546,6 @@ /area/space) "aY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/blast/regular{ @@ -651,8 +576,6 @@ /area/engineering/engine_room) "ba" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -674,13 +597,9 @@ /area/engineering/engine_room) "bd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -693,13 +612,9 @@ /area/engineering/engine_room) "be" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -742,8 +657,6 @@ /area/submap/pa_room) "bj" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_engineering, @@ -751,8 +664,6 @@ /area/submap/pa_room) "bk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -765,8 +676,6 @@ /area/engineering/engine_room) "bl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -834,15 +743,12 @@ /area/submap/pa_room) "bs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/submap/pa_room) "bt" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -920,15 +826,12 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/submap/pa_room) "bD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -938,8 +841,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1004,15 +905,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/submap/pa_room) "bM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -1022,16 +920,12 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "bN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1159,8 +1053,6 @@ /area/submap/pa_room) "cb" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -1216,8 +1108,6 @@ /area/engineering/engine_room) "cg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1230,18 +1120,12 @@ /area/engineering/engine_room) "ch" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/blast/regular{ @@ -1257,8 +1141,6 @@ /area/engineering/engine_room) "ci" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -1271,8 +1153,6 @@ /area/engineering/engine_room) "cj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -1291,8 +1171,6 @@ /area/engineering/engine_room) "ck" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1308,8 +1186,6 @@ /area/engineering/engine_room) "cl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -1329,7 +1205,6 @@ "cm" = ( /obj/machinery/power/rad_collector, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small, @@ -1337,8 +1212,6 @@ /area/engineering/engine_room) "cn" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor/corner, @@ -1347,8 +1220,6 @@ /area/engineering/engine_room) "co" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -1358,8 +1229,6 @@ /area/engineering/engine_room) "cp" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1371,8 +1240,6 @@ /area/engineering/engine_room) "cq" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -1386,8 +1253,6 @@ /area/engineering/engine_room) "cr" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1407,7 +1272,6 @@ state = 1 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -1430,8 +1294,6 @@ name = "Engine South Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -1447,8 +1309,6 @@ pixel_y = 25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -1468,8 +1328,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -1485,8 +1343,6 @@ /area/engineering/engine_room) "cw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -1510,8 +1366,6 @@ /area/engineering/engine_room) "cx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1524,29 +1378,21 @@ /area/engineering/engine_room) "cy" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "cz" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "cA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1587,8 +1433,6 @@ /area/space) "cG" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/blast/regular{ diff --git a/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm b/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm index 8180975429..a6d3a9d819 100644 --- a/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm +++ b/maps/submaps/engine_submaps_vr/tether/engine_sme.dmm @@ -209,7 +209,6 @@ /area/engineering/engine_room) "aK" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -313,13 +312,9 @@ /area/engineering/engine_room) "aU" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -393,7 +388,6 @@ state = 2 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -412,8 +406,6 @@ /area/engineering/engine_room) "bc" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -426,8 +418,6 @@ /area/engineering/engine_room) "bd" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -435,19 +425,15 @@ "be" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/engineering/engine_room) "bf" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/sensor{ @@ -458,13 +444,9 @@ /area/engineering/engine_room) "bg" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -564,8 +546,6 @@ /area/engineering/engine_room) "bq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -675,8 +655,6 @@ /area/engineering/engine_room) "by" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -785,8 +763,6 @@ /area/engineering/engine_room) "bL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -930,7 +906,6 @@ /area/engineering/engine_room) "cc" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/yellow, @@ -1011,7 +986,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -1031,8 +1005,6 @@ /area/engineering/engine_room) "cn" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1114,8 +1086,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -1128,8 +1098,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -1143,8 +1111,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -1154,21 +1120,15 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/engineering/engine_room) "cA" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -1222,8 +1182,6 @@ /area/engineering/engine_room) "cI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/engine{ @@ -1283,8 +1241,6 @@ /area/engineering/engine_room) "cQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airlock_sensor/airlock_interior{ @@ -1334,16 +1290,12 @@ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/engineering/engine_room) "cW" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -1504,7 +1456,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -1541,8 +1492,6 @@ "dv" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/remote/blast_door{ @@ -1578,8 +1527,6 @@ "dy" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular{ diff --git a/maps/submaps/engine_submaps_vr/tether/engine_tesla.dmm b/maps/submaps/engine_submaps_vr/tether/engine_tesla.dmm index d77345121a..a6ab2b04d8 100644 --- a/maps/submaps/engine_submaps_vr/tether/engine_tesla.dmm +++ b/maps/submaps/engine_submaps_vr/tether/engine_tesla.dmm @@ -48,37 +48,27 @@ /area/space) "ak" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "al" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/space) "am" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "an" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -125,8 +115,6 @@ /area/space) "as" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust/mono_rusted1, @@ -150,8 +138,6 @@ name = "Engine North Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -168,8 +154,6 @@ pixel_y = -25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -186,8 +170,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -203,8 +185,6 @@ req_one_access = list(10,11) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -236,8 +216,6 @@ /area/engineering/engine_room) "ax" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -250,7 +228,6 @@ /area/engineering/engine_room) "ay" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -262,8 +239,6 @@ /area/engineering/engine_gas) "az" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/sensor{ @@ -271,7 +246,6 @@ name_tag = "Engine Power" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -309,8 +283,6 @@ /area/engineering/engine_room) "aE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -323,8 +295,6 @@ /area/engineering/engine_room) "aF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering, @@ -365,13 +335,9 @@ /area/engineering/engine_room) "aK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -384,8 +350,6 @@ /area/engineering/engine_room) "aL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -401,8 +365,6 @@ /area/engineering/engine_room) "aM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -425,13 +387,9 @@ /area/engineering/engine_room) "aN" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -445,7 +403,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloor{ @@ -470,13 +427,9 @@ /area/engineering/engine_room) "aP" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -489,8 +442,6 @@ /area/engineering/engine_room) "aR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -506,8 +457,6 @@ /area/engineering/engine_room) "aT" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -532,8 +481,6 @@ /area/engineering/engine_room) "aV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -549,18 +496,12 @@ /area/engineering/engine_room) "aW" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -593,8 +534,6 @@ /area/submap/pa_room) "aZ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -607,8 +546,6 @@ /area/engineering/engine_room) "ba" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -647,13 +584,9 @@ /area/submap/pa_room) "be" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -679,19 +612,15 @@ "bj" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/space) "bk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -704,8 +633,6 @@ /area/engineering/engine_room) "bl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -752,8 +679,6 @@ /area/submap/pa_room) "bp" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/clothing/head/hardhat, @@ -779,15 +704,12 @@ /area/submap/pa_room) "bs" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/submap/pa_room) "bt" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -842,8 +764,6 @@ /area/submap/pa_room) "bA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_engineering, @@ -859,15 +779,12 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/submap/pa_room) "bD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -877,8 +794,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -901,8 +816,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/window/reinforced{ @@ -963,15 +876,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/submap/pa_room) "bM" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -981,16 +891,12 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "bN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1044,8 +950,6 @@ /area/submap/pa_room) "bQ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1074,8 +978,6 @@ "bW" = ( /obj/effect/floor_decal/techfloor/orange/corner, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1085,8 +987,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -1107,7 +1007,6 @@ /area/submap/pa_room) "bZ" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/tesla_coil, @@ -1116,16 +1015,12 @@ /area/space) "ca" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/submap/pa_room) "cb" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -1163,8 +1058,6 @@ req_access = list(10) }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1188,8 +1081,6 @@ /area/engineering/engine_room) "cg" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1205,8 +1096,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -1220,8 +1109,6 @@ /area/engineering/engine_room) "cj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -1240,8 +1127,6 @@ /area/engineering/engine_room) "ck" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1257,8 +1142,6 @@ /area/engineering/engine_room) "cl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -1291,8 +1174,6 @@ /area/submap/pa_room) "cn" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor/corner, @@ -1302,15 +1183,12 @@ "co" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, /area/space) "cp" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1322,8 +1200,6 @@ /area/engineering/engine_room) "cq" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -1337,8 +1213,6 @@ /area/engineering/engine_room) "cr" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1373,8 +1247,6 @@ name = "Engine South Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -1390,8 +1262,6 @@ pixel_y = 25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -1411,8 +1281,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -1428,8 +1296,6 @@ /area/engineering/engine_room) "cw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -1453,8 +1319,6 @@ /area/engineering/engine_room) "cx" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1467,29 +1331,21 @@ /area/engineering/engine_room) "cy" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "cz" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "cA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/rust, @@ -1538,15 +1394,12 @@ /obj/structure/cable/yellow, /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, /area/space) "cG" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1554,8 +1407,6 @@ "cH" = ( /obj/machinery/door/airlock/glass_engineering, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -1563,8 +1414,6 @@ /area/submap/pa_room) "cI" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1575,15 +1424,12 @@ /area/space) "cK" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/space) "cL" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/emitter{ @@ -1596,8 +1442,6 @@ /area/space) "cM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -1607,16 +1451,12 @@ /area/engineering/engine_room) "cN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, /area/space) "cQ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, diff --git a/maps/submaps/pois_vr/aerostat/CaveS.dmm b/maps/submaps/pois_vr/aerostat/CaveS.dmm index 5bf4b8e655..1596347a96 100644 --- a/maps/submaps/pois_vr/aerostat/CaveS.dmm +++ b/maps/submaps/pois_vr/aerostat/CaveS.dmm @@ -73,7 +73,6 @@ /obj/machinery/power/port_gen/pacman, /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /turf/simulated/floor, /area/submap/virgo2/CaveS) @@ -95,8 +94,6 @@ /area/submap/virgo2/CaveS) "B" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -117,16 +114,12 @@ /area/submap/virgo2/CaveS) "E" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, /area/submap/virgo2/CaveS) "F" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -135,7 +128,6 @@ "G" = ( /obj/machinery/computer/communications, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, diff --git a/maps/submaps/pois_vr/aerostat/DJOutpost1.dmm b/maps/submaps/pois_vr/aerostat/DJOutpost1.dmm index e8524d220a..303e7e9ecf 100644 --- a/maps/submaps/pois_vr/aerostat/DJOutpost1.dmm +++ b/maps/submaps/pois_vr/aerostat/DJOutpost1.dmm @@ -62,8 +62,6 @@ /obj/machinery/computer/message_monitor, /obj/item/weapon/paper/monitorkey, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -72,8 +70,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -82,8 +78,6 @@ "o" = ( /obj/effect/overlay/snow/floor, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor{ @@ -118,8 +112,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -127,8 +119,6 @@ "u" = ( /obj/effect/overlay/snow/floor, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/crate, diff --git a/maps/submaps/pois_vr/aerostat/DJOutpost2.dmm b/maps/submaps/pois_vr/aerostat/DJOutpost2.dmm index 96b1221ee1..919640494d 100644 --- a/maps/submaps/pois_vr/aerostat/DJOutpost2.dmm +++ b/maps/submaps/pois_vr/aerostat/DJOutpost2.dmm @@ -36,8 +36,6 @@ /area/submap/virgo2/DJOutpost1) "h" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/loot_pile/maint/technical, @@ -56,8 +54,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood/broken, @@ -130,8 +126,6 @@ icon_state = "medium" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, diff --git a/maps/submaps/pois_vr/aerostat/DoomP.dmm b/maps/submaps/pois_vr/aerostat/DoomP.dmm index f3805539d0..46792d490d 100644 --- a/maps/submaps/pois_vr/aerostat/DoomP.dmm +++ b/maps/submaps/pois_vr/aerostat/DoomP.dmm @@ -119,7 +119,6 @@ "aE" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -127,12 +126,9 @@ "aF" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -145,7 +141,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -153,7 +148,6 @@ "aH" = ( /obj/structure/cable{ icon_state = "0-2"; - d2 = 2 }, /obj/machinery/power/port_gen/pacman, /turf/simulated/floor/plating, @@ -213,7 +207,6 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/virgo2/DoomP) @@ -224,11 +217,8 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -236,8 +226,6 @@ /area/submap/virgo2/DoomP) "aT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -246,8 +234,6 @@ /area/submap/virgo2/DoomP) "aU" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor/grid, diff --git a/maps/submaps/pois_vr/aerostat/Lab1.dmm b/maps/submaps/pois_vr/aerostat/Lab1.dmm index 3125ff8a7a..f6e68547bf 100644 --- a/maps/submaps/pois_vr/aerostat/Lab1.dmm +++ b/maps/submaps/pois_vr/aerostat/Lab1.dmm @@ -126,14 +126,11 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/tiled/steel_dirty, /area/submap/virgo2/Lab1) "v" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -142,7 +139,6 @@ "w" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/steel_dirty, diff --git a/maps/submaps/pois_vr/aerostat/Rockybase.dmm b/maps/submaps/pois_vr/aerostat/Rockybase.dmm index 2aacf9dde6..ba991da515 100644 --- a/maps/submaps/pois_vr/aerostat/Rockybase.dmm +++ b/maps/submaps/pois_vr/aerostat/Rockybase.dmm @@ -596,16 +596,12 @@ /area/submap/virgo2/Rockybase) "cd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating/virgo2, /area/submap/virgo2/Rockybase) "ce" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, @@ -613,7 +609,6 @@ /area/submap/virgo2/Rockybase) "cf" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/buildable/point_of_interest, @@ -670,7 +665,6 @@ "cq" = ( /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /obj/machinery/light{ dir = 8 @@ -685,19 +679,13 @@ /area/submap/virgo2/Rockybase) "cr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8"; pixel_x = 0 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating/virgo2, @@ -708,7 +696,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/buildable/point_of_interest, @@ -741,8 +728,6 @@ /area/submap/virgo2/Rockybase) "cx" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating/virgo2, diff --git a/maps/submaps/pois_vr/debris_field/derelict.dmm b/maps/submaps/pois_vr/debris_field/derelict.dmm index cbc325c351..b788ba4434 100644 --- a/maps/submaps/pois_vr/debris_field/derelict.dmm +++ b/maps/submaps/pois_vr/debris_field/derelict.dmm @@ -113,8 +113,6 @@ /area/submap/debrisfield/derelict/bridge) "as" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -136,8 +134,6 @@ "ax" = ( /obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/bluegrid, @@ -148,8 +144,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -166,8 +160,6 @@ /area/submap/debrisfield/derelict/interior) "aA" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -177,8 +169,6 @@ "aB" = ( /obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -186,8 +176,6 @@ /area/submap/debrisfield/derelict/interior) "aC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -200,8 +188,6 @@ "aE" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -216,8 +202,6 @@ /area/submap/debrisfield/derelict/interior) "aH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -236,7 +220,6 @@ /area/space) "aL" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -261,8 +244,6 @@ "aN" = ( /obj/random/humanoidremains, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -372,8 +353,6 @@ /area/submap/debrisfield/derelict/interior) "bj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -398,24 +377,18 @@ /area/submap/debrisfield/derelict/interior) "bo" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/reinforced, /area/submap/debrisfield/derelict/interior) "bp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced, /area/submap/debrisfield/derelict/interior) "bq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/reinforced, @@ -426,8 +399,6 @@ /area/submap/debrisfield/derelict/interior) "bs" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -435,14 +406,10 @@ /area/submap/debrisfield/derelict/interior) "bt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -473,8 +440,6 @@ /area/submap/debrisfield/derelict/interior) "bz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/reinforced, @@ -504,8 +469,6 @@ "bF" = ( /obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/reinforced, @@ -550,16 +513,12 @@ /area/submap/debrisfield/derelict/interior) "bL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty, @@ -568,16 +527,12 @@ /obj/effect/map_effect/interval/effect_emitter/sparks/frequent, /obj/structure/door_assembly/door_assembly_alien, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, /area/submap/debrisfield/derelict/interior) "bN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -591,8 +546,6 @@ "bP" = ( /obj/random/humanoidremains, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -600,8 +553,6 @@ "bQ" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -613,8 +564,6 @@ "bS" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced, @@ -630,8 +579,6 @@ "bV" = ( /obj/item/xenos_claw, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -657,28 +604,20 @@ /area/submap/debrisfield/derelict/interior) "bZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty, /area/submap/debrisfield/derelict/interior) "ca" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -692,8 +631,6 @@ /area/submap/debrisfield/derelict/interior) "cd" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, @@ -735,8 +672,6 @@ /area/submap/debrisfield/derelict/interior) "ck" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -744,16 +679,12 @@ /area/submap/debrisfield/derelict/interior) "cl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, /area/submap/debrisfield/derelict/interior) "cm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -767,8 +698,6 @@ "co" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -784,8 +713,6 @@ /area/submap/debrisfield/derelict/interior) "cr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -819,8 +746,6 @@ /area/submap/debrisfield/derelict/interior) "cw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -828,24 +753,18 @@ /area/submap/debrisfield/derelict/interior) "cx" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/neutral, /area/submap/debrisfield/derelict/interior) "cy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/neutral, /area/submap/debrisfield/derelict/interior) "cz" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/neutral, @@ -856,8 +775,6 @@ /area/submap/debrisfield/derelict/interior) "cD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -882,8 +799,6 @@ "cI" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -899,8 +814,6 @@ /area/submap/debrisfield/derelict/ai_access_port) "cN" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -934,8 +847,6 @@ "cX" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -947,8 +858,6 @@ "cZ" = ( /obj/random/humanoidremains, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -956,8 +865,6 @@ /area/submap/debrisfield/derelict/ai_access_port) "da" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -968,8 +875,6 @@ /area/submap/debrisfield/derelict/ai_access_starboard) "dc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -988,14 +893,10 @@ /area/submap/debrisfield/derelict/ai_access_port) "de" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -1008,7 +909,6 @@ /area/submap/debrisfield/derelict/ai_access_starboard) "dg" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -1053,8 +953,6 @@ req_access = list(16) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2"; pixel_y = 0 }, @@ -1081,8 +979,6 @@ /area/submap/debrisfield/derelict/ai_chamber) "dq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, diff --git a/maps/submaps/pois_vr/debris_field/mining_drones.dmm b/maps/submaps/pois_vr/debris_field/mining_drones.dmm index 7f1361f53a..f5722fdec8 100644 --- a/maps/submaps/pois_vr/debris_field/mining_drones.dmm +++ b/maps/submaps/pois_vr/debris_field/mining_drones.dmm @@ -12,7 +12,6 @@ "d" = ( /obj/machinery/power/rtg, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -77,7 +76,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/airless, diff --git a/maps/submaps/pois_vr/debris_field/old_satellite.dmm b/maps/submaps/pois_vr/debris_field/old_satellite.dmm index eda87facc6..f6d0e08286 100644 --- a/maps/submaps/pois_vr/debris_field/old_satellite.dmm +++ b/maps/submaps/pois_vr/debris_field/old_satellite.dmm @@ -43,7 +43,6 @@ /area/space) "h" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar/fake{ @@ -56,7 +55,6 @@ icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar/fake{ @@ -81,7 +79,6 @@ state = 3 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ diff --git a/maps/submaps/pois_vr/debris_field/old_teleporter.dmm b/maps/submaps/pois_vr/debris_field/old_teleporter.dmm index c0d8c77ca8..889bf29eaa 100644 --- a/maps/submaps/pois_vr/debris_field/old_teleporter.dmm +++ b/maps/submaps/pois_vr/debris_field/old_teleporter.dmm @@ -31,7 +31,6 @@ pixel_y = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -68,8 +67,6 @@ /area/submap/debrisfield/old_tele) "n" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, diff --git a/maps/submaps/pois_vr/debris_field/ship_mining_drone.dmm b/maps/submaps/pois_vr/debris_field/ship_mining_drone.dmm index 89891b7685..324db8e34e 100644 --- a/maps/submaps/pois_vr/debris_field/ship_mining_drone.dmm +++ b/maps/submaps/pois_vr/debris_field/ship_mining_drone.dmm @@ -24,7 +24,6 @@ req_access = list(-1) }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -34,8 +33,6 @@ /area/submap/debrisfield/mining_drone_ship) "af" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -52,20 +49,15 @@ name = "capacitor bank" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, /area/submap/debrisfield/mining_drone_ship) "ai" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -113,7 +105,6 @@ /area/submap/debrisfield/mining_drone_ship) "ap" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/terminal{ @@ -134,28 +125,21 @@ power_gen = 12000 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, /area/submap/debrisfield/mining_drone_ship) "as" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/submap/debrisfield/mining_drone_ship) "at" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -166,8 +150,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -178,8 +160,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8"; plane = -45 }, @@ -187,8 +167,6 @@ /area/submap/debrisfield/mining_drone_ship) "aw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -570,7 +548,6 @@ name = "capacitor bank" }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small/poi{ diff --git a/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm b/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm index 09ce52b84c..cb31de1baa 100644 --- a/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm +++ b/maps/submaps/pois_vr/debris_field/ship_sup_exploded.dmm @@ -42,10 +42,10 @@ /area/submap/debrisfield/misc_debris) "ak" = ( /obj/structure/closet/crate/secure/engineering, -/obj/item/weapon/tool/screwdriver/power, -/obj/item/weapon/tool/crowbar/power, -/obj/item/weapon/tool/screwdriver/power, -/obj/item/weapon/tool/crowbar/power, +/obj/item/weapon/tool/transforming/powerdrill, +/obj/item/weapon/tool/transforming/jawsoflife, +/obj/item/weapon/tool/transforming/powerdrill, +/obj/item/weapon/tool/transforming/jawsoflife, /obj/effect/decal/cleanable/dirt, /turf/simulated/shuttle/plating/airless, /area/submap/debrisfield/misc_debris) diff --git a/maps/submaps/pois_vr/debris_field/tinycarrier.dmm b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm index 87ac734fc1..d209699dd4 100644 --- a/maps/submaps/pois_vr/debris_field/tinycarrier.dmm +++ b/maps/submaps/pois_vr/debris_field/tinycarrier.dmm @@ -39,8 +39,6 @@ /area/submap/debrisfield/tinyshuttle/crew) "af" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/external, @@ -170,8 +168,6 @@ /area/submap/debrisfield/tinyshuttle/crew) "at" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/airlock_sensor/airlock_interior{ @@ -281,8 +277,6 @@ /area/submap/debrisfield/tinyshuttle/crew) "aD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/brown{ @@ -689,8 +683,6 @@ /area/submap/debrisfield/tinyshuttle/crew) "bm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -716,8 +708,6 @@ /area/submap/debrisfield/tinyshuttle/bridge) "bo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ @@ -889,7 +879,6 @@ anchored = 1 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ diff --git a/maps/submaps/shelters/shelter_4.dmm b/maps/submaps/shelters/shelter_4.dmm index 606f61575e..bf1ed7f018 100644 --- a/maps/submaps/shelters/shelter_4.dmm +++ b/maps/submaps/shelters/shelter_4.dmm @@ -73,7 +73,7 @@ /obj/item/device/binoculars, /obj/item/device/perfect_tele, /obj/item/weapon/storage/pill_bottle/nutriment, -/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/storage/pill_bottle/arithrazine, /obj/item/weapon/reagent_containers/blood/OMinus, /obj/item/weapon/reagent_containers/blood/OMinus, @@ -84,7 +84,7 @@ /obj/item/device/fbp_backup_cell, /obj/item/device/fbp_backup_cell, /obj/item/weapon/storage/pill_bottle/nutriment, -/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/storage/pill_bottle/arithrazine, /obj/item/weapon/storage/pill_bottle/corophizine, /obj/item/weapon/towel/random, diff --git a/maps/submaps/surface_submaps/mountains/quarantineshuttle.dmm b/maps/submaps/surface_submaps/mountains/quarantineshuttle.dmm index 5e8cc12496..79bc245a1d 100644 --- a/maps/submaps/surface_submaps/mountains/quarantineshuttle.dmm +++ b/maps/submaps/surface_submaps/mountains/quarantineshuttle.dmm @@ -823,7 +823,7 @@ /area/submap/cave/qShuttle) "ck" = ( /obj/structure/table/steel, -/obj/item/weapon/tool/crowbar/power, +/obj/item/weapon/tool/transforming/jawsoflife, /turf/simulated/mineral/floor/ignore_mapgen, /area/submap/cave/qShuttle) "cl" = ( diff --git a/maps/tether/submaps/tether_centcom.dmm b/maps/tether/submaps/tether_centcom.dmm index a9df0402f5..b6fe5fb58e 100644 --- a/maps/tether/submaps/tether_centcom.dmm +++ b/maps/tether/submaps/tether_centcom.dmm @@ -391,8 +391,8 @@ /area/centcom/specops) "bc" = ( /obj/structure/table/rack, -/obj/item/weapon/storage/pill_bottle/iron, -/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/blood_regen, +/obj/item/weapon/storage/pill_bottle/blood_regen, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, /turf/simulated/floor/tiled/dark, /area/centcom/specops) diff --git a/maps/tether/submaps/tether_plains.dmm b/maps/tether/submaps/tether_plains.dmm index e91b429938..aa5bee614d 100644 --- a/maps/tether/submaps/tether_plains.dmm +++ b/maps/tether/submaps/tether_plains.dmm @@ -64,7 +64,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index ede3e273c8..91e9a59443 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -54,7 +54,6 @@ pixel_y = -28 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -305,8 +304,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -533,8 +530,6 @@ /area/tether/surfacebase/medical/paramed) "aaT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -553,8 +548,6 @@ /area/tether/surfacebase/medical/mentalhealth) "aaW" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/alarm{ @@ -679,8 +672,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, @@ -694,7 +685,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/wood, @@ -752,8 +742,6 @@ name = "Paramedic" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -785,8 +773,6 @@ /area/tether/surfacebase/surface_one_hall) "abl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -809,8 +795,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -860,8 +844,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -896,12 +878,9 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/effect/floor_decal/industrial/outline/yellow, @@ -927,8 +906,6 @@ /area/security/checkpoint) "abB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -1000,8 +977,6 @@ name = "Looking Glass" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -1017,8 +992,6 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1046,8 +1019,6 @@ "abQ" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ @@ -1055,18 +1026,9 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) -"abR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) "abS" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -1121,8 +1083,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -1231,8 +1191,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -1271,8 +1229,6 @@ /area/tether/surfacebase/lowernortheva/external) "acl" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -1359,8 +1315,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1507,8 +1461,6 @@ /area/tether/surfacebase/medical/mentalhealth) "acG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1523,8 +1475,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -1614,8 +1564,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -1631,13 +1579,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -1651,8 +1595,6 @@ /area/tether/surfacebase/medical/mentalhealth) "acV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -1706,8 +1648,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1734,8 +1674,6 @@ /area/tether/surfacebase/medical/lowerhall) "add" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -1766,13 +1704,9 @@ "adh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1780,8 +1714,6 @@ "adi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -1792,8 +1724,6 @@ /area/hallway/lower/first_west) "adj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6, @@ -1855,8 +1785,6 @@ /obj/random/maintenance/cargo, /obj/random/maintenance/clean, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -1963,8 +1891,6 @@ req_access = list(39) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -1980,8 +1906,6 @@ /area/medical/virologyaccess) "adz" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -2092,8 +2016,6 @@ req_access = list(39) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -2169,8 +2091,6 @@ /area/maintenance/lower/mining_eva) "adM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -2181,7 +2101,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -2248,8 +2167,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2277,8 +2194,6 @@ req_one_access = list() }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2327,13 +2242,9 @@ /area/hallway/lower/first_west) "adX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -2352,8 +2263,6 @@ pixel_y = -26 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -2378,8 +2287,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2393,8 +2300,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2576,8 +2481,6 @@ /area/tether/surfacebase/outside/outside1) "aeq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -3089,8 +2992,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3115,8 +3016,6 @@ /area/tether/surfacebase/lowernorthhall) "afa" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3149,8 +3048,6 @@ /area/tether/surfacebase/medical/mentalhealth) "afc" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3205,8 +3102,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3304,8 +3199,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3318,8 +3211,6 @@ /area/tether/surfacebase/lowernorthhall) "afp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3365,8 +3256,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3444,13 +3333,9 @@ "afC" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -3466,8 +3351,6 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -3483,8 +3366,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -3503,13 +3384,9 @@ pixel_x = -24 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -3535,8 +3412,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3556,8 +3431,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3586,8 +3459,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3603,8 +3474,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3624,8 +3493,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3646,8 +3513,6 @@ "afR" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/firealarm{ @@ -3779,8 +3644,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -3827,8 +3690,6 @@ "agn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3899,8 +3760,6 @@ /area/rnd/chemistry_lab) "agw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3948,8 +3807,6 @@ /area/storage/primary) "agC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3980,8 +3837,6 @@ req_access = list(47) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4005,8 +3860,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -4086,7 +3939,6 @@ /obj/structure/catwalk, /obj/random/cigarettes, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -4303,8 +4155,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -4341,8 +4191,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4412,8 +4260,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_research{ @@ -4609,9 +4455,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/first_west) -"ahN" = ( -/turf/simulated/floor/reinforced, -/area/hallway/lower/first_west) "ahO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4798,8 +4641,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -4814,8 +4655,6 @@ sortType = "Cargo Shop" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4842,8 +4681,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4871,8 +4708,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4895,8 +4730,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4937,8 +4770,6 @@ pixel_y = 32 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -4985,8 +4816,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5008,8 +4837,6 @@ /area/tether/surfacebase/emergency_storage/atrium) "aiu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -5029,8 +4856,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5260,8 +5085,6 @@ /area/maintenance/lower/mining_eva) "aiU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -5399,13 +5222,9 @@ /area/maintenance/lower/mining_eva) "ajd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -5433,8 +5252,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5453,8 +5270,6 @@ /area/rnd/hallway) "ajf" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -5468,8 +5283,6 @@ /area/engineering/atmos_intake) "ajg" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/unary/vent_scrubber{ @@ -5768,7 +5581,6 @@ "ajH" = ( /obj/structure/cable/heavyduty, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/rust, @@ -5776,8 +5588,6 @@ /area/maintenance/lower/mining_eva) "ajI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/rust, @@ -5796,8 +5606,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5909,8 +5717,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/camera/network/research, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5930,8 +5736,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5961,8 +5765,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -5976,8 +5778,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -5987,13 +5787,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -6004,8 +5800,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6028,8 +5822,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6206,8 +5998,6 @@ }, /obj/structure/table/rack, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -6217,8 +6007,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -6228,8 +6016,6 @@ /area/tether/surfacebase/security/weaponsrange) "akC" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -6287,8 +6073,6 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ @@ -6384,8 +6168,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -6395,8 +6177,6 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6423,8 +6203,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -6432,8 +6210,6 @@ "akV" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -6462,8 +6238,6 @@ "akZ" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -6510,8 +6284,6 @@ icon_state = "pipe-j2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -6531,8 +6303,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/newscaster{ @@ -6555,8 +6325,6 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6579,8 +6347,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/poster{ @@ -6597,8 +6363,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -6612,8 +6376,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/newscaster{ @@ -6642,8 +6404,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -6661,13 +6421,9 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6691,8 +6447,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6709,8 +6463,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/monofloor, @@ -6725,8 +6477,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -6760,8 +6510,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6784,8 +6532,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6813,8 +6559,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6854,8 +6598,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6871,8 +6613,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6882,8 +6622,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6929,8 +6667,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6944,8 +6680,6 @@ "alC" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -6979,13 +6713,9 @@ "alF" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -7129,8 +6859,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7160,8 +6888,6 @@ "alT" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/research{ @@ -7185,8 +6911,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/research{ @@ -7214,7 +6938,6 @@ icon_state = "16-0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/random/junk, @@ -7251,8 +6974,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7337,8 +7058,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7407,13 +7126,9 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -7426,8 +7141,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7495,8 +7208,6 @@ "amx" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -7548,8 +7259,6 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7629,8 +7338,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -7651,7 +7358,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -7708,8 +7414,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7760,8 +7464,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -7777,8 +7479,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7788,8 +7488,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -7834,8 +7532,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7927,8 +7623,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7946,7 +7640,6 @@ /obj/random/tech_supply, /obj/random/tech_supply, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light_switch{ @@ -7962,8 +7655,6 @@ /area/storage/primary) "anj" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8046,13 +7737,9 @@ /obj/random/cigarettes, /obj/random/junk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -8076,8 +7763,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -8091,8 +7776,6 @@ "anu" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8156,10 +7839,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/first_west) -"anA" = ( -/obj/structure/redgate, -/turf/simulated/floor/reinforced, -/area/hallway/lower/first_west) "anB" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -8180,8 +7859,6 @@ "anC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -8229,8 +7906,6 @@ req_one_access = list(47,24) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8265,7 +7940,6 @@ /area/security/checkpoint) "anI" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -8306,8 +7980,6 @@ /area/storage/surface_eva) "anN" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -8315,16 +7987,12 @@ "anO" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/hallway/lower/first_west) "anP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -8422,24 +8090,18 @@ /area/tether/surfacebase/surface_one_hall) "anV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "anW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "anX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -8447,8 +8109,6 @@ /area/tether/surfacebase/surface_one_hall) "anY" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -8460,8 +8120,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/lightgrey/border{ @@ -8478,8 +8136,6 @@ "aoa" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance/int{ @@ -8489,21 +8145,15 @@ /area/tether/surfacebase/surface_one_hall) "aob" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/emergency_storage/atrium) "aoc" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -8537,7 +8187,6 @@ pixel_y = 28 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techmaint, @@ -8558,8 +8207,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/status_display{ @@ -8570,13 +8217,9 @@ /area/hallway/lower/first_west) "aoh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -8616,8 +8259,6 @@ /area/tether/surfacebase/emergency_storage/atrium) "aon" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -8661,8 +8302,6 @@ "aot" = ( /obj/structure/railing, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -8810,8 +8449,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -8837,8 +8474,6 @@ /area/hallway/lower/first_west) "aoG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -8865,8 +8500,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8946,8 +8579,6 @@ /area/tether/surfacebase/surface_one_hall) "aoQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -8982,8 +8613,6 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -9000,8 +8629,6 @@ }, /obj/effect/map_helper/airlock/door/ext_door, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -9017,8 +8644,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -9028,14 +8653,10 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -9057,8 +8678,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/map_helper/airlock/door/int_door, @@ -9075,8 +8694,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -9105,8 +8722,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -9120,8 +8735,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -9146,16 +8759,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -9174,8 +8783,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -9192,8 +8799,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -9208,8 +8813,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -9231,8 +8834,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -9251,13 +8852,9 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/computer/timeclock/premade/east, @@ -9289,8 +8886,6 @@ /area/storage/surface_eva) "apn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -9318,8 +8913,6 @@ /area/storage/art) "aps" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9439,8 +9032,6 @@ /area/maintenance/lower/vacant_site) "apG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, @@ -9537,8 +9128,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -9552,8 +9141,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -9629,8 +9216,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -9669,8 +9254,6 @@ /area/storage/art) "apZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9994,8 +9577,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -10034,8 +9615,6 @@ "aqC" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10044,8 +9623,6 @@ /area/storage/art) "aqD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -10061,7 +9638,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -10159,8 +9735,6 @@ "aqP" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -10168,14 +9742,10 @@ "aqQ" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/random/junk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -10186,8 +9756,6 @@ /area/tether/surfacebase/lowernortheva/external) "aqS" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -10257,8 +9825,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -10581,8 +10147,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -10600,8 +10164,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -10617,8 +10179,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -10646,13 +10206,9 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/item/device/radio/intercom{ @@ -10671,13 +10227,10 @@ /area/vacant/vacant_site) "arL" = ( /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -10798,8 +10351,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -10845,8 +10396,6 @@ /area/tether/surfacebase/surface_one_hall) "asb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hologram/holopad, @@ -10929,8 +10478,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -11188,8 +10735,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -11213,8 +10758,6 @@ /area/tether/surfacebase/outside/outside1) "asH" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/rust, @@ -11223,8 +10766,6 @@ /area/maintenance/lower/mining_eva) "asI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -11321,8 +10862,6 @@ /area/tether/surfacebase/outside/outside1) "asT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -11424,8 +10963,6 @@ name = "Looking Glass" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -11492,8 +11029,6 @@ "atl" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -11548,8 +11083,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -11559,8 +11092,6 @@ name = "plastic table frame" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -11581,8 +11112,6 @@ }, /obj/random/soap, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -11590,8 +11119,6 @@ "ats" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -11603,8 +11130,6 @@ }, /obj/machinery/recharger, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -11615,16 +11140,12 @@ }, /obj/random/maintenance/clean, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/crew_quarters/locker) "atv" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -11643,7 +11164,6 @@ pixel_x = 28 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -11726,8 +11246,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -11802,8 +11320,6 @@ /area/tether/surfacebase/surface_one_hall) "atN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11850,7 +11366,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11974,8 +11489,6 @@ /area/tether/surfacebase/outside/outside1) "aug" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12035,8 +11548,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -12047,16 +11558,12 @@ name = "Solars Maintenance Access" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/maintenance/lower/solars) "aul" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -12081,8 +11588,6 @@ /area/medical/virologyaccess) "aup" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/common{ @@ -12134,8 +11639,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -12313,8 +11816,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -12450,8 +11951,6 @@ /area/tether/surfacebase/security/brig/bathroom) "auY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12471,8 +11970,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -12557,8 +12054,6 @@ /area/maintenance/lower/solars) "avg" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/alarm{ @@ -12569,8 +12064,6 @@ /area/maintenance/lower/solars) "avh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -12592,8 +12085,6 @@ name = "Solars Maintenance Access" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -12649,13 +12140,9 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -12683,8 +12170,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12707,8 +12192,6 @@ req_access = list(1) }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12736,8 +12219,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12759,8 +12240,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12782,8 +12261,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12807,8 +12284,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12827,8 +12302,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12848,8 +12321,6 @@ }, /obj/machinery/camera/network/security, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12869,8 +12340,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12890,8 +12359,6 @@ pixel_y = 26 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -12957,13 +12424,9 @@ /area/tether/surfacebase/tram) "avE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -12981,8 +12444,6 @@ /area/rnd/hallway) "avF" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13058,8 +12519,6 @@ "avK" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/mouse_hole_spawner{ @@ -13077,16 +12536,12 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/lower/solars) "avM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/railing, @@ -13117,8 +12572,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -13169,8 +12622,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -13265,8 +12716,6 @@ /area/security/checkpoint) "awf" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -13336,8 +12785,6 @@ /area/rnd/hallway) "awm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13370,8 +12817,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13404,8 +12849,6 @@ /area/tether/surfacebase/lowernorthhall) "awr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -13442,8 +12885,6 @@ /area/medical/virologyisolation) "awv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -13454,8 +12895,6 @@ /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/paleblue/bordercorner2, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13469,8 +12908,6 @@ /area/tether/surfacebase/medical/lowerhall) "awx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13512,8 +12949,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -13535,8 +12970,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13563,8 +12996,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13585,7 +13016,6 @@ icon_state = "16-0" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/disposalpipe/up, @@ -13599,8 +13029,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13635,8 +13063,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -13684,8 +13110,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -13772,8 +13196,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -13810,8 +13232,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13823,8 +13243,6 @@ /area/rnd/hallway) "awU" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -13840,23 +13258,15 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -13887,8 +13297,6 @@ req_access = list(39) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -13923,8 +13331,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13959,13 +13365,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -14011,8 +13413,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -14041,8 +13441,6 @@ req_access = list(39) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -14072,8 +13470,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -14090,8 +13486,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14107,8 +13501,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -14180,8 +13572,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -14203,7 +13593,6 @@ "axl" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/corner/lightgrey/border, @@ -14395,8 +13784,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14435,8 +13822,6 @@ "axE" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -14452,8 +13837,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -14468,8 +13851,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -14481,8 +13862,6 @@ "axI" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -14503,8 +13882,6 @@ /area/medical/virologyisolation) "axK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14581,8 +13958,6 @@ pixel_x = -23 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -14907,8 +14282,6 @@ /area/tether/surfacebase/tram) "ayr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -14927,8 +14300,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14948,8 +14319,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -14968,13 +14337,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -14990,8 +14355,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -15028,8 +14391,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -15051,8 +14412,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -15066,8 +14425,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -15094,8 +14451,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15117,13 +14472,9 @@ "ayD" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -15171,8 +14522,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -15368,8 +14717,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15724,8 +15071,6 @@ "azz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -15818,8 +15163,6 @@ req_access = list(5) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15846,8 +15189,6 @@ /area/tether/surfacebase/lowernorthhall) "azJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/standard, @@ -15976,8 +15317,6 @@ pixel_x = 22 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16061,8 +15400,6 @@ /area/crew_quarters/locker/laundry_arrival) "aAa" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16080,8 +15417,6 @@ "aAb" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16095,8 +15430,6 @@ /area/maintenance/lowmedbaymaint) "aAc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16119,8 +15452,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment, @@ -16153,7 +15484,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/white, @@ -16208,8 +15538,6 @@ /area/medical/virology) "aAi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16309,8 +15637,6 @@ /area/maintenance/lower/solars) "aAt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -16339,8 +15665,6 @@ /area/maintenance/lower/solars) "aAv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -16401,8 +15725,6 @@ /area/rnd/hallway) "aAz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16415,8 +15737,6 @@ /area/maintenance/lowmedbaymaint) "aAA" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16434,7 +15754,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ @@ -16501,16 +15820,12 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/lowmedbaymaint) "aAH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16597,8 +15912,6 @@ /area/tether/surfacebase/surface_one_hall) "aAQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -16651,8 +15964,6 @@ /area/maintenance/lower/research) "aAW" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/power/apc{ @@ -16661,15 +15972,12 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, /area/maintenance/lowmedbaymaint) "aAX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/zpipe/up/supply{ @@ -16679,12 +15987,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -16742,13 +16047,9 @@ /area/maintenance/lower/research) "aBf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ @@ -16762,8 +16063,6 @@ /area/maintenance/lower/research) "aBg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, @@ -16773,13 +16072,9 @@ /area/maintenance/lower/research) "aBh" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16809,8 +16104,6 @@ /area/vacant/vacant_site/east) "aBl" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/catwalk, @@ -16879,8 +16172,6 @@ /area/maintenance/lower/trash_pit) "aBq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16946,8 +16237,6 @@ /area/tether/surfacebase/outside/outside1) "aBv" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/standard, @@ -16982,8 +16271,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -17182,8 +16469,6 @@ /area/maintenance/asmaint2) "aBN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -17193,8 +16478,6 @@ /area/maintenance/lower/research) "aBP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -17271,8 +16554,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -17301,12 +16582,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) +"aCc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "aCd" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -17335,8 +16620,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -17380,8 +16663,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -17393,7 +16674,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -17420,8 +16700,6 @@ /area/maintenance/substation/surface_atmos) "aCk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/corner, @@ -17495,8 +16773,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -17553,12 +16829,9 @@ /area/maintenance/lower/research) "aCx" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/sensor{ @@ -17630,8 +16903,6 @@ /area/maintenance/lower/research) "aCC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17721,8 +16992,6 @@ /area/vacant/vacant_site/east) "aCK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -17772,8 +17041,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -17810,8 +17077,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -17836,7 +17101,6 @@ icon_state = "16-0" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -18034,7 +17298,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -18107,8 +17370,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18129,8 +17390,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light_switch{ @@ -18184,8 +17443,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -18213,6 +17470,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/hallway) +"aDK" = ( +/obj/structure/bed/chair/comfy/black, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "aDL" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18257,7 +17526,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -18286,6 +17554,13 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/locker/laundry_arrival) +"aDT" = ( +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "aDU" = ( /obj/machinery/disposal/deliveryChute{ dir = 1 @@ -18325,8 +17600,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -18431,8 +17704,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18508,8 +17779,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -18539,8 +17808,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -18556,8 +17823,6 @@ name = "Emergency Storage" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -18565,8 +17830,6 @@ /area/rnd/hallway) "aEr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -18588,13 +17851,9 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -18632,8 +17891,6 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -18702,7 +17959,9 @@ /turf/simulated/floor/wood, /area/crew_quarters/visitor_dining) "aEK" = ( -/obj/item/weapon/stool/padded, +/obj/item/weapon/stool/padded{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/visitor_dining) "aEL" = ( @@ -18718,6 +17977,14 @@ "aEM" = ( /turf/simulated/floor/tiled, /area/crew_quarters/visitor_dining) +"aEN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/light/small, +/obj/structure/table/bench/standard, +/obj/effect/landmark/start/entrepreneur, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "aEO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -18729,8 +17996,6 @@ /area/tether/surfacebase/tram) "aEP" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -18764,8 +18029,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -18881,8 +18144,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -18904,8 +18165,6 @@ /area/rnd/hallway) "aFf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -18952,8 +18211,6 @@ /area/maintenance/lower/atmos) "aFl" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -18976,8 +18233,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holosign/bar{ @@ -18988,8 +18243,6 @@ /area/maintenance/lower/atmos) "aFn" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -19016,16 +18269,12 @@ pixel_y = 22 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/lower/atmos) "aFp" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -19085,8 +18334,6 @@ icon_state = "pipe-j2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -19103,8 +18350,6 @@ "aFw" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19127,8 +18372,6 @@ /area/crew_quarters/visitor_dining) "aFx" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19153,7 +18396,9 @@ /turf/simulated/floor/wood, /area/crew_quarters/visitor_dining) "aFz" = ( -/obj/item/weapon/stool/padded, +/obj/item/weapon/stool/padded{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19259,8 +18504,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -19285,8 +18528,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/hydrant{ @@ -19310,8 +18551,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -19471,8 +18710,6 @@ /area/tether/surfacebase/tram) "aFX" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -19564,8 +18801,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -19656,7 +18891,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -19678,8 +18912,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19689,8 +18921,6 @@ /area/rnd/hallway) "aGn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -19701,26 +18931,18 @@ /area/rnd/hallway) "aGo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/rnd/hallway) "aGp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -19787,8 +19009,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -19800,8 +19020,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -19931,7 +19149,6 @@ pixel_x = -24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -19944,8 +19161,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -19955,18 +19170,12 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -19979,8 +19188,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -19999,8 +19206,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20023,8 +19228,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20044,8 +19247,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -20056,8 +19257,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/stool/padded, @@ -20150,8 +19349,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -20200,13 +19397,9 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark/vermin, @@ -20368,8 +19561,6 @@ "aHt" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/rnd{ @@ -20402,7 +19593,6 @@ /area/maintenance/lower/atmos) "aHy" = ( /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -20417,8 +19607,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -20477,8 +19665,6 @@ specialfunctions = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -20657,8 +19843,6 @@ name = "Mining Maintenance Access" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -20683,8 +19867,6 @@ specialfunctions = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -20702,16 +19884,12 @@ /area/crew_quarters/sleep/maintDorm1) "aHY" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar) "aHZ" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -20748,16 +19926,12 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, /area/crew_quarters/sleep/maintDorm3) "aIf" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ @@ -20792,8 +19966,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -20852,8 +20024,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20875,8 +20045,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20958,13 +20126,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -21037,8 +20201,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -21085,11 +20247,9 @@ /area/crew_quarters/sleep/maintDorm1) "aIN" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/smes/buildable{ @@ -21219,8 +20379,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -21233,8 +20391,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/wood, @@ -21435,16 +20591,12 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/research{ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21464,8 +20616,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -21505,7 +20655,6 @@ pixel_x = -28 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /obj/item/stack/material/wood{ @@ -21517,8 +20666,6 @@ "aJv" = ( /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21537,7 +20684,6 @@ pixel_x = -28 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -21546,8 +20692,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -21647,8 +20791,6 @@ /area/engineering/atmos/gas_storage) "aJG" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/atmos{ @@ -21773,8 +20915,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -21840,8 +20980,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21903,8 +21041,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -21976,7 +21112,6 @@ /area/engineering/atmos) "aKm" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/structure/table/standard, @@ -22000,13 +21135,9 @@ /area/engineering/atmos) "aKp" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing{ @@ -22219,8 +21350,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22266,8 +21395,6 @@ /area/rnd/external) "aKM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -22328,8 +21455,6 @@ "aKR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -22362,8 +21487,6 @@ /area/engineering/atmos) "aKW" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing{ @@ -22373,21 +21496,16 @@ /area/engineering/atmos) "aKX" = ( /obj/structure/cable/cyan{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/machinery/atmospherics/pipe/zpipe/up, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, /area/engineering/atmos) "aKY" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/railing{ @@ -22443,8 +21561,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/woodentable, @@ -22458,8 +21574,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -22510,8 +21624,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -22560,8 +21672,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -22676,7 +21786,6 @@ pixel_x = -24 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techmaint, @@ -22685,8 +21794,6 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -22695,8 +21802,6 @@ /obj/machinery/portable_atmospherics/canister/air, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -22712,37 +21817,27 @@ /area/engineering/atmos) "aLB" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/engineering/atmos) "aLC" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/engineering/atmos) "aLD" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, /area/engineering/atmos) "aLE" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/railing{ @@ -22755,8 +21850,6 @@ /area/engineering/atmos) "aLF" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -22832,7 +21925,6 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal, @@ -22942,8 +22034,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -22962,8 +22052,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -23046,8 +22134,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -23062,8 +22148,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -23073,8 +22157,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -23084,13 +22166,9 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -23185,8 +22263,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -23213,8 +22289,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -23404,8 +22478,6 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -23541,8 +22613,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/firealarm{ @@ -23553,8 +22623,6 @@ /area/crew_quarters/sleep/Dorm_7) "aNk" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -23586,8 +22654,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals3{ @@ -23597,13 +22663,9 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ @@ -23623,8 +22685,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23645,8 +22705,6 @@ /area/crew_quarters/visitor_lodging) "aNn" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -23667,8 +22725,6 @@ /area/crew_quarters/sleep/Dorm_8) "aNo" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23688,7 +22744,6 @@ /area/crew_quarters/sleep/Dorm_8) "aNp" = ( /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -23816,8 +22871,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -23933,8 +22986,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/computer/timeclock/premade/west, @@ -24004,8 +23055,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -24126,7 +23175,6 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal, @@ -24146,8 +23194,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -24340,8 +23386,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -24366,8 +23410,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -24494,8 +23536,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -24563,8 +23603,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/firealarm{ @@ -24575,8 +23613,6 @@ /area/crew_quarters/sleep/Dorm_5) "aPa" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -24609,8 +23645,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -24622,13 +23656,9 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -24648,8 +23678,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -24669,8 +23697,6 @@ /area/crew_quarters/visitor_lodging) "aPd" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -24694,8 +23720,6 @@ /area/crew_quarters/sleep/Dorm_6) "aPe" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -24715,7 +23739,6 @@ /area/crew_quarters/sleep/Dorm_6) "aPf" = ( /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -24752,13 +23775,9 @@ /area/crew_quarters/sleep/Dorm_6) "aPj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/corner/lightorange{ @@ -24822,7 +23841,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/super{ @@ -24840,8 +23858,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -24855,8 +23871,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -24878,8 +23892,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -24892,8 +23904,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -24906,8 +23916,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -24917,13 +23925,9 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -25056,8 +24060,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25158,8 +24160,6 @@ /area/engineering/atmos/processing) "aPU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25248,7 +24248,6 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal, @@ -25268,8 +24267,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25545,8 +24542,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -25571,8 +24566,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -25648,8 +24641,6 @@ /area/crew_quarters/sleep/Dorm_4) "aQO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25739,8 +24730,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25826,8 +24815,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/firealarm{ @@ -25838,8 +24825,6 @@ /area/crew_quarters/sleep/Dorm_3) "aRk" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -25869,8 +24854,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -25882,13 +24865,9 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/junction{ @@ -25899,8 +24878,6 @@ /area/crew_quarters/visitor_lodging) "aRm" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -25921,8 +24898,6 @@ /area/crew_quarters/sleep/Dorm_4) "aRn" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25942,7 +24917,6 @@ /area/crew_quarters/sleep/Dorm_4) "aRo" = ( /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -25979,8 +24953,6 @@ /area/crew_quarters/sleep/Dorm_4) "aRs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26075,8 +25047,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -26155,8 +25125,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -26227,8 +25195,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -26239,8 +25205,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26254,8 +25218,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -26265,8 +25227,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -26276,8 +25236,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -26392,7 +25350,6 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/structure/closet/secure_closet/personal, @@ -26412,13 +25369,9 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/alarm{ @@ -26530,8 +25483,6 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -26671,8 +25622,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -26785,8 +25734,6 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -26920,8 +25867,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/firealarm{ @@ -26932,8 +25877,6 @@ /area/crew_quarters/sleep/Dorm_1) "aTz" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -26969,18 +25912,12 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -27003,8 +25940,6 @@ /area/crew_quarters/visitor_laundry) "aTC" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -27024,7 +25959,6 @@ /area/crew_quarters/sleep/Dorm_2) "aTD" = ( /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -27145,8 +26079,6 @@ "aTM" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -27225,8 +26157,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27360,8 +26290,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27448,8 +26376,6 @@ /area/crew_quarters/visitor_laundry) "aUr" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -27485,8 +26411,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -27525,8 +26449,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -27581,7 +26503,6 @@ pixel_x = 24 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -27592,13 +26513,9 @@ "aUD" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -27615,7 +26532,6 @@ /area/crew_quarters/sleep/maintDorm3) "aUF" = ( /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -27690,8 +26606,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27761,8 +26675,6 @@ /area/maintenance/lower/atmos) "aUU" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/table/woodentable, @@ -27841,8 +26753,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27943,8 +26853,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular{ @@ -28039,8 +26947,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -28064,7 +26970,6 @@ pixel_x = 28 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -28081,8 +26986,6 @@ name = "Unisex Showers" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -28095,8 +26998,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -28116,8 +27017,6 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -28136,8 +27035,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -28154,8 +27051,6 @@ /area/crew_quarters/visitor_laundry) "aVA" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -28175,8 +27070,6 @@ /area/crew_quarters/visitor_laundry) "aVB" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -28291,8 +27184,6 @@ "aVL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -28341,8 +27232,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -28375,8 +27264,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28531,8 +27418,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -28565,8 +27450,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/mouse_hole_spawner{ @@ -28611,8 +27494,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -28748,8 +27629,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -28822,8 +27701,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -28851,13 +27728,9 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/junction{ @@ -28866,8 +27739,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -28913,13 +27784,9 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28933,8 +27800,6 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/grey/bordercorner2, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -28947,7 +27812,6 @@ pixel_y = -32 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -29027,8 +27891,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -29044,8 +27906,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -29094,8 +27954,6 @@ /area/tether/surfacebase/security/lowerhall) "aXp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ @@ -29124,8 +27982,6 @@ icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/corner/lightorange{ @@ -29152,8 +28008,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29175,13 +28029,9 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29200,8 +28050,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29218,8 +28066,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29236,13 +28082,9 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29287,8 +28129,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/woodentable, @@ -29321,8 +28161,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -29336,8 +28174,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/wood, @@ -29381,8 +28217,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/rust, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29392,8 +28226,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29437,8 +28269,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -29452,8 +28282,6 @@ /area/vacant/vacant_bar) "aYb" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -29486,8 +28314,6 @@ name = "Room 3" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29505,8 +28331,6 @@ name = "Room 2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29524,8 +28348,6 @@ name = "Room 1" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29599,8 +28421,6 @@ specialfunctions = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -29645,8 +28465,6 @@ /area/crew_quarters/sleep/maintDorm1) "aYF" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -29654,8 +28472,6 @@ "aYG" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -29665,13 +28481,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -29771,7 +28583,6 @@ pixel_x = -28 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -29795,8 +28606,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/wood, @@ -29925,8 +28734,6 @@ /obj/machinery/light, /obj/structure/ladder/up, /obj/structure/cable/orange{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/orange, @@ -30106,8 +28913,6 @@ }, /obj/machinery/door/firedoor/multi_tile, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -30148,8 +28953,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -30165,8 +28968,6 @@ /area/tether/surfacebase/lowernorthhall) "bbc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30203,8 +29004,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -30251,8 +29050,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30275,8 +29072,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30296,8 +29091,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30352,8 +29145,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30380,8 +29171,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30389,8 +29178,6 @@ "bbr" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ @@ -30402,7 +29189,6 @@ "bbs" = ( /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/smes/buildable{ @@ -30450,7 +29236,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -30476,8 +29261,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -30490,8 +29273,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -30526,8 +29307,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/engineering{ @@ -30537,13 +29316,9 @@ /area/maintenance/substation/surfaceservicesubstation) "bbE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -30555,8 +29330,6 @@ "bbF" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/engineering{ @@ -30607,7 +29380,6 @@ "bbJ" = ( /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/smes/buildable{ @@ -30633,12 +29405,9 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -30655,8 +29424,6 @@ /area/tether/surfacebase/medical/autoresleeving) "bbN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30667,8 +29434,6 @@ /area/hallway/lower/first_west) "bbO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30678,8 +29443,6 @@ /area/hallway/lower/first_west) "bbP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30740,8 +29503,6 @@ /area/hallway/lower/first_west) "bbT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -30780,8 +29541,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/engineering{ @@ -30797,8 +29556,6 @@ /area/maintenance/lower/xenoflora) "bbY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/firealarm{ @@ -30905,8 +29662,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals5, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -31055,8 +29810,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -31132,13 +29885,6 @@ /obj/structure/table/bench/standard, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) -"bcM" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/machinery/light/small, -/obj/structure/table/bench/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) "bcN" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -31224,8 +29970,6 @@ "bcY" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -31246,15 +29990,12 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/techfloor/orange/corner{ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -31262,8 +30003,6 @@ "bdb" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -31271,8 +30010,6 @@ /area/holodeck_control) "bdc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -31280,8 +30017,6 @@ "bdd" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -31290,8 +30025,6 @@ "bde" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -31322,8 +30055,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -31335,8 +30066,6 @@ pixel_x = 25 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -31358,8 +30087,6 @@ /area/holodeck_control) "bdm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/painting/public{ @@ -31370,8 +30097,6 @@ "bdn" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -31382,8 +30107,6 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -31407,8 +30130,6 @@ report_danger_level = 0 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -31430,8 +30151,6 @@ "bds" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -31446,8 +30165,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/intercom{ @@ -31482,8 +30199,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -31499,8 +30214,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -31528,8 +30241,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -31543,8 +30254,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -31567,8 +30276,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -31662,8 +30369,6 @@ "bdN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -31709,13 +30414,9 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction{ @@ -31733,8 +30434,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/lightgrey/border, @@ -31789,8 +30488,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31811,8 +30508,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -31847,8 +30542,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -31867,8 +30560,6 @@ /area/tether/surfacebase/surface_one_hall) "bPH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31919,8 +30610,6 @@ /area/looking_glass/lg_1) "ccA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark{ @@ -31958,8 +30647,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals7, @@ -31986,8 +30673,6 @@ name = "Laundry" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32104,8 +30789,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32127,8 +30810,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32182,7 +30863,6 @@ dir = 9 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -32267,13 +30947,9 @@ /area/maintenance/lower/trash_pit) "ddU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -32385,8 +31061,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -32414,8 +31088,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/northern_star{ @@ -32453,13 +31125,9 @@ name = "lightsout" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -32511,8 +31179,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -32532,7 +31198,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -32577,8 +31242,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -32649,8 +31312,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /mob/living/simple_mob/animal/passive/mimepet, @@ -32681,8 +31342,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -32708,8 +31367,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32737,15 +31394,12 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) "eAd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/freezer, @@ -32768,8 +31422,6 @@ name = "Brig Restroom" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -32790,8 +31442,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -32898,8 +31548,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -32991,8 +31639,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33119,8 +31765,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -33172,13 +31816,9 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -33189,8 +31829,6 @@ "ghr" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ @@ -33249,8 +31887,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33291,8 +31927,6 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -33305,8 +31939,6 @@ req_one_access = newlist() }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ @@ -33326,8 +31958,6 @@ /area/tether/surfacebase/security/brig) "goJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/landmark{ @@ -33406,13 +32036,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -33429,8 +32055,6 @@ /area/rnd/hallway) "gzO" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -33449,8 +32073,6 @@ /area/crew_quarters/visitor_dining) "gAn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33478,8 +32100,6 @@ /area/tether/surfacebase/security/lowerhall) "gEn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33554,8 +32174,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/lightgrey/border{ @@ -33613,8 +32231,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/painting/public{ @@ -33641,8 +32257,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33739,7 +32353,6 @@ pixel_y = -25 }, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -33753,8 +32366,6 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -33798,8 +32409,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -33816,8 +32425,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33879,12 +32486,9 @@ pixel_x = 28 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -33935,13 +32539,9 @@ "hPU" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -33960,13 +32560,9 @@ "hQP" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -33979,8 +32575,6 @@ name = "plastic table frame" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/random/paicard, @@ -33988,8 +32582,6 @@ /area/crew_quarters/locker) "hTw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -34015,8 +32607,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -34080,8 +32670,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -34121,8 +32709,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -34160,8 +32746,6 @@ /area/tether/surfacebase/surface_one_hall) "ilZ" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -34219,7 +32803,6 @@ /area/tether/surfacebase/surface_one_hall) "itj" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -34274,8 +32857,6 @@ /area/tether/surfacebase/funny/clownoffice) "ixF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34452,8 +33033,6 @@ pixel_y = -25 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -34515,7 +33094,6 @@ pixel_x = -25 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -34604,8 +33182,6 @@ "jGM" = ( /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ @@ -34624,8 +33200,6 @@ /area/tether/surfacebase/security/lowerhall) "jKD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34641,8 +33215,6 @@ "jMx" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/nosmoking_2{ @@ -34660,8 +33232,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -34718,8 +33288,6 @@ icon_state = "0-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/carpet/gaycarpet, @@ -34773,8 +33341,6 @@ /area/maintenance/engineering/atmos/airlock) "kdi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -34790,8 +33356,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -34811,8 +33375,6 @@ "kgk" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -34834,8 +33396,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -34856,8 +33416,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -34865,16 +33423,12 @@ "ksK" = ( /obj/structure/railing, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/lowmedbaymaint) "ktr" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/tagger{ @@ -34921,8 +33475,6 @@ /area/tether/surfacebase/security/lowerhall) "kxx" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -34954,8 +33506,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -34972,8 +33522,6 @@ /area/rnd/hallway) "kAm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -35023,8 +33571,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -35045,15 +33591,12 @@ pixel_x = -30 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/xenoflora) "kEs" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35127,8 +33670,6 @@ name = "Locker Room" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -35151,8 +33692,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -35180,8 +33719,6 @@ /area/maintenance/engineering/atmos/airlock) "laI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -35208,8 +33745,6 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -35232,8 +33767,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35317,13 +33850,9 @@ "lpK" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -35363,13 +33892,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/status_display{ @@ -35402,8 +33927,6 @@ /area/hallway/lower/first_west) "lBO" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -35428,8 +33951,6 @@ "lDW" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -35451,8 +33972,6 @@ /area/maintenance/engineering/atmos/airlock/gas) "lEB" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_dirty, @@ -35484,8 +34003,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -35529,8 +34046,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/danger{ @@ -35553,8 +34068,6 @@ pixel_y = -26 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -35613,15 +34126,12 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloor{ @@ -35760,8 +34270,6 @@ }, /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35797,8 +34305,6 @@ /area/crew_quarters/visitor_laundry) "mvM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ @@ -35826,8 +34332,6 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -35842,8 +34346,6 @@ /area/tether/surfacebase/funny/mimeoffice) "mAR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -35946,8 +34448,6 @@ }, /obj/effect/landmark/tram, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35970,8 +34470,6 @@ "mSz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -35980,8 +34478,6 @@ /area/tether/surfacebase/surface_one_hall) "mTw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36009,7 +34505,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/blast/regular{ @@ -36048,8 +34543,6 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holoposter{ @@ -36092,7 +34585,6 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/visible/universal{ @@ -36102,8 +34594,6 @@ /area/maintenance/engineering/atmos/airlock/gas) "ndH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -36153,16 +34643,12 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/crew_quarters/locker/laundry_arrival) "njE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36184,8 +34670,6 @@ req_one_access = list(136) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36241,15 +34725,12 @@ dir = 6 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/weaponsrange) "nsp" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36262,8 +34743,6 @@ /area/tether/surfacebase/surface_one_hall) "ntZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36337,8 +34816,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible/supply{ @@ -36395,8 +34872,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -36520,13 +34995,9 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction/yjunction{ @@ -36567,8 +35038,6 @@ /area/tether/surfacebase/security/brig) "okP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -36589,8 +35058,6 @@ "omy" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -36606,8 +35073,6 @@ /area/tether/surfacebase/security/brig) "orf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -36642,8 +35107,6 @@ "osh" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/lightgrey/border, @@ -36692,8 +35155,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -36772,8 +35233,6 @@ /area/maintenance/lowmedbaymaint) "oJY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -36792,8 +35251,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -36882,8 +35339,6 @@ /area/tether/surfacebase/surface_one_hall) "paY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -36964,8 +35419,6 @@ "pud" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -37018,8 +35471,6 @@ "pFF" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -37036,8 +35487,6 @@ /area/maintenance/lower/trash_pit) "pKE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37094,8 +35543,6 @@ pixel_y = -22 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -37151,8 +35598,6 @@ /area/maintenance/engineering/atmos/airlock/gas) "qhk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -37171,8 +35616,6 @@ /area/maintenance/lowmedbaymaint) "qhq" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -37271,8 +35714,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -37337,8 +35778,6 @@ /area/maintenance/substation/surfaceservicesubstation) "qEW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -37425,8 +35864,6 @@ name = "plastic table frame" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -37455,13 +35892,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -37496,8 +35929,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37515,8 +35946,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -37570,8 +35999,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37591,8 +36018,6 @@ }, /obj/effect/landmark/tram, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37602,8 +36027,6 @@ /area/tether/surfacebase/tram) "rhc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -37661,8 +36084,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -37746,8 +36167,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/light_switch{ @@ -37786,8 +36205,6 @@ "rQe" = ( /obj/structure/table/steel, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/lightorange{ @@ -37816,8 +36233,6 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37828,8 +36243,6 @@ "rSG" = ( /obj/machinery/light/small, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/freezer, @@ -37855,8 +36268,6 @@ icon_state = "pipe-j2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37907,8 +36318,6 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/cryopod/robot/door/tram, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37924,8 +36333,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -37942,13 +36349,9 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -37957,12 +36360,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) -"sch" = ( -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) "svZ" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37977,8 +36374,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37994,8 +36389,6 @@ /area/tether/surfacebase/security/brig/storage) "sya" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/holoposter{ @@ -38019,8 +36412,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -38043,7 +36434,6 @@ output_attempt = 0 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -38057,8 +36447,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -38075,8 +36463,6 @@ /area/maintenance/lowmedbaymaint) "sHK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet/bcarpet, @@ -38094,8 +36480,6 @@ /area/looking_glass/lg_1) "sJP" = ( /obj/structure/cable/orange{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/orange, @@ -38128,8 +36512,6 @@ "sLi" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -38166,8 +36548,6 @@ /area/tether/surfacebase/surface_one_hall) "sVe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/gaycarpet, @@ -38204,8 +36584,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/intercom{ @@ -38221,8 +36599,6 @@ "tak" = ( /obj/structure/table/steel, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/lightorange{ @@ -38264,8 +36640,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -38281,8 +36655,6 @@ /area/maintenance/engineering/atmos/airlock) "tvk" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -38293,8 +36665,6 @@ "tvA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -38324,8 +36694,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -38347,8 +36715,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -38366,8 +36732,6 @@ "tCV" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -38378,16 +36742,12 @@ "tEo" = ( /obj/random/trash_pile, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "tGh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -38397,8 +36757,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/carpet/bcarpet, @@ -38425,8 +36783,6 @@ open_layer = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -38441,8 +36797,6 @@ }, /obj/effect/landmark/tram, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -38480,8 +36834,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -38540,8 +36892,6 @@ specialfunctions = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -38576,8 +36926,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, @@ -38622,8 +36970,6 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -38670,17 +37016,6 @@ "uiK" = ( /turf/simulated/wall, /area/tether/surfacebase/security/weaponsrange) -"uke" = ( -/obj/structure/bed/chair/comfy/black, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) "uku" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -38833,8 +37168,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -38844,16 +37177,12 @@ /area/tether/surfacebase/surface_one_hall) "uFh" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/public_garden_maintenence) "uFs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -38869,8 +37198,6 @@ req_one_access = list(63) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -38909,8 +37236,6 @@ /area/tether/surfacebase/surface_one_hall) "uOe" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -38945,8 +37270,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -38981,8 +37304,6 @@ /area/tether/surfacebase/security/weaponsrange) "vih" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/lightorange{ @@ -39012,8 +37333,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/research, @@ -39093,8 +37412,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39150,8 +37467,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ @@ -39275,8 +37590,6 @@ req_one_access = newlist() }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ @@ -39296,8 +37609,6 @@ /area/tether/surfacebase/security/lowerhall) "wtD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ @@ -39323,8 +37634,6 @@ /area/tether/surfacebase/funny/hideyhole) "wvV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -39380,8 +37689,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -39416,8 +37723,6 @@ pixel_y = 22 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39518,8 +37823,6 @@ /area/tether/surfacebase/security/brig) "wVI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/green{ @@ -39559,16 +37862,12 @@ /area/maintenance/engineering/atmos/airlock/gas) "xdD" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, /area/maintenance/engineering/atmos/airlock/gas) "xdV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -39593,8 +37892,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39643,7 +37940,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -39666,8 +37962,6 @@ "xqZ" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -39714,8 +38008,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/gaycarpet, @@ -39729,11 +38021,9 @@ name_tag = "Civ West Subgrid" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/camera/network/engineering, @@ -39760,8 +38050,6 @@ /obj/effect/floor_decal/corner/grey/border, /obj/structure/table/bench/standard, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -39774,8 +38062,6 @@ /area/tether/surfacebase/surface_one_hall) "xAT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -39806,8 +38092,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/mouse_hole_spawner{ @@ -39820,8 +38104,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -39840,8 +38122,6 @@ name = "Clown" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -39855,13 +38135,9 @@ "xTI" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -39950,8 +38226,6 @@ "ybc" = ( /obj/structure/table/steel, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/lightorange{ @@ -39993,8 +38267,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -47022,10 +45294,10 @@ ahl ahl ahl ahl +aah +aah +aah ahl -ahN -ahN -ahN ahL anP adu @@ -47164,10 +45436,10 @@ aah aah aah aah +aah +aah +aah ahl -ahN -anA -ahN ahL acV adF @@ -47306,10 +45578,10 @@ aah aah aah aah +aah +aah +aah ahl -ahN -ahN -ahN ahL anP adu @@ -47448,9 +45720,9 @@ aah aah aah aah -ahl -ahl -ahl +aah +aah +aah ahl kJP anP @@ -55126,7 +53398,7 @@ gnH aaU aaU aaU -abR +aqP ark apF aah @@ -55461,7 +53733,7 @@ aSX aTG aSo arm -bcT +aCc aVf aUs aUu @@ -55471,7 +53743,7 @@ aWZ bcj bcF gzO -bcM +aEN aUm aUm aUm @@ -56318,7 +54590,7 @@ aUP rnt aUP aUP -sch +aDT gQH baU baU @@ -56456,7 +54728,7 @@ aah aUm lei wVm -uke +aDK jAq glu bcJ diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 8e86a4d649..7fc97778d1 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -183,8 +183,6 @@ /area/tether/surfacebase/medical/centralhall) "aap" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -450,13 +448,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -470,8 +464,6 @@ /area/tether/surfacebase/medical/centralhall) "aaM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -508,8 +500,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -531,8 +521,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -547,8 +535,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorwhite/corner2, @@ -567,13 +553,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -786,8 +768,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -810,8 +790,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -969,8 +947,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -1175,8 +1151,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -1195,8 +1169,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -1602,7 +1574,6 @@ opacity = 0 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -1862,8 +1833,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -1877,8 +1846,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -1891,8 +1858,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -1908,18 +1873,12 @@ /obj/structure/table/reinforced, /obj/machinery/microscope, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -1932,8 +1891,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -1942,8 +1899,6 @@ /obj/structure/table/reinforced, /obj/item/weapon/forensics/sample_kit, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -1982,7 +1937,6 @@ dir = 10 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/dark, @@ -2084,8 +2038,6 @@ /area/tether/surfacebase/medical/cmo) "adc" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2097,8 +2049,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -2110,7 +2060,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/flora/pottedplant/minitree, @@ -2344,8 +2293,6 @@ /area/tether/surfacebase/security/detective) "ady" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2377,8 +2324,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -2468,8 +2413,6 @@ "adK" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2620,8 +2563,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -2641,8 +2582,6 @@ req_one_access = list(5) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2802,8 +2741,6 @@ dir = 2 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/vermin, @@ -2830,8 +2767,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor, @@ -2875,8 +2810,6 @@ /area/tether/surfacebase/medical/cmo) "aep" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3026,13 +2959,9 @@ "aeF" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -3077,13 +3006,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -3161,13 +3086,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -3231,7 +3152,6 @@ opacity = 0 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -3318,8 +3238,6 @@ /area/tether/surfacebase/medical/cmo) "afe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -3412,8 +3330,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -3507,8 +3423,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/windowtint{ @@ -3577,8 +3491,6 @@ /area/tether/surfacebase/medical/examroom) "afr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -3586,8 +3498,6 @@ /area/maintenance/lower/north) "afs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -3712,8 +3622,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -3766,8 +3674,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -3838,8 +3744,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/vending/wardrobe/detdrobe, @@ -3943,7 +3847,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -4008,8 +3911,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/green, @@ -4027,8 +3928,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4073,8 +3972,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -4088,8 +3985,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4111,8 +4006,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4120,13 +4013,9 @@ "agj" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -4146,8 +4035,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -4161,8 +4048,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -4237,8 +4122,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner, @@ -4295,13 +4178,9 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -4329,8 +4208,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, @@ -4351,8 +4228,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -4364,16 +4239,12 @@ pixel_y = -26 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/outfitting/storage) "agG" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, @@ -4400,8 +4271,6 @@ "agK" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -4409,8 +4278,6 @@ "agL" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -4461,8 +4328,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -4473,8 +4338,6 @@ /area/tether/surfacebase/medical/centralhall) "agR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ @@ -4536,8 +4399,6 @@ /area/tether/surfacebase/surface_two_hall) "agW" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4554,8 +4415,6 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -4610,7 +4469,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/carpet, @@ -4640,7 +4498,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/carpet, @@ -4671,8 +4528,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/security{ @@ -4722,14 +4577,10 @@ "ahp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -4801,8 +4652,6 @@ /area/tether/surfacebase/security/outfitting/storage) "ahv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -4905,8 +4754,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/basic{ @@ -4931,8 +4778,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5076,8 +4921,6 @@ /area/tether/surfacebase/security/detective/officea) "ahS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet, @@ -5120,8 +4963,6 @@ /area/tether/surfacebase/security/detective/officeb) "ahW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -5147,8 +4988,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -5190,8 +5029,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -5275,8 +5112,6 @@ /area/tether/surfacebase/security/outfitting/storage) "aij" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, @@ -5379,8 +5214,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -5403,7 +5236,6 @@ /obj/item/weapon/cane, /obj/structure/table/glass, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/white, @@ -5423,8 +5255,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -5432,8 +5262,6 @@ /area/tether/surfacebase/medical/examroom) "aiv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -5448,8 +5276,6 @@ req_access = list(6) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -5501,8 +5327,6 @@ /area/tether/surfacebase/medical/centralhall) "aiz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5562,8 +5386,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -5795,8 +5617,6 @@ pixel_y = 64 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5877,8 +5697,6 @@ "aiZ" = ( /obj/structure/bed/chair/office/dark, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5919,8 +5737,6 @@ "aje" = ( /obj/structure/bed/chair/office/dark, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5988,8 +5804,6 @@ /area/tether/surfacebase/security/outfitting) "ajk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6432,8 +6246,6 @@ /area/maintenance/lower/north) "ajU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6467,8 +6279,6 @@ /obj/structure/table/woodentable, /obj/random/cigarettes, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6514,8 +6324,6 @@ /obj/structure/table/woodentable, /obj/random/cigarettes, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6553,8 +6361,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -6577,8 +6383,6 @@ name = "Equipment Storage" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -6871,7 +6675,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -7007,8 +6810,6 @@ /area/tether/surfacebase/medical/centralhall) "akQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -7069,8 +6870,6 @@ /area/tether/surfacebase/medical/uppersouthstairwell) "akU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7111,8 +6910,6 @@ /area/tether/surfacebase/public_garden_two) "akZ" = ( /obj/structure/cable/green{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /obj/structure/lattice, @@ -7134,8 +6931,6 @@ /area/tether/surfacebase/security/detective/officea) "alc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7154,8 +6949,6 @@ /area/tether/surfacebase/security/detective/officeb) "alg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7185,8 +6978,6 @@ /area/tether/surfacebase/security/middlehall) "alj" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/landmark{ @@ -7197,8 +6988,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -7262,8 +7051,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/alarm{ @@ -7303,8 +7090,6 @@ /area/tether/surfacebase/security/middlehall) "alo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7314,8 +7099,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -7554,8 +7337,6 @@ pixel_x = 25 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7624,13 +7405,9 @@ /area/tether/surfacebase/medical/bathroom) "alP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -7650,8 +7427,6 @@ /area/tether/surfacebase/medical/uppersouthstairwell) "alQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -7670,8 +7445,6 @@ /area/tether/surfacebase/medical/uppersouthstairwell) "alR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -7783,8 +7556,6 @@ /area/tether/surfacebase/medical/uppersouthstairwell) "alY" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7816,8 +7587,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7903,24 +7672,18 @@ /area/tether/surfacebase/public_garden_two) "ame" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) "amf" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) "amg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -7969,8 +7732,6 @@ /area/tether/surfacebase/security/detective/officeb) "aml" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7987,8 +7748,6 @@ /area/tether/surfacebase/security/detective/officeb) "amm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8029,8 +7788,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor, @@ -8053,8 +7810,6 @@ /area/tether/surfacebase/security/middlehall) "amr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -8125,8 +7880,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -8252,8 +8005,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -8299,8 +8050,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8317,8 +8066,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8353,8 +8100,6 @@ "amO" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8379,8 +8124,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -8504,8 +8247,6 @@ "and" = ( /obj/structure/railing, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/techfloor{ @@ -8562,8 +8303,6 @@ /area/maintenance/lower/public_garden_maintenence/upper) "anj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -8571,8 +8310,6 @@ "ank" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8589,8 +8326,6 @@ "anl" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8606,8 +8341,6 @@ /area/tether/surfacebase/security/detective/officeb) "anm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8650,8 +8383,6 @@ req_access = list(3) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -8677,8 +8408,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -8750,8 +8479,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -8759,8 +8486,6 @@ "anz" = ( /obj/structure/railing, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -8776,8 +8501,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -8788,13 +8511,9 @@ }, /obj/structure/railing, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -8845,8 +8564,6 @@ "anI" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8902,8 +8619,6 @@ "anN" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -8912,8 +8627,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -9068,7 +8781,6 @@ dir = 5 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -9077,8 +8789,6 @@ /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, @@ -9109,8 +8819,6 @@ /area/tether/surfacebase/security/middlehall) "aol" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9215,8 +8923,6 @@ /area/tether/surfacebase/security/middlehall) "aot" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9264,8 +8970,6 @@ name = "Warden" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/windowtint/multitint{ @@ -9383,8 +9087,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -9479,8 +9181,6 @@ /area/tether/surfacebase/medical/recoveryward) "aoI" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, @@ -9559,8 +9259,6 @@ "aoQ" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -9633,8 +9331,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -9673,7 +9369,6 @@ "apc" = ( /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/smes/buildable{ @@ -9691,13 +9386,10 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -9837,8 +9529,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -9858,8 +9548,6 @@ /area/tether/surfacebase/public_garden_two) "apv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -9885,8 +9573,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -9903,8 +9589,6 @@ }, /obj/machinery/door/airlock/maintenance/sec, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor, @@ -9921,8 +9605,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -9938,8 +9620,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -10032,8 +9712,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -10107,13 +9785,9 @@ /area/tether/surfacebase/security/middlehall) "apI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -10149,8 +9823,6 @@ /area/tether/surfacebase/security/warden) "apK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10184,8 +9856,6 @@ /area/tether/surfacebase/security/evastorage) "apO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -10305,7 +9975,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -10508,8 +10177,6 @@ }, /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -10528,8 +10195,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -10548,8 +10213,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -10564,26 +10227,18 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_two) "aqD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -10592,8 +10247,6 @@ /area/maintenance/lower/public_garden_maintenence/upper) "aqE" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -10637,8 +10290,6 @@ /area/tether/surfacebase/security/middlehall) "aqI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -10691,13 +10342,9 @@ }, /obj/item/weapon/pen, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -10766,8 +10413,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -10948,7 +10593,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/random/trash_pile, @@ -11062,8 +10706,6 @@ "arw" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -11130,8 +10772,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -11180,13 +10820,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, @@ -11325,8 +10961,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/visible/black{ @@ -11380,8 +11014,6 @@ /area/maintenance/asmaint2) "arX" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -11441,8 +11073,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/engineering{ @@ -11452,13 +11082,9 @@ /area/maintenance/substation/medsec) "ase" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor, @@ -11560,7 +11186,6 @@ /area/tether/surfacebase/emergency_storage/atmos) "asp" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -11659,8 +11284,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -11720,8 +11343,6 @@ "asD" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -11763,8 +11384,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, @@ -11906,8 +11525,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -11994,7 +11611,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -12104,8 +11720,6 @@ "atk" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, @@ -12118,8 +11732,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/visible/black{ @@ -12235,8 +11847,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/visible/black{ @@ -12247,8 +11857,6 @@ "aty" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -12258,8 +11866,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -12268,8 +11874,6 @@ /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -12283,8 +11887,6 @@ "atA" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -12315,8 +11917,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12396,8 +11996,6 @@ /area/maintenance/lower/public_garden_maintenence/upper) "atK" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12477,8 +12075,6 @@ /area/tether/surfacebase/security/middlehall) "atP" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -12524,8 +12120,6 @@ "atT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -12564,8 +12158,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -12575,8 +12167,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12589,8 +12179,6 @@ /area/maintenance/lower/south) "atX" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -12617,8 +12205,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12632,8 +12218,6 @@ "aua" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -12700,8 +12284,6 @@ /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -12813,13 +12395,9 @@ /area/tether/surfacebase/security/middlehall) "auq" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12852,8 +12430,6 @@ /area/tether/surfacebase/security/middlehall) "aus" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -12951,8 +12527,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor, @@ -12988,8 +12562,6 @@ /area/maintenance/asmaint2) "auE" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13005,8 +12577,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/meter, @@ -13035,15 +12605,11 @@ "auJ" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13073,8 +12639,6 @@ /area/tether/surfacebase/medical/recoveryward) "auN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering{ @@ -13089,8 +12653,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13164,8 +12726,6 @@ pixel_y = 22 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -13219,8 +12779,6 @@ "ava" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -13351,8 +12909,6 @@ /area/tether/surfacebase/security/middlehall) "avm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -13478,8 +13034,6 @@ "avu" = ( /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -13555,8 +13109,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -13630,8 +13182,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ @@ -13713,8 +13263,6 @@ /area/maintenance/lower/public_garden_maintenence/upper) "avR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13729,8 +13277,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/machinery/atmospherics/pipe/zpipe/up/supply{ @@ -13753,8 +13299,6 @@ req_one_access = list(63,4) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13844,8 +13388,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -13947,8 +13489,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -14002,8 +13542,6 @@ /area/maintenance/lower/public_garden_maintenence/upper) "awx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14096,8 +13634,6 @@ "awF" = ( /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -14128,7 +13664,6 @@ icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/industrial/outline/yellow, @@ -14194,8 +13729,6 @@ /area/tether/surfacebase/surface_two_hall) "awR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/railing{ @@ -14205,13 +13738,9 @@ /area/maintenance/asmaint2) "awS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -14266,8 +13795,6 @@ /area/tether/surfacebase/fish_farm) "awZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14344,8 +13871,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -14395,8 +13920,6 @@ /area/tether/surfacebase/surface_two_hall) "axn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -14412,8 +13935,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14431,8 +13952,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14448,8 +13967,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14459,8 +13976,6 @@ /area/tether/surfacebase/surface_two_hall) "axr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/extinguisher_cabinet{ @@ -14476,8 +13991,6 @@ /area/tether/surfacebase/surface_two_hall) "axs" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14493,8 +14006,6 @@ /area/tether/surfacebase/surface_two_hall) "axt" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14537,8 +14048,6 @@ pixel_y = 26 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14556,7 +14065,6 @@ pixel_y = 28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/disposalpipe/segment{ @@ -14803,7 +14311,6 @@ "aya" = ( /obj/structure/lattice, /obj/structure/cable/green{ - d1 = 32; icon_state = "32-1" }, /obj/machinery/door/firedoor/glass, @@ -14895,16 +14402,12 @@ /area/maintenance/lower/bar) "ayn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -15379,8 +14882,6 @@ /area/maintenance/lower/north) "azv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -15447,8 +14948,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/window/basic{ @@ -15468,8 +14967,6 @@ "azG" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/machinery/atmospherics/pipe/zpipe/up/supply{ @@ -15479,7 +14976,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -15510,12 +15006,9 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/plating, @@ -15702,8 +15195,6 @@ /area/maintenance/asmaint2) "aAg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -15737,8 +15228,6 @@ /area/maintenance/commandmaint) "aAk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -15748,8 +15237,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -15833,8 +15320,6 @@ /area/tether/surfacebase/surface_two_hall) "aAu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -16211,7 +15696,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -16263,8 +15747,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -16469,8 +15951,6 @@ dir = 2 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -16610,8 +16090,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -16718,8 +16196,6 @@ /area/tether/surfacebase/fish_farm) "aCt" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -16835,7 +16311,6 @@ pixel_y = -28 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloor, @@ -16858,8 +16333,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ @@ -16875,8 +16348,6 @@ pixel_y = -25 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -16889,8 +16360,6 @@ /area/tether/surfacebase/north_staires_two) "aCD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -16913,8 +16382,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16932,8 +16399,6 @@ /area/tether/surfacebase/surface_two_hall) "aCF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16949,8 +16414,6 @@ /area/tether/surfacebase/surface_two_hall) "aCG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16970,8 +16433,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/window/basic{ @@ -17284,8 +16745,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -17458,7 +16917,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -17486,8 +16944,6 @@ /area/maintenance/substation/command) "aDI" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -17561,8 +17017,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, @@ -17575,8 +17029,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -17589,8 +17041,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -17603,7 +17053,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -17619,8 +17068,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -17756,15 +17203,12 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, /area/maintenance/substation/command) "aEl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -17780,8 +17224,6 @@ /area/chapel/main) "aEn" = ( /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/structure/lattice, @@ -17811,21 +17253,15 @@ icon_state = "techfloororange_edges" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, /area/chapel/main) "aEp" = ( /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/effect/floor_decal/techfloor, @@ -17837,7 +17273,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/zpipe/up/supply{ @@ -17972,8 +17407,6 @@ /area/tether/surfacebase/fish_farm) "aED" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/corner, @@ -17985,13 +17418,9 @@ /area/maintenance/lower/rnd) "aEE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning, @@ -18056,8 +17485,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ @@ -18121,8 +17548,6 @@ pixel_y = 26 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -18136,8 +17561,6 @@ req_one_access = list(10,19) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -18148,8 +17571,6 @@ req_one_access = list(10,19) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -18175,8 +17596,6 @@ /obj/structure/catwalk, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -18234,8 +17653,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -18248,8 +17665,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, @@ -18306,8 +17721,6 @@ /area/maintenance/lower/rnd) "aFi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -18399,8 +17812,6 @@ /area/maintenance/commandmaint) "aFt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -18416,8 +17827,6 @@ /area/maintenance/commandmaint) "aFv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -18463,8 +17872,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -18480,8 +17887,6 @@ }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -18495,8 +17900,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -18512,8 +17915,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -18696,8 +18097,6 @@ /area/maintenance/lower/rnd) "aFU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/random/junk, @@ -18706,8 +18105,6 @@ "aFV" = ( /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -18795,8 +18192,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/wood, @@ -18819,8 +18214,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -18845,8 +18238,6 @@ /area/maintenance/commandmaint) "aGj" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18879,8 +18270,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -18899,8 +18288,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -18938,8 +18325,6 @@ /area/tether/surfacebase/surface_two_hall) "aGq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -19080,8 +18465,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -19248,8 +18631,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -19260,8 +18641,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -19381,8 +18760,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -19401,8 +18778,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -19522,8 +18897,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19545,8 +18918,6 @@ /area/tether/surfacebase/surface_two_hall) "aHQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19562,8 +18933,6 @@ name = "Chapel" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -19577,13 +18946,9 @@ /area/chapel/main) "aHS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19602,8 +18967,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -19620,8 +18983,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -19631,8 +18992,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -19856,8 +19215,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -19879,16 +19236,12 @@ /area/tether/surfacebase/surface_two_hall) "aIx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, /area/chapel/main) "aIy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19899,13 +19252,9 @@ "aIz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -19924,8 +19273,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -19942,8 +19289,6 @@ sortType = "Chapel" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -19957,8 +19302,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -19977,8 +19320,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -19992,8 +19333,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -20003,8 +19342,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -20018,8 +19355,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -20029,8 +19364,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -20150,8 +19483,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20326,8 +19657,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20575,16 +19904,12 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/lino, /area/chapel/office) "aJT" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/sign/painting/chapel_secure{ @@ -20718,8 +20043,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -20754,8 +20077,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ @@ -20899,8 +20220,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21093,7 +20412,6 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -21115,7 +20433,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -21233,8 +20550,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21282,8 +20597,6 @@ /area/chapel/office) "aLp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -21414,8 +20727,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/camera/network/engineering{ @@ -21425,13 +20736,9 @@ /area/maintenance/substation/research) "aLD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -21443,8 +20750,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -21559,8 +20864,6 @@ /area/tether/surfacebase/surface_two_hall) "aLR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21588,8 +20891,6 @@ /area/chapel/office) "aLU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/lino, @@ -21601,7 +20902,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/lino, @@ -21746,8 +21046,6 @@ /area/rnd/rdoffice) "aMl" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21756,8 +21054,6 @@ /area/rnd/rdoffice) "aMm" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -21775,7 +21071,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/bed/chair/office/light{ @@ -21791,8 +21086,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -21930,8 +21223,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -22051,8 +21342,6 @@ pixel_x = -24 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -22071,13 +21360,9 @@ }, /obj/machinery/light, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -22088,20 +21373,14 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -22133,13 +21412,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -22164,8 +21439,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -22193,8 +21466,6 @@ "aNb" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22275,8 +21546,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/border_only, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/multi_tile/glass, @@ -22310,7 +21579,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/high{ @@ -22321,16 +21589,12 @@ /area/server) "aNs" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/server) "aNt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -22343,8 +21607,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22369,8 +21631,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22418,8 +21678,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -22439,8 +21697,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22579,7 +21835,6 @@ /area/engineering/lower/breakroom) "aNM" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -22643,8 +21898,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -22726,8 +21979,6 @@ /area/server) "aOe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22751,16 +22002,12 @@ req_access = list(30) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/server) "aOg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -22770,8 +22017,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22790,8 +22035,6 @@ /area/rnd/staircase/secondfloor) "aOh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -22823,13 +22066,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -22847,8 +22086,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -22876,8 +22113,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -22899,8 +22134,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -22930,8 +22163,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22951,8 +22182,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner, @@ -22970,8 +22199,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -23002,18 +22229,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -23039,7 +22260,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -23161,8 +22381,6 @@ /area/engineering/lower/breakroom) "aOE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23196,8 +22414,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -23370,8 +22586,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23403,16 +22617,12 @@ /area/maintenance/asmaint2) "aPf" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) "aPg" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -23423,8 +22633,6 @@ /area/tether/surfacebase/emergency_storage/atmos) "aPh" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23434,16 +22642,12 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) "aPi" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23456,13 +22660,9 @@ /area/engineering/lower/lobby) "aPj" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23475,8 +22675,6 @@ /area/engineering/lower/lobby) "aPk" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -23490,8 +22688,6 @@ /area/engineering/lower/lobby) "aPl" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/red, @@ -23504,8 +22700,6 @@ /area/engineering/lower/lobby) "aPm" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23525,8 +22719,6 @@ /area/engineering/lower/lobby) "aPn" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23547,8 +22739,6 @@ /area/engineering/lower/breakroom) "aPo" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23564,8 +22754,6 @@ /area/engineering/lower/breakroom) "aPp" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -23623,8 +22811,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -23695,8 +22881,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust, @@ -23774,8 +22958,6 @@ icon_state = "pipe-j2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23888,8 +23070,6 @@ /area/engineering/lower/lobby) "aQb" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -23969,8 +23149,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -24209,8 +23387,6 @@ /area/engineering/lower/lobby) "aQO" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -24305,8 +23481,6 @@ icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -24316,7 +23490,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -24438,8 +23611,6 @@ "aRn" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24534,8 +23705,6 @@ /area/engineering/lower/lobby) "aRu" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -24609,8 +23778,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -24642,7 +23809,6 @@ dir = 5 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -24657,8 +23823,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -24668,8 +23832,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner_techfloor_grid{ @@ -24685,8 +23847,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24736,8 +23896,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24845,7 +24003,6 @@ /area/engineering/lower/atmos_lockers) "aRX" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -24884,8 +24041,6 @@ /area/engineering/lower/atmos_lockers) "aSa" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -24974,7 +24129,6 @@ dir = 10 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -25018,8 +24172,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -25053,8 +24205,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -25100,8 +24250,6 @@ /area/maintenance/asmaint2) "aSu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -25109,8 +24257,6 @@ "aSv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance/common, @@ -25142,8 +24288,6 @@ "aSz" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -25157,8 +24301,6 @@ /area/rnd/breakroom) "aSA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25171,8 +24313,6 @@ /area/rnd/breakroom) "aSB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -25182,16 +24322,12 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, /area/rnd/breakroom) "aSC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -25304,8 +24440,6 @@ /area/engineering/lower/atmos_lockers) "aSM" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -25327,8 +24461,6 @@ /area/engineering/lower/atmos_lockers) "aSO" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -25396,8 +24528,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -25438,8 +24568,6 @@ sortType = "Janitor Closet" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25584,8 +24712,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25624,22 +24750,17 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/wood, /area/rnd/breakroom) "aTx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/wood, @@ -25691,7 +24812,6 @@ pixel_x = -30 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/structure/dispenser{ @@ -25703,16 +24823,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) "aTF" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -25723,8 +24839,6 @@ /area/engineering/lower/atmos_eva) "aTG" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_atmos{ @@ -25736,8 +24850,6 @@ /area/engineering/lower/atmos_eva) "aTH" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -25750,16 +24862,12 @@ /area/engineering/lower/atmos_lockers) "aTI" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) "aTJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25772,13 +24880,9 @@ /area/engineering/lower/atmos_lockers) "aTK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25792,8 +24896,6 @@ /area/engineering/lower/atmos_lockers) "aTL" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25810,8 +24912,6 @@ /area/engineering/lower/atmos_lockers) "aTM" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25829,18 +24929,12 @@ /area/engineering/lower/atmos_lockers) "aTN" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -25860,8 +24954,6 @@ /area/engineering/atmos) "aTO" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25874,8 +24966,6 @@ /area/engineering/atmos) "aTP" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/red, @@ -25887,8 +24977,6 @@ /area/engineering/atmos) "aTQ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25906,8 +24994,6 @@ /area/engineering/atmos/storage) "aTS" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25920,8 +25006,6 @@ /area/engineering/atmos/storage) "aTT" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25931,8 +25015,6 @@ /area/engineering/atmos/storage) "aTU" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26008,8 +25090,6 @@ "aUn" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26144,8 +25224,6 @@ /area/engineering/lower/atmos_lockers) "aUA" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -26313,8 +25391,6 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -26339,23 +25415,18 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) "aVf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) "aVg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -26405,8 +25476,6 @@ /area/engineering/lower/atmos_lockers) "aVm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, @@ -26444,8 +25513,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -26488,7 +25555,6 @@ pixel_x = -30 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -26498,8 +25564,6 @@ /area/janitor) "aVy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -26510,8 +25574,6 @@ req_access = list(26) }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -26522,13 +25584,9 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -26537,8 +25595,6 @@ "aVB" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -26547,8 +25603,6 @@ /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -26652,8 +25706,6 @@ /area/engineering/atmos) "aVS" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -26678,8 +25730,6 @@ /area/engineering/atmos) "aVT" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -26694,8 +25744,6 @@ /area/engineering/atmos) "aVU" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -26723,8 +25771,6 @@ /area/engineering/atmos) "aVV" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -26747,8 +25793,6 @@ /area/engineering/atmos) "aVW" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -26767,13 +25811,9 @@ /area/engineering/atmos) "aVX" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -26792,8 +25832,6 @@ /area/engineering/atmos) "aVY" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -26812,8 +25850,6 @@ /area/engineering/atmos) "aVZ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -26841,13 +25877,9 @@ /area/engineering/atmos) "aWa" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -26869,8 +25901,6 @@ /area/engineering/atmos) "aWb" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -26901,8 +25931,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -26916,8 +25944,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -26951,8 +25977,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -26974,8 +25998,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -27000,8 +26022,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -27023,8 +26043,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -27043,8 +26061,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -27069,8 +26085,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -27095,8 +26109,6 @@ dir = 9 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -27209,8 +26221,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -27317,8 +26327,6 @@ /area/engineering/atmos) "aWL" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor, @@ -27389,8 +26397,6 @@ /area/engineering/atmos) "aWR" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ @@ -27454,8 +26460,6 @@ /area/engineering/atmos) "aWV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/red{ @@ -27686,8 +26690,6 @@ /area/engineering/drone_fabrication) "aXz" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27723,8 +26725,6 @@ /area/engineering/atmos) "aXE" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/red, @@ -27742,8 +26742,6 @@ /area/engineering/atmos/monitoring) "aXH" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27926,8 +26924,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -27973,7 +26969,6 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning, @@ -27982,8 +26977,6 @@ /area/engineering/drone_fabrication) "aYg" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning, @@ -27995,8 +26988,6 @@ /area/engineering/drone_fabrication) "aYh" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning, @@ -28032,7 +27023,6 @@ /area/engineering/atmos) "aYk" = ( /obj/structure/cable/cyan{ - d1 = 32; icon_state = "32-1" }, /obj/structure/lattice, @@ -28090,8 +27080,6 @@ /area/engineering/atmos/monitoring) "aYn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28107,8 +27095,6 @@ /area/engineering/atmos/monitoring) "aYo" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -28133,7 +27119,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/borderfloor{ @@ -28728,8 +27713,6 @@ "aZV" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -28749,8 +27732,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -28764,8 +27745,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -28917,8 +27896,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -29012,8 +27989,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29062,8 +28037,6 @@ }, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty, @@ -29117,8 +28090,6 @@ /area/maintenance/lower/south) "bbt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm{ @@ -29129,7 +28100,6 @@ /area/maintenance/asmaint2) "bbw" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -29237,8 +28207,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -29256,8 +28224,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -29445,7 +28411,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/catwalk, @@ -29538,8 +28503,6 @@ /area/maintenance/lower/south) "bdb" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -29547,21 +28510,15 @@ "bdd" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, /area/maintenance/lower/south) "bde" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -29574,16 +28531,12 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/lower/south) "bdg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -29725,8 +28678,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -29785,8 +28736,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -29829,16 +28778,12 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, /area/maintenance/lower/south) "bdE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -29850,8 +28795,6 @@ /obj/structure/catwalk, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -30686,7 +29629,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/wood, @@ -30911,8 +29853,6 @@ /area/maintenance/lower/atmos) "bhV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -31163,24 +30103,18 @@ /area/maintenance/lower/atmos) "biU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) "biV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) "biW" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -31320,8 +30254,6 @@ "bju" = ( /obj/structure/simple_door/wood, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -31391,8 +30323,6 @@ /area/vacant/vacant_bar_upper) "bjL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -31402,8 +30332,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/wood, @@ -31415,7 +30343,6 @@ pixel_x = 28 }, /obj/structure/cable/orange{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/wood, @@ -31652,8 +30579,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/wood, @@ -31750,8 +30675,6 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "bkQ" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31821,7 +30744,6 @@ /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/cable/green{ - d1 = 32; icon_state = "32-1" }, /turf/simulated/floor/wood, @@ -31917,8 +30839,6 @@ /obj/machinery/atmospherics/pipe/zpipe/up/supply, /obj/structure/cable/green, /obj/structure/cable/green{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/disposalpipe/up, @@ -32007,7 +30927,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/super{ @@ -32029,8 +30948,6 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "blL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -32044,8 +30961,6 @@ /area/rnd/outpost/xenobiology/outpost_slimepens) "blM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -32500,8 +31415,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -32530,14 +31443,10 @@ /area/tether/surfacebase/medical/recoveryward) "boQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -32581,8 +31490,6 @@ /area/tether/surfacebase/medical/bathroom) "bpe" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -32629,8 +31536,6 @@ /area/tether/surfacebase/medical/bathroom) "bpE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance/medical{ @@ -32652,8 +31557,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ @@ -32672,8 +31575,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32772,8 +31673,6 @@ "bpX" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -32809,8 +31708,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -32833,8 +31730,6 @@ /area/tether/surfacebase/fish_farm) "bTu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -32855,8 +31750,6 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -32880,8 +31773,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -32954,8 +31845,6 @@ /area/chapel/main) "dAB" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -32984,7 +31873,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -33023,13 +31911,9 @@ /area/ai_upload) "ekH" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/light/small{ @@ -33071,8 +31955,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -33189,8 +32071,6 @@ /area/ai_upload) "geH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -33200,8 +32080,6 @@ /area/ai) "glx" = ( /obj/structure/cable/orange{ - d1 = 16; - d2 = 0; icon_state = "16-0" }, /obj/structure/cable/orange, @@ -33262,8 +32140,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -33347,7 +32223,6 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/techfloor, @@ -33467,8 +32342,6 @@ /area/maintenance/lower/atmos) "jxi" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -33505,8 +32378,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -33530,8 +32401,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/power/apc{ @@ -33571,8 +32440,6 @@ /area/ai) "keC" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -33585,8 +32452,6 @@ /area/ai_upload_foyer) "keS" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -33601,13 +32466,9 @@ /area/ai) "klz" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -33630,8 +32491,6 @@ /area/ai) "kpg" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -33644,8 +32503,6 @@ /area/ai_upload_foyer) "kqp" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -33666,8 +32523,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33716,8 +32571,6 @@ /area/maintenance/lower/north) "kPg" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -33731,8 +32584,6 @@ /area/ai_upload) "kPR" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -33836,8 +32687,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33878,8 +32727,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -33906,8 +32753,6 @@ "mDn" = ( /obj/structure/lattice, /obj/structure/cable/orange{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /turf/simulated/open, @@ -33941,8 +32786,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -33981,8 +32824,6 @@ /area/bridge/meeting_room) "ndB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34054,8 +32895,6 @@ /area/tether/surfacebase/medical/breakroom) "nSl" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -34064,8 +32903,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/highsecurity{ @@ -34108,8 +32945,6 @@ /area/maintenance/lower/rnd) "oXH" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34141,8 +32976,6 @@ /area/tether/surfacebase/fish_farm) "pAF" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid, @@ -34161,7 +32994,6 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/camera/network/command{ @@ -34194,8 +33026,6 @@ }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -34239,8 +33069,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, @@ -34280,8 +33108,6 @@ /area/ai_upload) "qzJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -34302,7 +33128,6 @@ pixel_y = -28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -34375,8 +33200,6 @@ /area/tether/surfacebase/surface_two_hall) "roB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/command, @@ -34466,7 +33289,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techmaint, @@ -34488,8 +33310,6 @@ /area/ai) "rYR" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/techfloor{ @@ -34519,8 +33339,6 @@ /area/ai) "slS" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -34530,16 +33348,12 @@ /area/ai) "srN" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) "suL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -34557,8 +33371,6 @@ /area/tether/surfacebase/fish_farm) "sDE" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -34583,8 +33395,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/mouse_hole_spawner{ @@ -34613,8 +33423,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/button/windowtint{ @@ -34635,7 +33443,6 @@ dir = 1 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/techfloor, @@ -34656,13 +33463,9 @@ /area/maintenance/lower/north) "tfK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -34678,8 +33481,6 @@ /area/ai_upload) "tlw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -34693,8 +33494,6 @@ /area/maintenance/lower/north) "tqq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -34754,8 +33553,6 @@ /area/ai) "tJi" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34772,8 +33569,6 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -34797,8 +33592,6 @@ /area/ai_upload) "tWV" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -34928,13 +33721,9 @@ /area/ai) "uNQ" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34955,7 +33744,6 @@ pixel_y = 28 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/techfloor{ @@ -34972,21 +33760,15 @@ "vlg" = ( /obj/machinery/porta_turret/ai_defense, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) "vmf" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/techfloor{ @@ -35019,8 +33801,6 @@ /area/maintenance/lower/south) "vuy" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -35037,8 +33817,6 @@ req_access = list(16) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -35072,8 +33850,6 @@ }, /obj/machinery/hologram/holopad, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/bluegrid, @@ -35106,8 +33882,6 @@ /area/maintenance/lower/south) "wyu" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor, @@ -35140,8 +33914,6 @@ /area/ai) "wJB" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -35164,8 +33936,6 @@ /area/ai_upload) "wOp" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35179,8 +33949,6 @@ /area/ai_upload) "wTg" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35213,8 +33981,6 @@ /area/maintenance/lower/atmos) "xfa" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35232,8 +33998,6 @@ /area/ai_upload) "xld" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index f3629300e3..b288e9854d 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -100,8 +100,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -380,8 +378,6 @@ req_one_access = list(1,38) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -579,8 +575,6 @@ /area/tether/surfacebase/outside/outside3) "aaV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -602,8 +596,6 @@ /area/tether/surfacebase/security/upperhall) "aaW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -635,8 +627,6 @@ /area/tether/surfacebase/security/iaa) "aaY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -751,13 +741,9 @@ /area/tether/surfacebase/medical/storage) "abi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -789,8 +775,6 @@ /area/tether/surfacebase/security/upperhall) "abj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -879,8 +863,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -898,8 +880,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -986,12 +966,10 @@ /obj/machinery/atmospherics/pipe/zpipe/down/supply, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, /obj/structure/cable/green{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "abA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -1004,19 +982,17 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "abB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/railing, /obj/structure/grille, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "abC" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/iaa) @@ -1047,16 +1023,12 @@ name = "lightsout" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/iaa) "abG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1066,8 +1038,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1106,7 +1076,6 @@ dir = 9 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -1129,8 +1098,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1161,8 +1128,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1175,8 +1140,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -1185,8 +1148,6 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -1246,8 +1207,6 @@ /area/maintenance/lower/medsec_maintenance) "abT" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1266,8 +1225,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -1276,8 +1233,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -1305,8 +1260,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -1396,7 +1349,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/flora/pottedplant{ @@ -1414,8 +1366,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1541,8 +1491,6 @@ /area/rnd/xenobiology/xenoflora_storage) "aco" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1571,8 +1519,6 @@ /area/tether/surfacebase/security/upperhall) "acr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -1612,13 +1558,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -1674,7 +1616,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/white, @@ -1839,8 +1780,6 @@ }) "acO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1879,7 +1818,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -1929,8 +1867,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1982,13 +1918,6 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"acY" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/structure/closet/athletic_swimwear, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) "acZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -2012,8 +1941,6 @@ /obj/machinery/vitals_monitor, /obj/machinery/light, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2051,7 +1978,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -2072,8 +1998,6 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/red/bordercorner2, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -2121,8 +2045,6 @@ /area/tether/surfacebase/security/lobby) "adj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2195,8 +2117,6 @@ "adn" = ( /obj/machinery/door/airlock/glass_security, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2282,13 +2202,9 @@ /area/tether/surfacebase/security/briefingroom) "adt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2317,8 +2233,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -2420,8 +2334,6 @@ /area/tether/surfacebase/medical/triage) "adA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2623,8 +2535,6 @@ /area/tether/surfacebase/security/upperhall) "adT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2806,8 +2716,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -2846,8 +2754,6 @@ pixel_y = 30 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -2867,8 +2773,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -2901,14 +2805,21 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) "aeo" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/obj/machinery/atm{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "aep" = ( /obj/machinery/firealarm{ pixel_y = 26 @@ -3020,8 +2931,6 @@ /area/rnd/research_storage) "aev" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/bed/chair{ @@ -3043,8 +2952,6 @@ /area/tether/surfacebase/security/processing) "aex" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -3064,8 +2971,6 @@ /area/tether/surfacebase/security/processing) "aey" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3084,8 +2989,6 @@ /area/tether/surfacebase/security/processing) "aez" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3121,13 +3024,9 @@ /area/tether/surfacebase/medical/admin) "aeB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3195,8 +3094,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3348,8 +3245,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -3480,8 +3375,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor/corner2{ @@ -3544,8 +3437,18 @@ /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) "afj" = ( -/turf/simulated/wall, -/area/crew_quarters/recreation_area_restroom) +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "afk" = ( /obj/structure/cable{ icon_state = "32-4" @@ -3582,8 +3485,6 @@ /area/tether/surfacebase/security/upperhall) "afn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3610,8 +3511,6 @@ /area/tether/surfacebase/security/iaa/officecommon) "afo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -3646,8 +3545,6 @@ /area/rnd/xenobiology/xenoflora_storage) "afs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3919,8 +3816,6 @@ /area/rnd/xenobiology/xenoflora_storage) "afJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -3973,11 +3868,14 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/captain) "afQ" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "afR" = ( /obj/structure/table/bench/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -4089,8 +3987,6 @@ /area/tether/surfacebase/medical/admin) "agb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -4109,13 +4005,9 @@ /area/tether/surfacebase/security/briefingroom) "agd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -4151,8 +4043,6 @@ /area/tether/surfacebase/security/iaa/officecommon) "agf" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -4178,8 +4068,6 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -4294,7 +4182,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "agq" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -4498,7 +4386,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/disposalpipe/segment, @@ -4530,16 +4417,12 @@ /obj/machinery/door/firedoor/glass, /obj/structure/lattice, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /turf/simulated/open, /area/maintenance/lower/medsec_maintenance) "agK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ @@ -4550,7 +4433,6 @@ /area/maintenance/lower/medsec_maintenance) "agL" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -4690,8 +4572,6 @@ /area/tether/surfacebase/security/lobby) "agV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -4699,16 +4579,12 @@ }, /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -4719,8 +4595,6 @@ /area/tether/surfacebase/security/upperhall) "agW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4757,8 +4631,6 @@ icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -4793,8 +4665,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -4813,7 +4683,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "ahd" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" @@ -4851,8 +4721,6 @@ "ahi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4911,8 +4779,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -4941,14 +4807,6 @@ }, /turf/simulated/floor/plating, /area/rnd/workshop) -"ahq" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) "ahr" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/techfloor{ @@ -5010,8 +4868,6 @@ opacity = 0 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5029,8 +4885,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5116,8 +4970,6 @@ /area/tether/surfacebase/surface_three_hall) "ahC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5158,15 +5010,12 @@ dir = 4 }, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/medsec_maintenance) "ahF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5184,8 +5033,6 @@ /area/tether/surfacebase/security/lobby) "ahG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -5234,8 +5081,6 @@ /area/tether/surfacebase/security/lobby) "ahJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5296,13 +5141,9 @@ /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -5342,8 +5183,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -5583,8 +5422,6 @@ open_layer = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -5607,7 +5444,7 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "ail" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -5629,8 +5466,6 @@ pixel_x = -24 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -5649,8 +5484,6 @@ /area/tether/surfacebase/medical/triage) "ain" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -5698,8 +5531,16 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "ais" = ( /obj/item/device/radio/intercom{ dir = 8; @@ -5752,7 +5593,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "aiy" = ( /obj/structure/table/steel, /obj/item/device/electronic_assembly/large/default, @@ -5794,24 +5635,20 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) "aiC" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aiD" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -5821,17 +5658,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, +/obj/effect/mouse_hole_spawner, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "aiE" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_north_airlock) @@ -5845,6 +5674,53 @@ /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) "aiG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) +"aiH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) +"aiI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) +"aiJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) +"aiK" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -5861,53 +5737,9 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiH" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/tagger{ - dir = 2; - name = "package tagger - Resleeving"; - sort_tag = "Resleeving" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/recreation_area_restroom) -"aiI" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"aiJ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aiK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) +/area/tether/surfacebase/surface_three_hall/west) "aiL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5962,8 +5794,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5980,16 +5810,12 @@ /area/tether/surfacebase/security/upperhall) "aiP" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6192,8 +6018,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -6217,8 +6041,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6238,8 +6060,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6258,7 +6078,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "ajk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -6267,8 +6087,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -6358,7 +6176,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -6411,8 +6228,6 @@ "ajy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -6440,13 +6255,8 @@ dir = 4 }, /obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "ajB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6454,8 +6264,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -6469,8 +6277,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6486,8 +6292,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -6553,14 +6357,14 @@ }, /area/tether/surfacebase/security/upperhall) "ajK" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "ajL" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6628,8 +6432,6 @@ /area/tether/surfacebase/security/lobby) "ajP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6699,8 +6501,6 @@ /area/rnd/xenobiology/xenoflora_storage) "ajX" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6742,8 +6542,6 @@ /area/rnd/xenobiology/xenoflora_storage) "aka" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6770,16 +6568,12 @@ /area/tether/surfacebase/medical/admin) "akb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) "akc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6792,8 +6586,6 @@ /area/tether/surfacebase/surface_three_hall) "akd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6808,8 +6600,6 @@ /area/rnd/xenobiology/xenoflora_storage) "ake" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/paleblue/full{ @@ -6833,8 +6623,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -6856,7 +6644,7 @@ /obj/machinery/door/firedoor, /obj/structure/window/reinforced/full, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "akl" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -6868,7 +6656,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "akm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -6899,37 +6687,49 @@ "akp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "akq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "akr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aks" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -6963,17 +6763,16 @@ /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) "aku" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "akv" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -6985,13 +6784,11 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "akw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/paleblue/full{ @@ -7009,7 +6806,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aky" = ( /obj/structure/table, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -7021,14 +6818,10 @@ /area/maintenance/lower/medsec_maintenance) "akz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -7080,7 +6873,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "akD" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -7234,8 +7027,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7260,13 +7051,13 @@ "akS" = ( /turf/simulated/wall, /area/crew_quarters/pool) -"akT" = ( +"akU" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"akU" = ( +"akV" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Pool" }, @@ -7276,20 +7067,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/pool) -"akV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/pool) "akW" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 @@ -7307,11 +7084,17 @@ /turf/simulated/wall, /area/crew_quarters/recreation_area) "akZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/pool) "ala" = ( /obj/structure/bed/chair{ dir = 1 @@ -7323,7 +7106,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "alb" = ( /obj/structure/bed/chair{ dir = 1 @@ -7338,7 +7121,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "alc" = ( /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) @@ -7346,14 +7129,14 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_three) +/area/tether/surfacebase/surface_three_hall/nwest) "ale" = ( /obj/structure/sign/directions/engineering{ dir = 10; pixel_y = -10 }, /turf/simulated/wall, -/area/tether/surfacebase/north_stairs_three) +/area/tether/surfacebase/surface_three_hall/nwest) "alf" = ( /obj/structure/sign/directions/medical{ dir = 4; @@ -7367,7 +7150,7 @@ pixel_y = -4 }, /turf/simulated/wall, -/area/tether/surfacebase/north_stairs_three) +/area/tether/surfacebase/surface_three_hall/nwest) "alg" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -7452,8 +7235,6 @@ req_access = list(57) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/door/blast/shutters{ @@ -7509,8 +7290,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7525,29 +7304,25 @@ /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) "alw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"alx" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aly" = ( -/obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/spline/plain{ dir = 1 }, -/obj/machinery/status_display{ - pixel_y = 30 +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alx" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) @@ -7559,8 +7334,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_research{ @@ -7571,56 +7344,6 @@ /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenobiology/xenoflora_storage) "alA" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/closet{ - name = "Clothing Storage" - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alB" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alC" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alD" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alE" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"alF" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -7629,7 +7352,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"alG" = ( +"alB" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -7639,12 +7362,45 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) +"alC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alD" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/closet/athletic_swimwear, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"alE" = ( +/obj/machinery/vending/fitness, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"alF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/pool) +"alG" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "alH" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -7656,8 +7412,6 @@ /area/rnd/outpost/xenobiology/outpost_hallway) "alI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7675,18 +7429,18 @@ /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) "alJ" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"alK" = ( -/obj/structure/closet/athletic_mixed, -/obj/machinery/status_display{ - pixel_y = 30 - }, +/obj/machinery/fitness/heavy/lifter, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"alL" = ( -/obj/machinery/fitness/punching_bag/clown, +"alK" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/clothing/shoes/boots/jackboots{ + desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; + name = "Dhaeleena's Jackboots" + }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "alM" = ( @@ -7709,27 +7463,37 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) "alN" = ( -/obj/machinery/fitness/heavy/lifter, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "alO" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/obj/item/clothing/shoes/boots/jackboots{ - desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; - name = "Dhaeleena's Jackboots" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "alP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "alQ" = ( /obj/machinery/light_switch{ pixel_y = 25 @@ -7802,8 +7566,6 @@ /area/tether/surfacebase/surface_three_hall) "ama" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -7887,8 +7649,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -7904,27 +7664,15 @@ /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) "amm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "amp" = ( @@ -7934,51 +7682,53 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "amq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/plain{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + icon_state = "4-8" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "amr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/freezer, +/turf/simulated/floor/tiled, /area/crew_quarters/pool) "ams" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + icon_state = "2-8" }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "amt" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 10 @@ -7992,20 +7742,33 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) "amv" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"amw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "amx" = ( -/obj/machinery/light_switch{ - pixel_x = 25 +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "amy" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/north_stairs_three) +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "amz" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -8127,8 +7890,6 @@ /area/tether/surfacebase/surface_three_hall) "amH" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8145,8 +7906,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -8184,8 +7943,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/hatch{ @@ -8194,37 +7951,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"amM" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amN" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"amO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) "amP" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"amQ" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) -"amR" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) "amS" = ( @@ -8245,8 +7975,6 @@ /area/rnd/research/researchdivision) "amU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -8308,23 +8036,25 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) "ana" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/glasses/threedglasses, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/random/paicard, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/structure/closet{ + name = "Clothing Storage" + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "anb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/plating, -/area/crew_quarters/recreation_area) +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "anc" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock{ @@ -8367,8 +8097,6 @@ }, /obj/effect/floor_decal/borderfloorblack, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -8399,8 +8127,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8493,8 +8219,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8514,36 +8238,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"anv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"anw" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"anx" = ( -/turf/simulated/floor/water/deep/pool, -/area/crew_quarters/pool) -"any" = ( -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) "anz" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "anA" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, @@ -8566,13 +8266,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"anB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) "anC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -8591,8 +8284,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -8608,25 +8299,21 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) "anF" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/coin/silver, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/vending/fitness, +/obj/machinery/light{ + dir = 1 }, -/obj/machinery/recharger, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) "anG" = ( /obj/structure/flora/tree/sif, /turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/north_stairs_three) +/area/tether/surfacebase/outside/outside3) "anH" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -8731,8 +8418,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance/int{ @@ -8749,8 +8434,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -8762,8 +8445,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -8776,8 +8457,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -8801,8 +8480,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -8820,8 +8497,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -8836,8 +8511,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -8869,32 +8542,12 @@ /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) "anZ" = ( -/obj/structure/table/glass, -/obj/item/weapon/inflatable_duck, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aoa" = ( -/obj/item/weapon/stool/padded, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/water/pool, /area/crew_quarters/pool) "aob" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 +/obj/machinery/camera/network/civilian{ + dir = 9 }, -/obj/structure/cable/green, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "aoc" = ( @@ -8907,15 +8560,14 @@ /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aod" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "aoe" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /obj/effect/floor_decal/industrial/warning{ @@ -8992,8 +8644,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/int{ @@ -9024,39 +8674,11 @@ /turf/simulated/floor/grass, /area/hydroponics) "aoq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, /obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; - pixel_x = -32 + dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"aor" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/obj/item/weapon/beach_ball, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aos" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aot" = ( -/obj/structure/table/glass, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) "aou" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -9064,63 +8686,57 @@ /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, -/obj/machinery/vending/snack{ - dir = 1 - }, /obj/machinery/light, +/obj/random/vendorfood, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "aov" = ( -/obj/machinery/scale, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "aow" = ( -/obj/machinery/scale, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "aox" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "aoy" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/staircase/thirdfloor) "aoz" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "aoA" = ( /obj/machinery/light_switch{ pixel_y = -25 @@ -9210,8 +8826,6 @@ /area/tether/surfacebase/surface_three_hall) "aoH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, @@ -9324,45 +8938,26 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) "aoS" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/light/floortube{ - dir = 4; - pixel_x = 6 - }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "aoT" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "aoU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"aoV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/machinery/light/floortube{ - dir = 8; - pixel_x = -6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"aoV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass{ - name = "Recreation Area" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/recreation_area) "aoW" = ( /obj/machinery/alarm{ pixel_y = 20 @@ -9582,190 +9177,112 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) -"apm" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"apn" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) "apo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/wall, +/area/tether/surfacebase/surface_three_hall/nwest) "app" = ( -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "apq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"apr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + icon_state = "1-4" }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aps" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apr" = ( +/area/tether/surfacebase/surface_three_hall/nwest) +"apt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) +"apu" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 + dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/vending/nifsoft_shop, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apu" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apv" = ( -/obj/machinery/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apw" = ( -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"apx" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/area/tether/surfacebase/surface_three_hall/west) "apy" = ( -/obj/machinery/shower{ - dir = 8; - pixel_x = -5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "apz" = ( -/obj/structure/table/rack, -/obj/random/maintenance/research, -/obj/random/maintenance/medical, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/paicard, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Recreation Area" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/recreation_area) "apA" = ( /obj/structure/table/steel, /obj/fiftyspawner/steel, @@ -9853,8 +9370,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9901,16 +9416,26 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) "apI" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer, +/turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) "apJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "apK" = ( /obj/structure/sign/department/robo{ pixel_x = 32 @@ -9930,64 +9455,50 @@ /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) "apL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/crew_quarters/pool) +/area/tether/surfacebase/surface_three_hall/west) "apM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/crew_quarters/pool) +/area/tether/surfacebase/surface_three_hall/west) "apN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass{ - name = "Pool" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) "apO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "atrium" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_three_hall/nwest) "apP" = ( /obj/structure/table/glass, /obj/effect/floor_decal/borderfloor{ @@ -10005,22 +9516,18 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) "apQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "apR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -10028,75 +9535,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "apS" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "apT" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/spline/plain{ dir = 9 }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"apU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) "apV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/obj/structure/redgate, +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/surface_three_hall/west) "apW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) "apX" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -10110,7 +9573,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "apY" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -10132,7 +9595,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "aqa" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -10236,13 +9699,9 @@ /area/vacant/vacant_shop) "aqj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -10300,8 +9759,6 @@ /area/hydroponics) "aqn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10330,40 +9787,35 @@ /turf/simulated/floor/grass, /area/hydroponics) "aqr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"aqs" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, +/obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) "aqt" = ( /obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/deep/pool, +/turf/simulated/floor/water/pool, /area/crew_quarters/pool) "aqu" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/water/pool, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, /area/crew_quarters/pool) "aqv" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/turf/simulated/floor/water/pool, -/area/crew_quarters/pool) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "aqw" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ @@ -10432,23 +9884,11 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) "aqB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 +/obj/effect/floor_decal/spline/plain{ + dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) "aqC" = ( /obj/item/device/radio/intercom{ dir = 1; @@ -10463,36 +9903,26 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) "aqD" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 }, -/obj/machinery/disposal/wall/cleaner, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/sign/painting/public{ + pixel_x = -30 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) -"aqE" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/structure/bed/chair/wood{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) +"aqE" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) "aqF" = ( /obj/machinery/power/apc{ dir = 1; @@ -10508,121 +9938,59 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) "aqG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"aqJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"aqK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"aqH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) +"aqI" = ( +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall/nwest) "aqL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"aqM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/spline/fancy{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/surface_three_hall/west) +"aqM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "aqN" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/engineering, -/obj/random/maintenance/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) "aqO" = ( /turf/simulated/floor/plating, /area/tether/surfacebase/surface_three_hall) @@ -10632,7 +10000,7 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "aqQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -10762,8 +10130,6 @@ "arb" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10775,22 +10141,15 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) "arc" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/computer/guestpass{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/obj/structure/grille, +/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_three_hall/nwest) "ard" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/spline/plain{ + dir = 4 }, -/turf/simulated/floor/tiled/freezer, +/turf/simulated/floor/water/pool, /area/crew_quarters/pool) "are" = ( /obj/structure/disposalpipe/segment{ @@ -10798,30 +10157,27 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"arf" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arg" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) "arh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"ari" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/crew_quarters/pool) +/area/tether/surfacebase/surface_three_hall/west) +"ari" = ( +/turf/simulated/wall, +/area/crew_quarters/recreation_area_restroom) "arj" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -10866,23 +10222,25 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"arl" = ( -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) -"arm" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 +/obj/machinery/light{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom{ - name = "\improper Recreation Area Showers" - }) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"arm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "arn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -10897,7 +10255,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloor{ @@ -10926,8 +10283,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10944,8 +10299,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10968,8 +10321,6 @@ /area/rnd/xenobiology/xenoflora) "art" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -10988,13 +10339,11 @@ /turf/simulated/wall, /area/crew_quarters/kitchen) "arv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, -/turf/simulated/floor/tiled/freezer, +/turf/simulated/floor/tiled, /area/crew_quarters/pool) "arw" = ( /obj/effect/floor_decal/spline/plain, @@ -11006,8 +10355,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11023,46 +10370,100 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) "ary" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) "arz" = ( -/obj/effect/floor_decal/spline/plain, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arA" = ( -/obj/effect/floor_decal/spline/plain{ +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"arB" = ( -/obj/structure/closet/lasertag/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"arC" = ( -/obj/structure/closet/lasertag/blue, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"arD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) +"arA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"arB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"arC" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/disposal/wall/cleaner, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"arD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "arE" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -11080,9 +10481,12 @@ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/machinery/vending/radren, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/vendordrink, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "arF" = ( /obj/machinery/vending/fitness, /obj/effect/floor_decal/corner/lightgrey{ @@ -11102,7 +10506,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "arG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11116,8 +10520,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11139,8 +10541,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -11156,8 +10556,6 @@ /area/crew_quarters/bar) "arK" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/grass, @@ -11177,8 +10575,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11210,16 +10606,14 @@ /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/obj/machinery/vending/snack, +/obj/random/vendorfood, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "arO" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11239,8 +10633,6 @@ "arP" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11266,8 +10658,6 @@ "arS" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11284,8 +10674,6 @@ "arT" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/corner/mauve{ @@ -11294,15 +10682,16 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) "arU" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "arV" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -11357,21 +10746,14 @@ /turf/simulated/floor/tiled, /area/rnd/research) "asc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/structure/table/woodentable, +/obj/item/weapon/coin/silver, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "asd" = ( /obj/structure/sign/biohazard{ pixel_y = 32 @@ -11443,8 +10825,6 @@ "asl" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11477,16 +10857,12 @@ /area/tether/surfacebase/surface_three_hall) "aso" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/grass, /area/hydroponics) "asp" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -11513,6 +10889,18 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "ass" = ( +/obj/structure/table/glass, +/obj/item/weapon/inflatable_duck, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"ast" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11525,24 +10913,16 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) -"ast" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "asu" = ( /turf/simulated/floor/grass, /area/hydroponics/cafegarden) @@ -11576,8 +10956,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -11595,7 +10973,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "asz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -11727,9 +11105,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/obj/machinery/vending/cola, +/obj/random/vendordrink, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "asJ" = ( /obj/structure/closet/firecloset, /obj/effect/floor_decal/borderfloor, @@ -11752,8 +11130,6 @@ /area/crew_quarters/kitchen) "asM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -11805,33 +11181,22 @@ /turf/simulated/floor/grass, /area/hydroponics) "asR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/structure/flora/pottedplant/stoutbush, +/obj/item/weapon/stool/padded, /obj/machinery/light{ - dir = 8 + dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/crew_quarters/pool) "asS" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "asT" = ( /turf/simulated/wall/r_wall, /area/bridge) @@ -11895,8 +11260,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -12098,8 +11461,6 @@ "atA" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -12159,13 +11520,9 @@ /area/bridge_hallway) "atJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -12183,8 +11540,6 @@ /area/rnd/xenobiology/xenoflora) "atL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -12208,8 +11563,6 @@ /area/crew_quarters/kitchen) "atN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -12235,8 +11588,6 @@ /area/hydroponics) "atQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -12251,8 +11602,6 @@ /area/crew_quarters/kitchen) "atR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/grass, @@ -12320,8 +11669,6 @@ /area/rnd/workshop) "atZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12353,8 +11700,6 @@ /area/rnd/workshop) "aub" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12419,8 +11764,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals5, /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -12507,8 +11850,6 @@ "auq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12564,7 +11905,6 @@ "aut" = ( /obj/structure/cable, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/smes/buildable{ @@ -12822,8 +12162,6 @@ /area/rnd/xenobiology/xenoflora) "auO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -13011,25 +12349,17 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) "avj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "avk" = ( /obj/machinery/atmospherics/pipe/tank/phoron{ dir = 8; @@ -13071,8 +12401,6 @@ /area/crew_quarters/kitchen) "avn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -13149,8 +12477,6 @@ /area/rnd/research) "avu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -13234,11 +12560,19 @@ /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) "avF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "avG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13261,8 +12595,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -13384,8 +12716,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -13525,8 +12855,6 @@ "awh" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13555,12 +12883,14 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/captain) "awk" = ( -/obj/machinery/door/airlock{ - id_tag = "bathroomlock14"; - name = "Recreation Toilet 1" +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "awl" = ( /obj/structure/toilet{ dir = 8 @@ -13583,15 +12913,22 @@ /turf/simulated/wall/r_wall, /area/bridge_hallway) "awo" = ( -/obj/machinery/light_switch{ - pixel_x = 25 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "awp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -13664,8 +13001,6 @@ /area/crew_quarters/kitchen) "aww" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/int{ @@ -13775,13 +13110,9 @@ "awD" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13804,8 +13135,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13869,8 +13198,6 @@ /area/hallway/lower/third_south) "awI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hologram/holopad, @@ -13902,8 +13229,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13920,20 +13245,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"awL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) "awM" = ( -/obj/machinery/door/airlock{ - id_tag = "bathroomlock15"; - name = "Recreation Toilet 2" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "awN" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -13990,8 +13309,6 @@ /area/hydroponics) "awS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor, @@ -14026,8 +13343,6 @@ /area/crew_quarters/bar) "awU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -14055,8 +13370,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -14087,8 +13400,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14172,22 +13483,6 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"axf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - id = "bathroomlock14"; - name = "Recreation Toilet 1 Lock"; - pixel_x = -20; - pixel_y = 10; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) "axg" = ( /turf/simulated/wall, /area/library) @@ -14326,8 +13621,6 @@ /area/rnd/staircase/thirdfloor) "axw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -14469,8 +13762,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14494,8 +13785,6 @@ "axI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -14590,8 +13879,6 @@ "axN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14735,8 +14022,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/floortube{ @@ -14772,7 +14057,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/steel/bar_dance, @@ -14974,8 +14258,6 @@ /area/rnd/research/researchdivision) "ayv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15062,8 +14344,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -15153,13 +14433,9 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -15229,8 +14505,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15255,8 +14529,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15409,8 +14681,6 @@ /area/rnd/research) "aze" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15479,8 +14749,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -15512,8 +14780,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -15522,8 +14788,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/common, @@ -15662,8 +14926,6 @@ /area/tether/surfacebase/surface_three_hall) "azw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15696,8 +14958,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -15901,8 +15161,6 @@ /area/hallway/lower/third_south) "azJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -15991,8 +15249,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -16014,8 +15270,6 @@ pixel_y = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -16028,8 +15282,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -16053,8 +15305,6 @@ /area/library) "azW" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -16083,8 +15333,6 @@ /area/tether/surfacebase/botanystorage) "azZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/standard, @@ -16107,8 +15355,6 @@ /area/tether/surfacebase/servicebackroom) "aAc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16118,8 +15364,6 @@ /area/crew_quarters/bar) "aAd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -16139,8 +15383,6 @@ /area/hydroponics) "aAf" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -16156,8 +15398,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -16231,9 +15471,7 @@ /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, -/obj/machinery/vending/cola{ - dir = 1 - }, +/obj/random/vendordrink, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "aAo" = ( @@ -16438,8 +15676,6 @@ /area/library) "aAF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16515,8 +15751,6 @@ /area/tether/surfacebase/botanystorage) "aAL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/chem_master/condimaster, @@ -16612,8 +15846,6 @@ /area/rnd/research/researchdivision) "aAT" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16626,8 +15858,6 @@ /area/rnd/staircase/thirdfloor) "aAU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16747,8 +15977,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -16802,8 +16030,6 @@ /area/rnd/staircase/thirdfloor) "aBh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -16917,8 +16143,6 @@ /area/library) "aBr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16962,8 +16186,6 @@ "aBw" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16992,8 +16214,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -17061,8 +16281,6 @@ /area/crew_quarters/kitchen) "aBE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -17107,7 +16325,6 @@ "aBI" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -17139,8 +16356,6 @@ name = "Xenobiology North Airlock" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -17179,8 +16394,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -17212,8 +16425,6 @@ /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/structure/disposalpipe/segment{ @@ -17304,13 +16515,9 @@ /area/rnd/research/testingrange) "aBX" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -17389,13 +16596,9 @@ }, /obj/effect/floor_decal/borderfloorblack, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/embedded_controller/radio/airlock/access_controller{ @@ -17456,8 +16659,6 @@ /area/hydroponics) "aCi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17551,8 +16752,6 @@ /area/rnd/research/researchdivision) "aCt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17601,8 +16800,6 @@ /area/rnd/robotics) "aCw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -17725,8 +16922,6 @@ /area/hydroponics) "aCJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -17859,8 +17054,6 @@ /area/crew_quarters/bar) "aCU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -18269,8 +17462,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 32; - d2 = 2; icon_state = "32-2" }, /obj/structure/railing, @@ -18390,19 +17581,23 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "aDW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "aDX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -18420,11 +17615,12 @@ /turf/simulated/floor/grass, /area/hydroponics) "aDZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/table/woodentable, +/obj/item/clothing/glasses/threedglasses, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, +/obj/random/paicard, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "aEa" = ( @@ -18442,8 +17638,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -18516,8 +17710,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -18552,8 +17744,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -18682,8 +17872,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -18815,8 +18003,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -18884,7 +18070,6 @@ "aEO" = ( /obj/structure/cable/orange, /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/sensor{ @@ -18935,7 +18120,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/white, @@ -18970,8 +18154,6 @@ /area/hydroponics) "aEY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19016,8 +18198,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -19057,8 +18237,6 @@ /area/tether/surfacebase/surface_three_hall) "aFg" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19072,8 +18250,6 @@ "aFh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/industrial/warning/corner{ @@ -19189,8 +18365,6 @@ name = "Xenobiology North Airlock" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -19216,8 +18390,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/floor_decal/borderfloorblack, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -19234,8 +18406,6 @@ /area/tether/surfacebase/shuttle_pad) "aFr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -19297,8 +18467,6 @@ "aFz" = ( /obj/structure/flora/ausbushes/pointybush, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/grass, @@ -19330,8 +18498,6 @@ /area/tether/surfacebase/medical/triage) "aFD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19421,8 +18587,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/floor_decal/borderfloorblack, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -19497,8 +18661,6 @@ /area/hydroponics) "aFQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/device/radio/intercom{ @@ -19549,8 +18711,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -19576,8 +18736,6 @@ /area/library) "aFV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/outline/yellow, @@ -19634,8 +18792,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -19713,8 +18869,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -19747,8 +18901,6 @@ /area/crew_quarters/kitchen) "aGi" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/appliance/cooker/fryer, @@ -19775,8 +18927,6 @@ /area/tether/surfacebase/botanystorage) "aGk" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -19814,8 +18964,6 @@ /obj/machinery/light, /obj/effect/floor_decal/borderfloorblack, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -19848,8 +18996,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -19967,8 +19113,6 @@ "aGz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -20084,8 +19228,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20502,8 +19644,6 @@ /area/crew_quarters/bar) "aHt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -20534,8 +19674,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20559,8 +19697,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock{ @@ -20571,8 +19707,6 @@ /area/hydroponics) "aHx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -20603,8 +19737,6 @@ /area/tether/surfacebase/entertainment/stage) "aHA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20681,13 +19813,9 @@ /area/rnd/robotics) "aHH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20771,8 +19899,6 @@ sortType = "Robotics" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20880,8 +20006,6 @@ /area/crew_quarters/freezer) "aHW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20900,13 +20024,9 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20919,8 +20039,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -20934,8 +20052,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20948,8 +20064,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -20962,8 +20076,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment, @@ -20972,8 +20084,6 @@ "aIc" = ( /obj/machinery/computer/timeclock/premade/east, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -21008,8 +20118,6 @@ /area/tether/surfacebase/barbackmaintenance) "aIf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21053,8 +20161,6 @@ /area/crew_quarters/bar) "aIj" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21179,8 +20285,6 @@ /area/rnd/outpost/xenobiology/outpost_south_airlock) "aIt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -21303,8 +20407,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -21369,8 +20471,6 @@ /area/crew_quarters/bar) "aIL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21404,13 +20504,9 @@ "aIN" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -21592,8 +20688,6 @@ /area/rnd/outpost/xenobiology/outpost_breakroom) "aJc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -21671,8 +20765,6 @@ "aJj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21736,8 +20828,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external/public{ @@ -21909,8 +20999,6 @@ /area/rnd/research/testingrange) "aJJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -22077,7 +21165,6 @@ /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -22096,13 +21183,9 @@ "aJY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -22136,8 +21219,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ @@ -22188,8 +21269,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -22281,8 +21360,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22308,8 +21385,6 @@ /area/hydroponics/cafegarden) "aKu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -22317,11 +21392,13 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) "aKv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/item/device/radio/intercom{ + pixel_y = -24 }, /obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/full{ dir = 8 }, /turf/simulated/floor/wood, @@ -22333,8 +21410,6 @@ /area/hydroponics/cafegarden) "aKx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -22592,8 +21667,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -22605,8 +21678,6 @@ /area/tether/surfacebase/shuttle_pad) "aKY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22732,8 +21803,6 @@ /area/rnd/outpost/xenobiology/outpost_south_airlock) "aLk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22820,8 +21889,6 @@ "aLt" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22837,16 +21904,12 @@ /area/tether/surfacebase/topairlock) "aLv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) "aLw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -22857,8 +21920,6 @@ "aLx" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/blast/regular{ @@ -22869,8 +21930,6 @@ /area/rnd/robotics/mechbay) "aLy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -22880,8 +21939,6 @@ /area/rnd/robotics/mechbay) "aLz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -22899,8 +21956,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external/public{ @@ -22932,8 +21987,6 @@ /area/tether/surfacebase/servicebackroom) "aLE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -23047,8 +22100,6 @@ }, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -23062,8 +22113,6 @@ /area/rnd/research/testingrange) "aLU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid, @@ -23146,8 +22195,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -23160,13 +22207,9 @@ dir = 9 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -23183,7 +22226,6 @@ /area/tether/surfacebase/medical/admin) "aMe" = ( /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -23367,21 +22409,15 @@ /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics/mechbay) "aMw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = -3 - }, -/obj/structure/mirror{ +/obj/machinery/shower{ dir = 4; - pixel_x = -26; - pixel_y = 5 - }, -/obj/machinery/vending/wallmed1/public{ - pixel_y = 28 + pixel_x = 5 }, +/obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "aMx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -23413,16 +22449,12 @@ "aMB" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) "aMC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -23435,8 +22467,6 @@ /area/crew_quarters/freezer) "aMD" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -23470,12 +22500,19 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) "aMI" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/camera/network/civilian{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "aMJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/sink/kitchen{ @@ -23564,11 +22601,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/robotics) -"aMS" = ( -/obj/machinery/vending/fitness, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) "aMT" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -23619,16 +22651,12 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals5, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) "aMX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -23910,7 +22938,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/borderfloorblack{ @@ -23969,8 +22996,6 @@ /area/rnd/robotics/surgeryroom1) "aNG" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/monofloor{ @@ -24144,7 +23169,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "aOb" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -24205,8 +23230,6 @@ /area/rnd/outpost/xenobiology/outpost_south_airlock) "aOg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -24220,8 +23243,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/grass, @@ -24330,8 +23351,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -24621,8 +23640,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -24676,8 +23693,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/command{ @@ -24790,8 +23805,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -24807,7 +23820,6 @@ dir = 1 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/disposalpipe/segment{ @@ -24835,7 +23847,6 @@ /area/tether/surfacebase/shuttle_pad) "aPu" = ( /obj/structure/cable/orange{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -24912,8 +23923,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/command{ @@ -24989,13 +23998,9 @@ /area/rnd/outpost/xenobiology/outpost_breakroom) "aPL" = ( /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25009,8 +24014,6 @@ "aPM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25062,8 +24065,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -25132,8 +24133,6 @@ "aQd" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25584,8 +24583,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/freezer/cold, @@ -25936,8 +24933,6 @@ /area/rnd/outpost/xenobiology/outpost_autopsy) "aRJ" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/table/glass, @@ -25952,8 +24947,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/silver{ @@ -26148,8 +25141,6 @@ icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -26280,7 +25271,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 32; icon_state = "32-1" }, /obj/structure/window/basic/full, @@ -26424,8 +25414,6 @@ report_danger_level = 0 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -26506,8 +25494,6 @@ /area/tether/surfacebase/medical/triage) "aSN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction/flipped{ @@ -26670,8 +25656,6 @@ /area/tether/surfacebase/medical/admin) "aTc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -26700,8 +25684,6 @@ /area/rnd/outpost/xenobiology/outpost_first_aid) "aTg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26755,8 +25737,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /mob/living/simple_mob/animal/goat{ @@ -26802,8 +25782,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/techfloor{ @@ -26835,8 +25813,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular{ @@ -27041,7 +26017,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/white, @@ -27066,7 +26041,7 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aTP" = ( /obj/item/weapon/card/id/gold/captain/spare/fakespare, /turf/simulated/floor/plating, @@ -27112,8 +26087,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -27126,8 +26099,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -27152,8 +26123,6 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/alarm{ @@ -27169,8 +26138,6 @@ req_one_access = newlist() }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -27224,21 +26191,20 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aUd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +/obj/structure/bed/chair{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Looks like it's set to history channel, the show is talking about modern aliens. I wonder what else is on?"; + pixel_x = -32 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "aUe" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloor{ @@ -27253,11 +26219,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aUg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -27437,8 +26401,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -27538,8 +26500,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -27593,8 +26553,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -28015,8 +26973,6 @@ "aVs" = ( /obj/structure/lattice, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ @@ -28110,7 +27066,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aVA" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -28119,7 +27075,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aVB" = ( /obj/structure/table/glass, /obj/machinery/door/window/westright{ @@ -28157,8 +27113,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -28173,8 +27127,9 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aVF" = ( /obj/machinery/camera/network/civilian{ dir = 4 @@ -28194,11 +27149,9 @@ }, /obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aVH" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/bed/padded, @@ -28210,8 +27163,6 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light/small{ @@ -28249,7 +27200,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aVL" = ( /obj/machinery/photocopier, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -28277,8 +27228,8 @@ /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/obj/machinery/vending/snack, /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/random/vendorfood, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) "aVN" = ( @@ -28321,23 +27272,18 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aVR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) "aVS" = ( -/obj/item/device/radio/intercom{ - pixel_y = -24 +/obj/effect/floor_decal/spline/plain{ + dir = 9 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/full{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/item/weapon/beach_ball, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "aVT" = ( /obj/structure/table/standard, /obj/item/device/healthanalyzer, @@ -28350,8 +27296,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -28374,7 +27318,7 @@ /turf/simulated/wall{ can_open = 1 }, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aVY" = ( /obj/machinery/computer/operating, /turf/simulated/floor/tiled/white, @@ -28417,7 +27361,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/obj/machinery/vending/cola, +/obj/random/vendordrink, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) "aWd" = ( @@ -28485,8 +27429,6 @@ /area/tether/surfacebase/medical/lobby) "aWi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -28521,20 +27463,11 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/servicebackroom) "aWm" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/spline/plain{ + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "aWn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -28575,7 +27508,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWq" = ( /obj/machinery/firealarm{ layer = 3.3; @@ -28592,7 +27525,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWr" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -28628,7 +27561,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWu" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -28643,7 +27576,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWv" = ( /turf/simulated/floor/wood, /area/tether/surfacebase/security/hos) @@ -28726,8 +27659,6 @@ /area/tether/surfacebase/entertainment/backstage) "aWD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -28778,23 +27709,20 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "aWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/crew_quarters/pool) "aWH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28843,19 +27771,17 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWO" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/light{ dir = 8 }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "aWP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -28864,12 +27790,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -28900,18 +27823,16 @@ /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) "aWS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/machinery/scale, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 }, -/obj/machinery/door/airlock/glass, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "aWT" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 @@ -28922,7 +27843,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWU" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -28936,7 +27857,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "aWV" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, @@ -28985,7 +27906,6 @@ name = "tourbus" }, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -29011,8 +27931,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/disposal, @@ -29133,8 +28051,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -29158,8 +28074,6 @@ icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/wood, @@ -29208,8 +28122,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -29250,8 +28162,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -29354,8 +28264,6 @@ /area/bridge) "aXC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -29383,13 +28291,9 @@ icon_state = "0-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -29447,21 +28351,18 @@ /turf/simulated/floor/plating, /area/rnd/research_storage) "aXI" = ( -/obj/machinery/light/small{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/obj/structure/toilet{ - dir = 1 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 }, -/obj/machinery/button/remote/airlock{ - id = "bathroomlock15"; - name = "Recreation Toilet 2 Lock"; - pixel_x = -20; - pixel_y = 10; - specialfunctions = 4 +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/light{ + dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "aXJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29490,8 +28391,6 @@ /area/rnd/research_storage) "aXM" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -29569,8 +28468,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29595,8 +28492,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -29631,8 +28526,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/techfloor{ @@ -29663,12 +28556,9 @@ name = "Colony Directo's Shutters" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -29678,8 +28568,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/junk, @@ -29725,8 +28613,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -29768,8 +28654,6 @@ /obj/structure/lattice, /obj/structure/disposalpipe/down, /obj/structure/cable/green{ - d1 = 32; - d2 = 8; icon_state = "32-8" }, /obj/machinery/door/firedoor/glass, @@ -29784,8 +28668,6 @@ "aYm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, @@ -29802,8 +28684,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -29816,13 +28696,9 @@ name = "lightsout" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/emblem/nt2, @@ -29872,6 +28748,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, +/obj/item/weapon/paper/dockingcodes, /turf/simulated/floor/tiled/dark, /area/bridge) "aYu" = ( @@ -29886,8 +28763,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hologram/holopad, @@ -29993,8 +28868,6 @@ "aYI" = ( /obj/structure/bed/chair/office/dark, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30066,8 +28939,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30109,13 +28980,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30133,8 +29000,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30147,7 +29012,6 @@ /obj/item/device/flashlight/lamp/green{ pixel_x = -10 }, -/obj/item/weapon/paper/dockingcodes, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hop) "aZc" = ( @@ -30159,8 +29023,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/floortube{ @@ -30219,8 +29081,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30238,8 +29098,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 32; - d2 = 4; icon_state = "32-4" }, /turf/simulated/open, @@ -30260,8 +29118,6 @@ pixel_y = -26 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -30343,13 +29199,9 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -30366,8 +29218,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -30411,8 +29261,6 @@ req_access = list(57) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -30462,13 +29310,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30516,7 +29360,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/door/blast/shutters{ @@ -30532,7 +29375,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -30550,21 +29392,15 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, /area/bridge) "aZJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -30606,8 +29442,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30671,8 +29505,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30685,7 +29517,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/item/weapon/paper/dockingcodes, /turf/simulated/floor/wood, /area/crew_quarters/captain) "aZV" = ( @@ -30701,8 +29532,6 @@ /area/crew_quarters/captain) "aZW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/tether{ @@ -30734,8 +29563,6 @@ "aZX" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -30748,8 +29575,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30779,8 +29604,6 @@ "baa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -30815,8 +29638,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -30832,16 +29653,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, /area/bridge) "bae" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -30878,8 +29695,6 @@ /area/crew_quarters/captain) "bah" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/spline/plain, @@ -30907,8 +29722,6 @@ "bak" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -30917,8 +29730,6 @@ /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -30932,8 +29743,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -30943,8 +29752,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30968,13 +29775,9 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -30991,8 +29794,6 @@ "baq" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -31035,8 +29836,6 @@ /area/crew_quarters/heads/hop) "baw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31078,8 +29877,6 @@ /area/tether/surfacebase/surface_three_hall) "baA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31096,8 +29893,6 @@ /area/crew_quarters/bar) "baB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31137,8 +29932,6 @@ "baE" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/standard, @@ -31288,8 +30081,6 @@ /area/crew_quarters/heads/hop) "baO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -31332,8 +30123,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/sign/painting/public{ @@ -31372,8 +30161,6 @@ pixel_y = -24 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -31449,8 +30236,6 @@ "bbd" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -31797,8 +30582,6 @@ /area/hydroponics) "bbJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -31824,8 +30607,6 @@ /area/crew_quarters/bar) "bbN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31861,8 +30642,6 @@ /area/crew_quarters/bar) "bbQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -31940,8 +30719,6 @@ /area/shuttle/tourbus/general) "bbY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -31953,13 +30730,9 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/lino, @@ -31967,8 +30740,6 @@ "bca" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -32000,8 +30771,6 @@ /area/tether/surfacebase/barbackmaintenance) "bce" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32045,8 +30814,6 @@ "bch" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -32058,8 +30825,6 @@ "bci" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -32079,8 +30844,6 @@ "bck" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32093,13 +30856,9 @@ /area/crew_quarters/bar) "bcl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32115,8 +30874,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32342,8 +31099,6 @@ /area/hallway/lower/third_south) "bcB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -32361,13 +31116,9 @@ }, /obj/machinery/light, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -32378,16 +31129,12 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/servicebackroom) "bcE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -32420,8 +31167,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -32486,8 +31231,6 @@ /area/tether/surfacebase/entertainment/backstage) "bcQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/spline/plain{ @@ -32497,8 +31240,6 @@ /area/tether/surfacebase/entertainment/stage) "bcR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/lino, @@ -32511,13 +31252,9 @@ /area/tether/surfacebase/entertainment/stage) "bcT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32540,8 +31277,6 @@ /obj/item/toy/eight_ball/conch, /obj/item/weapon/cell/potato, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/megaphone, @@ -32565,8 +31300,6 @@ "bcW" = ( /obj/effect/decal/cleanable/tomato_smudge, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ @@ -32579,8 +31312,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/lino, @@ -32624,8 +31355,6 @@ "bdb" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32668,8 +31397,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/lino, @@ -32688,13 +31415,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -32703,8 +31426,6 @@ /area/rnd/xenobiology/xenoflora) "bdg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -32717,8 +31438,6 @@ /area/tether/surfacebase/entertainment/stage) "bdh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -32777,8 +31496,6 @@ "bdp" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light_switch{ @@ -32789,8 +31506,6 @@ /area/tether/surfacebase/entertainment/stage) "bdq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -32832,8 +31547,6 @@ /area/hallway/lower/third_south) "bdt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -32879,8 +31592,6 @@ "bdx" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -32977,8 +31688,6 @@ /area/hydroponics/cafegarden) "bdJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair/wood{ @@ -33009,8 +31718,6 @@ /area/crew_quarters/sleep/cryo) "bdM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33057,8 +31764,6 @@ /area/crew_quarters/sleep/cryo) "bdS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/freezer{ @@ -33093,8 +31798,6 @@ /area/crew_quarters/sleep/cryo) "bdV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/steel/bar_dance, @@ -33123,8 +31826,6 @@ /area/crew_quarters/sleep/cryo) "bdZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -33177,7 +31878,6 @@ /area/crew_quarters/sleep/cryo) "beg" = ( /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33215,8 +31915,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/white, @@ -33260,8 +31958,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -33271,8 +31967,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/sign/painting/library_secure{ @@ -33352,8 +32046,6 @@ "beu" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -33364,8 +32056,6 @@ "bev" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -33377,8 +32067,6 @@ "bew" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -33392,8 +32080,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -33432,7 +32118,6 @@ /area/crew_quarters/kitchen) "beA" = ( /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -33463,8 +32148,6 @@ "beC" = ( /obj/structure/table/marble, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/gate/thin{ @@ -33482,8 +32165,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -33506,13 +32187,9 @@ "beG" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -33523,8 +32200,6 @@ "beH" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33532,8 +32207,6 @@ /area/crew_quarters/kitchen) "beI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -33557,13 +32230,9 @@ "beK" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/weapon/stool/padded{ @@ -33650,8 +32319,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33715,8 +32382,6 @@ "bfd" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -33783,8 +32448,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -33825,8 +32488,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -33836,8 +32497,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -33883,8 +32542,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -33894,8 +32551,6 @@ /area/crew_quarters/bar) "bfu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/item/device/radio/intercom{ @@ -33905,8 +32560,6 @@ /area/hydroponics) "bfv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/camera/network/civilian{ @@ -33950,8 +32603,6 @@ /area/tether/surfacebase/barbackmaintenance) "bfA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -33976,8 +32627,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -33990,8 +32639,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/eris/steel/bar_dance, @@ -34184,7 +32831,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, @@ -34201,8 +32847,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -34211,8 +32855,6 @@ "bgg" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34239,8 +32881,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -34262,8 +32902,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external/public{ @@ -34330,8 +32968,6 @@ /area/crew_quarters/kitchen) "bgr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/appliance/cooker/grill, @@ -34367,8 +33003,6 @@ /obj/item/weapon/packageWrap, /obj/item/weapon/packageWrap, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -34401,8 +33035,6 @@ /area/tether/surfacebase/servicebackroom) "bgx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/grey/diagonal, @@ -34412,8 +33044,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -34452,8 +33082,6 @@ "bgE" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/stool/padded{ @@ -34496,8 +33124,6 @@ /area/crew_quarters/bar) "bgK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/silver{ @@ -34520,8 +33146,6 @@ "bgP" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/engi{ @@ -34538,8 +33162,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -34558,8 +33180,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -34569,8 +33189,6 @@ /area/crew_quarters/bar) "bgS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -34675,8 +33293,6 @@ }, /obj/effect/floor_decal/techfloor, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/item/device/radio/intercom{ @@ -34693,8 +33309,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/monofloor, @@ -34734,8 +33348,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -34748,8 +33360,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -34793,8 +33403,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/white, @@ -34861,24 +33469,18 @@ /area/tether/surfacebase/southhall) "bhw" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark{ name = "lightsout" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -34891,8 +33493,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -34908,8 +33508,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -34920,8 +33518,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -34934,8 +33530,6 @@ dir = 10 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -35059,7 +33653,6 @@ pixel_y = 28 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock{ @@ -35094,8 +33687,6 @@ "bhZ" = ( /obj/structure/railing, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -35171,8 +33762,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden, @@ -35195,8 +33784,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/map_helper/airlock/door/int_door, @@ -35213,8 +33800,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -35243,8 +33828,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -35261,8 +33844,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -35278,8 +33859,6 @@ dir = 6 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -35304,13 +33883,9 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -35318,8 +33893,6 @@ "bin" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -35438,8 +34011,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -35561,8 +34132,6 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -35604,8 +34173,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -35635,7 +34202,6 @@ pixel_y = 28 }, /obj/structure/cable/orange{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -35673,8 +34239,6 @@ dir = 5 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/spline/plain{ @@ -35690,8 +34254,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/spline/plain{ @@ -35707,8 +34269,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/spline/plain{ @@ -35724,8 +34284,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/spline/plain{ @@ -35996,8 +34554,6 @@ "bjJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -36354,8 +34910,6 @@ /area/rnd/robotics/resleeving) "bkL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -36616,8 +35170,6 @@ pixel_x = 26 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -36702,8 +35254,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorwhite{ @@ -36833,8 +35383,6 @@ /area/tether/surfacebase/medical/triage) "blW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36867,8 +35415,6 @@ /area/tether/surfacebase/medical/surgery1) "bmc" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -36885,8 +35431,6 @@ /area/tether/surfacebase/medical/triage) "bmd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -36922,7 +35466,6 @@ pixel_x = -30 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled/white, @@ -37008,8 +35551,6 @@ /area/tether/surfacebase/medical/triage) "bmt" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/bed/padded, @@ -37204,8 +35745,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -37225,8 +35764,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37251,13 +35788,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -37268,8 +35801,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/white, @@ -37284,8 +35815,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -37307,8 +35836,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -37340,6 +35867,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery1) +"bnr" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "bnu" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, @@ -37357,8 +35889,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -37389,15 +35919,11 @@ /area/tether/surfacebase/medical/triage) "bnG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37421,16 +35947,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) "bnJ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -37449,8 +35971,6 @@ /area/tether/surfacebase/medical/chemistry) "bnK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37490,8 +36010,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/device/radio/headset/headset_med, @@ -37517,8 +36035,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/secure_closet/medical1, @@ -37536,8 +36052,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/closet/hydrant{ @@ -37663,8 +36177,6 @@ /area/tether/surfacebase/surface_three_hall) "bof" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -37678,8 +36190,6 @@ /area/tether/surfacebase/surface_three_hall) "bog" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/beacon, @@ -37694,8 +36204,6 @@ /area/tether/surfacebase/surface_three_hall) "boh" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -37719,8 +36227,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37742,8 +36248,6 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -37765,8 +36269,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -37776,8 +36278,6 @@ /area/tether/surfacebase/surface_three_hall) "boo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -37847,8 +36347,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/window/reinforced/polarized{ @@ -37926,7 +36424,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "bsr" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -37936,8 +36434,6 @@ /area/tether/surfacebase/cafeteria) "bxa" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -38008,8 +36504,6 @@ /area/crew_quarters/barrestroom) "bJV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/closet/secure_closet/brig{ @@ -38026,6 +36520,18 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) +"bLg" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/computer/timeclock/premade/south, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "bLZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -38085,6 +36591,23 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officeb) +"bZA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "cbn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -38136,8 +36659,6 @@ name = "tourbus" }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -38180,8 +36701,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/bed/chair{ @@ -38204,7 +36723,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "crh" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -38220,6 +36739,19 @@ fancy_shuttle_tag = "tourbus" }, /area/shuttle/tourbus/cockpit) +"cti" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "cun" = ( /obj/machinery/atm{ pixel_x = -32 @@ -38248,6 +36780,22 @@ }, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) +"cDM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "cEx" = ( /obj/structure/table/reinforced, /obj/item/weapon/stamp/internalaffairs, @@ -38277,8 +36825,6 @@ /area/tether/surfacebase/surface_three_hall) "cGt" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -38373,8 +36919,6 @@ "cWe" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -38404,8 +36948,6 @@ /area/hallway/lower/third_south) "cYm" = ( /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -38415,16 +36957,12 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) "daD" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -38436,21 +36974,12 @@ /turf/simulated/floor/reinforced, /area/tether/surfacebase/shuttle_pad) "daN" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/scale, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "dbk" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ @@ -38485,8 +37014,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -38506,10 +37033,24 @@ /obj/structure/flora/bboulder2, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) +"dgH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "diF" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -38522,8 +37063,6 @@ /area/crew_quarters/barrestroom) "dmH" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor{ @@ -38546,6 +37085,56 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"doM" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"drO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"drQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "drR" = ( /obj/machinery/door/firedoor/glass/hidden{ dir = 2 @@ -38583,8 +37172,6 @@ pixel_x = -22 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -38592,6 +37179,19 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) +"dwP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "dyV" = ( /obj/machinery/light{ dir = 1 @@ -38604,22 +37204,24 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) +"dDl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall/west) "dDI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/mouse_hole_spawner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "dFg" = ( /obj/structure/grille, /obj/machinery/door/blast/regular{ @@ -38640,8 +37242,6 @@ /area/tether/surfacebase/security/hos) "dHI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -38693,8 +37293,6 @@ /area/tether/surfacebase/cafeteria) "dSQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -38767,8 +37365,6 @@ /area/tether/surfacebase/security/briefingroom) "efc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -38819,6 +37415,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) +"enh" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "enD" = ( /obj/effect/landmark/vermin, /turf/simulated/mineral/floor/cave{ @@ -38829,13 +37435,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/landmark/vines, @@ -38860,6 +37462,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) +"eyH" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/engineering, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) "eCg" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -38871,8 +37481,6 @@ /area/tether/surfacebase/public_garden_three) "eCP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -38913,8 +37521,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -38946,8 +37552,6 @@ /area/library) "eJm" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39014,6 +37618,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"eWw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/pool) "eWS" = ( /obj/machinery/vending/sovietsoda, /turf/simulated/floor/tiled, @@ -39024,13 +37638,21 @@ name = "tourbus" }, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/effect/landmark/stardog, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) +"eYZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "fag" = ( /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "tourbus"; @@ -39051,7 +37673,6 @@ "faL" = ( /obj/structure/lattice, /obj/structure/cable/orange{ - d1 = 32; icon_state = "32-1" }, /turf/simulated/open, @@ -39070,8 +37691,6 @@ }, /obj/effect/overmap/visitable/ship/landable/tourbus, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -39121,6 +37740,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"fhu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "fjX" = ( /obj/machinery/power/apc{ dir = 8; @@ -39141,7 +37771,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "fsd" = ( /obj/machinery/item_bank{ dir = 4; @@ -39150,28 +37780,11 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) "fxh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass{ - name = "Recreation Area" - }, -/turf/simulated/floor/tiled/steel_grid, +/turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "fyZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -39195,6 +37808,18 @@ /area/shuttle/tether{ base_turf = /turf/simulated/floor/reinforced }) +"fCR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "fEX" = ( /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "tourbus"; @@ -39202,7 +37827,6 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -39237,6 +37861,18 @@ /obj/structure/cable/orange, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) +"fKi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "fLx" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -39247,6 +37883,18 @@ }, /turf/simulated/wall, /area/tether/surfacebase/medical/storage) +"fNy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "fNA" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor{ @@ -39256,8 +37904,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -39279,6 +37925,24 @@ }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) +"fOb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "fOj" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; @@ -39307,6 +37971,18 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/cafeteria) +"fWa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "fWR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 @@ -39327,38 +38003,61 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"ggH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "ghf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) "ghk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/hos) "giR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "gjs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -39371,8 +38070,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -39398,6 +38095,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet, /area/tether/surfacebase/security/hos) +"goY" = ( +/obj/machinery/door/airlock{ + id_tag = "bathroomlock14"; + name = "Recreation Toilet 1" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "gsP" = ( /obj/structure/closet/hydrant{ pixel_x = -32 @@ -39410,8 +38114,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -39425,8 +38127,6 @@ /area/rnd/research/testingrange) "gvp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -39457,6 +38157,9 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officea) +"gyR" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "gzd" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -39472,8 +38175,6 @@ /area/tether/surfacebase/public_garden_three) "gAF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -39502,8 +38203,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -39525,7 +38224,6 @@ req_one_access = list(11,67) }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ @@ -39549,7 +38247,7 @@ pixel_y = 24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "gHc" = ( /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "tourbus"; @@ -39580,15 +38278,11 @@ /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "gLg" = ( -/obj/machinery/holoposter{ - dir = 8; - pixel_x = 30 - }, -/obj/item/weapon/stool/padded{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor/plating, +/area/crew_quarters/recreation_area) "gMi" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -39603,7 +38297,20 @@ }, /obj/machinery/computer/timeclock/premade/south, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) +"gNk" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "gOS" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -39638,8 +38345,6 @@ name = "tourbus" }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -39649,16 +38354,12 @@ /area/shuttle/tourbus/general) "gVg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -39669,10 +38370,39 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"gWX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "gYa" = ( /obj/machinery/vending/nifsoft_shop, /turf/simulated/floor/tiled, /area/tether/surfacebase/cafeteria) +"gZj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "bathroomlock14"; + name = "Recreation Toilet 1 Lock"; + pixel_x = -20; + pixel_y = 10; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "gZn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/table/glass, @@ -39829,8 +38559,6 @@ /area/tether/surfacebase/public_garden_three) "hxR" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor, @@ -39842,8 +38570,6 @@ /area/tether/surfacebase/security/processing) "hxY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -39866,6 +38592,15 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) +"hDa" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "hEt" = ( /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) @@ -39890,7 +38625,6 @@ pixel_y = -28 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -39932,6 +38666,32 @@ name = "dirt" }, /area/tether/surfacebase/public_garden_three) +"hPe" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"hTy" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "hVc" = ( /obj/structure/table/woodentable, /obj/machinery/photocopier/faxmachine{ @@ -40038,7 +38798,6 @@ "ikh" = ( /obj/machinery/door/firedoor, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -40054,13 +38813,9 @@ "ioG" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -40083,8 +38838,6 @@ /area/tether/surfacebase/surface_three_hall) "itr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ @@ -40100,15 +38853,28 @@ /obj/structure/grille, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) +"iEv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "iFr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) "iHX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -40141,8 +38907,6 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -40212,13 +38976,9 @@ /area/tether/surfacebase/medical/storage) "iUz" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -40232,8 +38992,6 @@ /area/tether/surfacebase/security/upperhall) "iXM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -40276,10 +39034,26 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"jmJ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "jmQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40312,33 +39086,40 @@ /area/shuttle/tourbus/general) "jrn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"juj" = ( -/obj/machinery/newscaster{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ +"jtQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) +"juj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "jAt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor/corner, @@ -40352,19 +39133,17 @@ /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) "jBB" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "jCn" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -40373,8 +39152,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -40460,6 +39237,20 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"jIs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "jJd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -40473,19 +39264,19 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) +"jKV" = ( +/obj/machinery/camera/network/tether, +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/surface_three_hall/west) "jKY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -40544,8 +39335,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -40565,13 +39354,27 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) +"jWc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "bathroomlock15"; + name = "Recreation Toilet 2 Lock"; + pixel_x = -20; + pixel_y = 10; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "jXY" = ( /obj/machinery/vending/wallmed1/public{ pixel_x = -28 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -40609,7 +39412,6 @@ }, /obj/structure/fuel_port, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -40655,9 +39457,25 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) +"kia" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/tagger{ + dir = 2; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/recreation_area_restroom) "kjn" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -40680,8 +39498,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -40718,18 +39534,36 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "kqo" = ( /turf/simulated/wall, /area/tether/surfacebase/security/iaa/officea) "ksL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officea) +"ktB" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/random/vendorall, +/turf/simulated/floor/tiled/monotile, +/area/tether/surfacebase/surface_three_hall/west) "kuQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -40742,12 +39576,16 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "kuU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) +"kvt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) "kwe" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -40872,6 +39710,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) +"kRW" = ( +/obj/structure/closet/lasertag/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) "kSJ" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -40894,6 +39742,23 @@ /obj/machinery/light, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) +"kUX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "kXo" = ( /obj/structure/noticeboard{ pixel_y = -26 @@ -40920,8 +39785,6 @@ /area/tether/surfacebase/public_garden_three) "laB" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -40939,6 +39802,15 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) +"lex" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) "lgb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -40953,8 +39825,6 @@ "lgo" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_research{ @@ -40966,16 +39836,50 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"lli" = ( +"lgS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"ljU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"lku" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"lli" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/effect/landmark/vermin, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "llH" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -40989,12 +39893,26 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"llQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = -3 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -26; + pixel_y = 5 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "lmq" = ( /obj/machinery/computer/general_air_control/fuel_injection{ device_tag = "riot_inject"; @@ -41010,6 +39928,21 @@ }, /turf/simulated/floor/carpet, /area/tether/surfacebase/security/hos) +"lpo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "lpB" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, @@ -41050,10 +39983,10 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) "lqX" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "ltu" = ( /obj/structure/railing{ @@ -41062,6 +39995,13 @@ /obj/structure/railing, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) +"luG" = ( +/obj/machinery/door/airlock{ + id_tag = "bathroomlock15"; + name = "Recreation Toilet 2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "lvH" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -41110,8 +40050,6 @@ /area/tether/surfacebase/security/upperhall) "lAW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -41160,8 +40098,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -41200,8 +40136,6 @@ }) "lSv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -41228,6 +40162,13 @@ }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) +"lWk" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "lWE" = ( /obj/structure/grille, /obj/machinery/door/blast/regular{ @@ -41241,8 +40182,6 @@ id = "hos_office" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -41279,6 +40218,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"lZT" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "mdE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -41292,13 +40238,9 @@ "mel" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -41314,14 +40256,13 @@ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atm{ - pixel_y = 31 - }, +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/corner/red/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "mjT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -41330,8 +40271,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair{ @@ -41353,7 +40292,30 @@ }, /obj/effect/mouse_hole_spawner, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) +"mpx" = ( +/obj/structure/closet/lasertag/blue, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"mpz" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "mwz" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -41427,6 +40389,15 @@ /obj/effect/floor_decal/corner/red/bordercorner2, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) +"mOd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "mOt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41445,6 +40416,18 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) +"mUv" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "mUC" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -41454,8 +40437,6 @@ /area/hydroponics) "mUE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -41494,8 +40475,6 @@ /area/library) "mXu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -41558,19 +40537,14 @@ /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) "niG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/sign/painting/public{ - pixel_y = -30 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "nlf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -41658,12 +40632,33 @@ }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) +"nrY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "nsm" = ( /obj/structure/sign/painting/library_secure{ pixel_y = -30 }, /turf/simulated/floor/carpet, /area/library) +"nso" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "ntl" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -41697,8 +40692,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -41731,12 +40724,29 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) +"nzj" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"nDe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "nKy" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -41751,8 +40761,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -41787,8 +40795,11 @@ dir = 4 }, /obj/effect/landmark/vines, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "nSq" = ( /obj/structure/bed/chair{ dir = 8 @@ -41819,8 +40830,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/window/reinforced/polarized{ @@ -41829,18 +40838,23 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officea) +"oaS" = ( +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/paicard, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) "obl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -41853,12 +40867,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/grass, /area/hydroponics) -"olG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) "ome" = ( /obj/machinery/light{ dir = 8 @@ -41870,8 +40878,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ @@ -41880,29 +40886,10 @@ /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) "opE" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/obj/effect/floor_decal/spline/plain, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "oqz" = ( /obj/machinery/light{ dir = 4 @@ -41920,7 +40907,14 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) +"orQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "oAu" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -41932,12 +40926,12 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/corner/red/border{ dir = 1 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "oBJ" = ( /obj/structure/sign/painting/public{ pixel_x = 30 @@ -41989,15 +40983,13 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) "oEL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-8" + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "oII" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ @@ -42066,7 +41058,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/sign/painting/library_secure{ @@ -42104,21 +41095,8 @@ /turf/simulated/floor/wood, /area/tether/surfacebase/security/hos) "oSv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/light_switch{ + pixel_x = 25 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) @@ -42138,18 +41116,12 @@ /area/tether/surfacebase/cafeteria) "oUI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment, @@ -42161,8 +41133,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -42170,6 +41140,15 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/southhall) +"oWP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "oXx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -42204,17 +41183,24 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) "peS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/spline/plain{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"pfd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "pgi" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -42227,6 +41213,35 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) +"phS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"pla" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atm{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "ple" = ( /obj/structure/sign/fire{ name = "\improper PHORON/FIRE SHELTER"; @@ -42247,17 +41262,15 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "pnq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/holoposter{ + dir = 8; + pixel_x = 30 }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/red/border{ +/obj/item/weapon/stool/padded{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/crew_quarters/pool) "pph" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -42323,7 +41336,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "pAh" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -42372,8 +41385,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, @@ -42423,6 +41434,9 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) +"pNU" = ( +/turf/simulated/wall, +/area/tether/surfacebase/surface_three_hall/west) "pOZ" = ( /turf/simulated/floor/carpet, /area/tether/surfacebase/security/hos) @@ -42430,8 +41444,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -42453,15 +41465,38 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) "pPQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Recreation Area" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/recreation_area) +"pRK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "pSu" = ( /obj/machinery/door/airlock/glass{ name = "Cafeteria" @@ -42473,6 +41508,24 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/wood, /area/tether/surfacebase/cafeteria) +"pXU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "pXX" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -42490,8 +41543,6 @@ /area/tether/surfacebase/southhall) "qcV" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -42531,14 +41582,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) +"qfA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "qgM" = ( /obj/structure/lattice, /turf/simulated/open, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) +"qgO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "qkf" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/sortjunction{ @@ -42549,8 +41622,6 @@ /area/rnd/research/researchdivision) "qnv" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -42566,6 +41637,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officeb) +"qpm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) "qpD" = ( /obj/structure/flora/ausbushes/ppflowers{ pixel_y = -12 @@ -42577,10 +41655,10 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/iaa) "qqV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "qtp" = ( /obj/structure/table/bench/wooden, @@ -42619,8 +41697,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -42776,13 +41852,16 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) +"qTK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "qVj" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -42822,14 +41901,17 @@ }, /turf/simulated/floor/carpet, /area/tether/surfacebase/security/hos) +"qZp" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "rbR" = ( /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "tourbus"; name = "tourbus" }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -42853,6 +41935,25 @@ }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) +"rkn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) +"rle" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "rnn" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -42872,8 +41973,6 @@ /area/tether/surfacebase/security/hos) "rpJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -42919,12 +42018,9 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/cafeteria) "rwb" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "rxh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 @@ -42932,20 +42028,15 @@ /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) "rAe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark{ - name = "morphspawn" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/shower{ + dir = 8; + pixel_x = -5 }, +/obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "rBz" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ @@ -43046,12 +42137,10 @@ pixel_y = 24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "rWd" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -43077,8 +42166,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -43119,8 +42206,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -43147,20 +42232,23 @@ /turf/simulated/floor/plating, /area/tether/surfacebase/security/upperhall) "sla" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-8" }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "snE" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -43190,8 +42278,6 @@ /area/hydroponics) "suT" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -43220,8 +42306,6 @@ dir = 1 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -43234,7 +42318,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "sEq" = ( /obj/machinery/door_timer/cell_3{ id = "Cell B"; @@ -43242,8 +42326,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -43262,12 +42344,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) +"sEF" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "sFW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -43296,7 +42389,6 @@ name = "tourbus" }, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow, @@ -43333,8 +42425,6 @@ "sPd" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -43351,20 +42441,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/crew_quarters/bar) -"sSK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) "sSW" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -43399,6 +42475,18 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) +"sUe" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "sUg" = ( /obj/machinery/disposal/wall/cleaner{ dir = 1 @@ -43462,6 +42550,18 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) +"tik" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"tiS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/pool, +/area/crew_quarters/pool) "tki" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -43475,6 +42575,13 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/hos) +"tnY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "tqY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 1 @@ -43500,8 +42607,6 @@ /area/tether/surfacebase/medical/lobby) "ttH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -43514,36 +42619,22 @@ /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) "twM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "txo" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "txO" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -43570,8 +42661,6 @@ /area/rnd/research/researchdivision) "tyN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -43592,8 +42681,6 @@ /area/tether/surfacebase/security/upperhall) "tJk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/emblem/nt3, @@ -43659,8 +42746,6 @@ /area/rnd/research/researchdivision) "tRk" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -43672,6 +42757,14 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) +"tSC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "tWn" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 @@ -43690,8 +42783,6 @@ /area/tether/surfacebase/security/hos) "tYE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -43729,8 +42820,8 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) "ueU" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -43738,13 +42829,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) "ufJ" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -43813,8 +42899,6 @@ /area/tether/surfacebase/public_garden_three) "und" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/closet/secure_closet/brig{ @@ -43829,7 +42913,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/bed/chair{ @@ -43837,6 +42920,51 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) +"ute" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"uuZ" = ( +/obj/item/weapon/bikehorn/rubberducky, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) +"uxj" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "uxT" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ dir = 8 @@ -43875,8 +43003,6 @@ }) "uAI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -43888,6 +43014,13 @@ }, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) +"uDo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "uFI" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -43900,12 +43033,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24 - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "uLh" = ( /obj/machinery/door/firedoor/glass/hidden/shuttle, /obj/machinery/door/blast/shuttle/open{ @@ -43918,6 +43047,12 @@ }, /turf/simulated/floor, /area/shuttle/tourbus/cockpit) +"uLO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "uMD" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -43948,6 +43083,13 @@ /area/shuttle/tether{ base_turf = /turf/simulated/floor/reinforced }) +"uUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "uWw" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -43962,8 +43104,6 @@ /area/tether/surfacebase/medical/surgery2) "uYO" = ( /obj/structure/cable/orange{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/monofloor, @@ -43991,12 +43131,16 @@ /area/tether/surfacebase/surface_three_hall) "vkv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officeb) +"vlQ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/deep/pool, +/area/crew_quarters/pool) "vna" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/borderfloor{ @@ -44043,6 +43187,13 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officea) +"voq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "vqv" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -44073,17 +43224,12 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "vun" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 + dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "vvA" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -44161,6 +43307,18 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/surfacebase/security/hos) +"vGY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "vIh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -44235,6 +43393,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/entertainment/stage) +"vWe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom{ + name = "\improper Recreation Area Showers" + }) "vXo" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 @@ -44249,8 +43413,6 @@ dir = 4 }, /obj/structure/cable/orange{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -44267,10 +43429,23 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) +"waz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "waR" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -44279,26 +43454,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officea) "weK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/borderfloor{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "whm" = ( /obj/machinery/power/apc{ dir = 4; @@ -44309,12 +43485,37 @@ /obj/structure/cable/green, /turf/simulated/floor/grass, /area/hydroponics) +"whN" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "whW" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, /area/tether/surfacebase/security/briefingroom) +"wiy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/nwest) "wju" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, @@ -44330,8 +43531,6 @@ /area/crew_quarters/kitchen) "wle" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/junction, @@ -44345,8 +43544,6 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm{ @@ -44355,6 +43552,24 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/upperhall) +"wnk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "wnm" = ( /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "tourbus"; @@ -44424,8 +43639,6 @@ /area/tether/surfacebase/surface_three_hall) "wrA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -44456,6 +43669,22 @@ fancy_shuttle_tag = "tourbus" }, /area/shuttle/tourbus/cockpit) +"wyA" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) +"wzK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "wBv" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, @@ -44475,6 +43704,17 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) +"wFE" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) "wGc" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -44492,8 +43732,6 @@ "wIw" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/orange{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -44527,7 +43765,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "wPV" = ( /obj/structure/table/woodentable, /obj/item/weapon/folder/red_hos, @@ -44607,8 +43845,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ @@ -44638,6 +43874,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/iaa/officecommon) +"xdv" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/recreation_area_restroom) "xdM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ @@ -44656,6 +43899,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) +"xeZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "xgh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -44693,12 +43941,11 @@ layer = 3.3; pixel_y = 26 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/corner/red/border{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) "xlW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44749,8 +43996,6 @@ name = "Chemist" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/white, @@ -44763,7 +44008,25 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) +"xrj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "xrs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -44828,11 +44091,27 @@ /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) "xvN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/machinery/atm{ + pixel_y = 31 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/recreation_area_restroom) +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "xwD" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -44853,8 +44132,6 @@ dir = 8 }, /obj/structure/cable/orange{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -44865,6 +44142,9 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"xzz" = ( +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/surface_three_hall/west) "xBf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -44878,7 +44158,16 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/nwest) +"xCP" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) "xDo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44886,23 +44175,20 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) "xEb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/sign/painting/public{ - pixel_x = -30 +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/surface_three_hall) +/area/tether/surfacebase/surface_three_hall/west) "xEB" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -44975,13 +44261,34 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"xJx" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall/west) +"xNU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Pool" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/pool) "xOa" = ( /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "tourbus"; name = "tourbus" }, /obj/structure/cable/green{ - dir = 1; icon_state = "1-2" }, /obj/machinery/door/airlock/glass{ @@ -45049,8 +44356,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -45062,11 +44367,14 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "yet" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall/west) "yfW" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/spline/plain, @@ -45087,8 +44395,6 @@ /area/tether/surfacebase/security/iaa/officeb) "yhU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -50117,20 +49423,20 @@ arW aVz aVz aVz -agw -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +akS +alF +alF +alF +akS +akS +akS +alF +alF +alF +akS +akS +akS +eWw aac aac aac @@ -50259,20 +49565,20 @@ aDc agp aVK akl -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +akU +alO +aod +apN +aqM +ass +aUd +apN +twM +apN +lpo +wFE +nrY +arV aac aac aac @@ -50401,20 +49707,20 @@ haS xpJ orP aVQ -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +akS +amx +aov +aoS +aoS +aoS +aoS +aoS +txo +nzj +nzj +orQ +arw +akS aac aac aac @@ -50542,21 +49848,21 @@ erS aDc aVA sDG -akn -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +wiy +akU +amy +aoV +apT +aqN +aqN +aqN +aqN +aqN +aqN +vlQ +are +arw +akS aac aac aac @@ -50684,21 +49990,21 @@ arW arW aVE lli -akn -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +arm +akU +ana +apq +apW +apI +apI +apI +apI +apI +apI +aqr +are +lWk +akS aac aac aac @@ -50823,24 +50129,24 @@ aDO aDS ufJ arW -agw +apo air -aWF -akn -alP -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +fKi +wiy +akU +anb +apq +apW +apI +apI +apI +apI +apI +apI +aqr +are +arw +arV aac aac aac @@ -50966,23 +50272,23 @@ aDS kar arW arN -air -aWF -akn +cti +fNy +wiy akS alw -alw -alw -akS -akS -akS -alw -alw -alw -akS -akS -akS -arU +apq +amP +anZ +anZ +aVS +juj +apI +apI +aqr +are +arw +arV aac aac aac @@ -51108,22 +50414,22 @@ aDS ufJ arW asI -air -aWF -igT +cti +fNy +bLg akS alx amm -amM -anv +amP +anZ anZ aoq -amM -apm -amM +opE +apI +apI aqr -arc -arv +are +arw arV aac aac @@ -51249,23 +50555,23 @@ aDP hxr cAZ arW -agw +apo aVG nSh aTO -akS -aly -amn -amN -amN -amN -amN -amN -apn +akU +aoq +amp +amP +anZ +anZ +aWm +peS apI apI -ard -arw +aqr +are +bnr akS aac aac @@ -51389,23 +50695,23 @@ aDH aUO arW eCg -agw -agw -agw +apo +apo +apo knW -aWF -akn -akS -ahq -amo -amO -anw -anw -anw -anw -anw -anw -aqs +fNy +aiH +akU +aoq +amp +amP +anZ +anZ +anZ +anZ +anZ +anZ +aqt are arw akS @@ -51531,25 +50837,25 @@ arW arW arW aac -agw -ahd -ahS +apo +apO +arc cpd -aWF -akn -akS +fNy +aiI +akV alA amp amP -anx -anx -anx -anx -anx -anx +anZ +anZ +anZ +anZ +anZ +anZ aqt are -aMI +arw akS aac aac @@ -51673,23 +50979,23 @@ aac aac aac aac -agw -agw -agw +apo +apo +apo gGk -aWF +aiC niG -akS +akZ alB -amp -amP -anx -anx -anx -anx -anx -anx -aqt +apr +aqB +ard +ard +ard +ard +ard +ard +tiS are arw arV @@ -51820,20 +51126,20 @@ abz abB jJd oEL -akn -akS +aiJ +akU alC -amp -amQ -any -any -aor +apy aoS -anx -anx -aqt -are -arw +aoS +aoS +aoS +aoS +aoS +uUY +nzj +tnY +qZp arV aac aac @@ -51961,21 +51267,21 @@ kqo kqo kqo xkx -vun -bhu -akS +rkn +wiy +akU alD amq -amQ -any -any -alE aoT -anx -anx -aqt -are -arw +aoT +aoT +aoT +aoT +aoT +hDa +aoT +aoT +lZT arV aac aac @@ -52103,21 +51409,21 @@ adk bTC woN abA -aDW -akn -akT +rkn +akp +akS alE amr -amQ -any -any -aos aoU -anx -anx -aqt -are -arw +aoU +aoU +aoU +aoU +aoU +lex +kvt +kvt +kRW akS aac aac @@ -52246,20 +51552,20 @@ vop woN abA ajA -akp -akT -alE +jIs +akS +anF amr -amQ -any -any -any -any -any -any +aoU +arv +asR +aWG +pnq +aoU +lgS aqu -are -arw +qpm +mpx akS aac aac @@ -52387,25 +51693,25 @@ hIu lqE woN abA -aDW -akq -akU -alF -amr -amQ -any -any -any -any -any -any -aqu -are +rkn +wiy +akY +akY +apz +aqE ary +akY +akY +akY +akU +xNU +akU akS -aac -aac -aac +akS +akS +ari +ari +ari aac aac aac @@ -52529,25 +51835,25 @@ pph cMO kqo bsb -aUd -akr -akV +rkn +wiy +akY alG ams -amR -anz -anz -anz -anz anz anz +asS +aWO +akY +weK +wnk aqv -are -arw -arV -aac -aac -aac +ari +llQ +xdv +wyA +voq +ari aac aac aac @@ -52671,25 +51977,25 @@ acu acu acA fkn -aWF -aiJ -akT +rkn +wiy +gLg rwb -sSK -amN -amN -amN -amN -amN -amN -apJ -apI -arf +ueU +fxh +fxh +fxh +aWS +akY +gWX +vGY +hPe +ari arz -arV -aac -aac -aac +qgO +ari +ari +ari aac aac aac @@ -52815,23 +52121,23 @@ acB aUc aUf akx -akT -acY +gLg +rwb ueU -arg -arg -arg -arg -arg -arg -aeo -arg -arg +fxh +fxh +fxh +daN +akY +xvN +vGY +ute +ari arA -arV -aac -aac -aac +uLO +goY +gZj +ari aac aac aac @@ -52954,26 +52260,26 @@ boB boB boC jYD -pnq -pPQ -aku -akS -aMS +kuQ +rkn +akx +gLg +fxh jBB amv -amv -amv -amv -amv -amv +arU +awM +dDI +pPQ +xEb apL arh -arh +kia arB -akS -aac -aac -aac +eYZ +ari +ari +ari aac aac aac @@ -53097,25 +52403,25 @@ mFy keV oOD kuQ -aWF +rkn akv -akS -alJ -jBB -amv -anB -aoa -aot gLg -amv +alJ +fxh +lqX +qqV +fxh +fxh +gLg +ggH apM aiK ari arC -akS -aac -aac -aac +dgH +luG +jWc +ari aac aac aac @@ -53239,25 +52545,25 @@ bUT yfW oOD kuQ -aWF +rkn aWN -akY -akY +gLg +alJ fxh lqX qqV -akY -akY -akY -akT -apN -akT -akS -akS -akS -afj -afj -afj +fxh +fxh +gLg +aMI +apQ +jmJ +aoX +aoX +pXU +aoX +aoX +aoX aac afM afM @@ -53380,26 +52686,26 @@ wur tLk oKw oOD -kuQ -aWF -aNE +aps +apt +jtQ akY alK oSv aDZ -aDZ +asc aob aKv akY -apo -apO -aqB -afj +drQ +iEv +hPe +aoX aMw arD afQ -awL -afj +aMw +aoX aac aEi aXH @@ -53523,25 +52829,25 @@ adl jFq jYD mjs -aWF -akx -akZ -alL -giR -amw -amw -amw -aov +aiG +akq akY -air -ajR -akx -afj +akY +akY +aqH +aqH +akY +akY +akY +cDM +fWa +pla +aoX ajK avF -afj -afj -afj +vWe +uuZ +aoX afi aXG adL @@ -53665,25 +52971,25 @@ jYD jYD jYD oAu -aWH -aWU -akZ -alL -giR -amw -amw -amw +apt +akr +waz aow -akY +giR +phS +phS +aDW +drO +phS app -ajR +fWa aiD -afj +aoX rAe sla awk -axf -afj +rAe +aoX arn aEi aXJ @@ -53804,28 +53110,28 @@ adj aiL adR qgM -aqO +aqI aVX -kuQ -ajM -akx -akZ -amw -txo -peS -weK -aod +aeo +oWP +qTK +qTK aox -aoV -apq -aiC -avj -aiH -opE -xvN -afj -afj -afj +uDo +xeZ +xeZ +vun +lku +xeZ +xeZ +tSC +fCR +aoX +aoX +aoX +aoX +aoX +aoX arn afh aXL @@ -53949,25 +53255,25 @@ adR adR adR puE -aWF -akx -akZ +rkn +aku +ahc alN -amw -yet -olG -amw -amw -akZ -apr -twM -aiG +apJ +nDe +nDe +xrj +kUX +nDe +wPD +fWa +hPe afj aqD awo -awM +sUe aXI -afj +pNU arn afh aeu @@ -54091,25 +53397,25 @@ wng itr oEh kuQ -aWF -akx -akZ -alN -amw +rkn +avj +apo +apo +pNU yet -olG -amw -amw -akZ -aix -apQ -aqE -afj -afj -afj -afj -afj -afj +yet +yet +pNU +pNU +bZA +fWa +hPe +enh +gNk +rle +sEF +doM +akk arn atG aud @@ -54233,25 +53539,25 @@ bJV bmt oEh kuQ -aWF -aWO -akY -alO -amx -ana -anF -aiI -aVS -akY -aix -apQ -asS -aha -xEb -aOb -ass -asR -agw +rkn +akx +ala +apo +aac +aac +aac +aac +aac +pNU +qfA +ljU +hPe +xCP +hTy +mUv +mpz +xCP +akk arn atG aud @@ -54374,23 +53680,23 @@ adR adR adR adR -aWm -aWG -aWS -akY -akY -akY -anb -anb -akY -akY -akY -aps +dwP +rkn +aWT +ala +alP +aac +aac +aac +aac +aac +aik +aix apR aqG -akE -akE -akE +fOb +pRK +fOb ast aoz aqP @@ -54516,26 +53822,26 @@ vqv und aVH oEh -aWn -aWF +dwP +rkn aWT ala -agw -amy -amy -amy -amy -amy +alP +aac +aac +aac +aac +aac aik -apt -apS -aqH -apS -apS -apS -ajR +aix +gyR +gyR +gyR +gyR +gyR +vGY apX -akk +pNU aac atG aud @@ -54658,26 +53964,26 @@ ajJ aTX aVI oEh -aWn -aWF +dwP +rkn aWT ala alP -amy -amy -amy -amy -amy +aac +aac +aac +aac +aac aik apu -apT -aqI +gyR +gyR ark -ahc +nDe wPD -avG +nso apX -agw +akk aac atG aud @@ -54801,23 +54107,23 @@ adR adR adR xBf -aWF +rkn aWT ala alP -amy -amy +aac +aac anG -amy -amy -aoX -aoX -aoX -aqJ -aoX -aoX -dDI -avG +aac +aac +pNU +pfd +xJx +xJx +pNU +xCP +aix +nso apX akk aac @@ -54943,25 +54249,25 @@ aUi ado adR rUF -aWF +rkn aWT alb -agw -amy -amy -amy -amy -amy -aoX -apv -apU -aqK -apv -aoX -juj -avG -apX -akk +apo +aac +aac +aac +aac +aac +pNU +aqL +aqL +aqL +dDl +sUe +aix +nso +uxj +pNU aac ats ats @@ -55085,9 +54391,9 @@ ajQ aVL adR aWp -ajM +mOd akv -alc +apo alc amz alc @@ -55095,15 +54401,15 @@ alc alc alc alc -apw +jKV apV -aqL -arl -aoX +xzz +dDl +rle uFI -isl +wzK keX -agw +iuG aac aac ats @@ -55227,9 +54533,9 @@ aSO aSR adR aWq -ajM +mOd akx -alc +apo alQ amA alc @@ -55237,13 +54543,13 @@ anH aog aoA alc -apx -apV -aqL -arm -aoX -daN -avG +xzz +xzz +xzz +dDl +mUv +aix +nso apX iuG aac @@ -55368,10 +54674,10 @@ aKJ aSP aSS aWb -aWn -aWF -aNE -alc +dwP +rkn +whN +apo alR amB anc @@ -55379,13 +54685,13 @@ anI aoh aoB alc -apy -apW -aqM -apy -aoX +agw +agw +agw +agw +pNU aOa -ajR +vGY apX akk aac @@ -55510,10 +54816,10 @@ aeJ axn aeJ aeJ -aWn -ajM +dwP +mOd akx -alc +apo alS amC alc @@ -55521,15 +54827,15 @@ anJ alc alc alc +oaS +tik +eyH agw -agw -agw -agw -aoX -asc -ajR +ktB +aix +vGY apX -agw +pNU aac aac aue @@ -55652,8 +54958,8 @@ ahx ahI qzU aiW -aWn -ajM +dwP +mOd akx ald alT @@ -55663,15 +54969,15 @@ ane ane ane alc -apz +aqO afk -aqN +aqO agw arE aix -ajR +vGY gMi -agw +pNU ats ats ats @@ -55811,9 +55117,9 @@ aqO agw arF aix -ajR +vGY mmk -agw +pNU ats atH mZL @@ -55937,7 +55243,7 @@ ahX aiQ aeJ aWu -aWI +fhu akC alf alV @@ -55951,11 +55257,11 @@ agw agx agw agw -agw +pNU ajj asy apZ -agw +pNU agw agw ats diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm index 7cb886bd7b..c3f19f415e 100644 --- a/maps/tether/tether-04-transit.dmm +++ b/maps/tether/tether-04-transit.dmm @@ -9,8 +9,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -20,8 +18,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -314,8 +310,6 @@ /area/tether/midpoint) "tn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -328,8 +322,6 @@ /area/tether/midpoint) "tB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloorblack{ @@ -415,8 +407,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -465,8 +455,6 @@ /area/tether/midpoint) "EI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -524,8 +512,6 @@ "HK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -538,8 +524,6 @@ /area/tether/midpoint) "It" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -635,8 +619,6 @@ /area/tether/midpoint) "Oq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/lattice, @@ -676,8 +658,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -735,8 +715,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -801,7 +779,6 @@ pixel_x = -28 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/dark, diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index 11ee9a0885..424654bb77 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -69,8 +69,6 @@ req_one_access = list(16,17,61) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -107,8 +105,6 @@ /area/shuttle/excursion/cargo) "aal" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -142,8 +138,6 @@ /area/maintenance/station/exploration) "aar" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ @@ -165,7 +159,6 @@ output_level = 250000 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -230,7 +223,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/camera/network/engine, @@ -241,15 +233,12 @@ dir = 8 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, /area/engineering/engine_smes) "aaB" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance_hatch{ @@ -262,11 +251,9 @@ "aaC" = ( /obj/machinery/power/grid_checker, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -276,8 +263,6 @@ /area/teleporter/departing) "aaE" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/hatch{ @@ -302,8 +287,6 @@ req_access = list(11) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -319,7 +302,6 @@ output_level = 1e+006 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -354,12 +336,9 @@ /area/teleporter/departing) "aaL" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/sensor{ @@ -411,8 +390,6 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/remote/airlock{ @@ -478,8 +455,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -574,8 +549,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -602,14 +575,10 @@ "abl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -621,8 +590,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -644,8 +611,6 @@ icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -655,8 +620,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -673,8 +636,6 @@ /area/engineering/engine_airlock) "abr" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -698,16 +659,12 @@ "abt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) "abu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -725,16 +682,12 @@ /area/engineering/atmos/backup) "abw" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) "abx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -747,8 +700,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -802,8 +753,6 @@ /area/maintenance/station/eng_lower) "abD" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -816,8 +765,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/button/remote/blast_door{ @@ -838,21 +785,15 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) "abG" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small, @@ -909,8 +850,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -938,7 +877,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled/techmaint, @@ -980,8 +918,6 @@ pixel_x = -32 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1021,8 +957,6 @@ name = "Long-Range Teleporter Access" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -1145,8 +1079,6 @@ pixel_y = -3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, @@ -1203,8 +1135,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1225,8 +1155,6 @@ "aco" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/common, @@ -1244,8 +1172,6 @@ /area/hallway/station/atrium) "acq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/engineering{ @@ -1258,8 +1184,6 @@ /obj/structure/disposalpipe/segment, /obj/random/trash_pile, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -1323,8 +1247,6 @@ /area/maintenance/station/eng_lower) "acx" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/power/sensor{ @@ -1332,7 +1254,6 @@ name_tag = "Engineering Subgrid" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/light/small{ @@ -1370,16 +1291,12 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) "acC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -1391,8 +1308,6 @@ /obj/item/device/multitool, /obj/structure/table/standard, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light_switch{ @@ -1423,8 +1338,6 @@ }) "acG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/turretid/lethal{ @@ -1483,8 +1396,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -1506,8 +1417,6 @@ /area/engineering/engine_smes) "acM" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1520,8 +1429,6 @@ "acN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -1536,11 +1443,9 @@ output_attempt = 0 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/camera/network/engineering, @@ -1553,7 +1458,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1568,8 +1472,6 @@ }) "acQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1580,8 +1482,6 @@ pixel_y = -25 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -1590,8 +1490,6 @@ }) "acR" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -1599,8 +1497,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1612,13 +1508,9 @@ /area/engineering/workshop) "acT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1651,7 +1543,6 @@ pixel_y = -28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -1660,8 +1551,6 @@ }) "acW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -1683,13 +1572,9 @@ /area/engineering/engine_monitoring) "acY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1700,8 +1585,6 @@ }, /obj/machinery/camera/network/telecom, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -1710,13 +1593,9 @@ }) "acZ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -1733,13 +1612,9 @@ /area/engineering/gravity_lobby) "adb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1770,8 +1645,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -1803,8 +1676,6 @@ /area/engineering/engine_monitoring) "adg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1821,8 +1692,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -1843,18 +1712,12 @@ pixel_y = -3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, @@ -1876,8 +1739,6 @@ /area/tether/station/restroom) "adk" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/no_nightshift{ @@ -1904,8 +1765,6 @@ "adm" = ( /obj/machinery/atmospherics/binary/passive_gate/on, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, @@ -1934,8 +1793,6 @@ pixel_y = -3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark, @@ -1976,8 +1833,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -1987,8 +1842,6 @@ /area/tether/station/restroom) "adr" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/beacon, @@ -2024,26 +1877,18 @@ /area/tcommsat/chamber) "adt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/maintenance/substation/engineering) "adu" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -2091,8 +1936,6 @@ /area/tether/exploration) "adx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2148,8 +1991,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -2157,8 +1998,6 @@ /area/hallway/station/atrium) "adC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -2176,21 +2015,15 @@ /area/maintenance/substation/engineering) "adD" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, /area/maintenance/substation/engineering) "adE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -2205,15 +2038,12 @@ dir = 1 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, /area/maintenance/substation/engineering) "adG" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -2233,8 +2063,6 @@ /area/engineering/gravity_lobby) "adI" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -2265,8 +2093,6 @@ name = "morphspawn" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2279,8 +2105,6 @@ /area/storage/tech) "adL" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -2429,8 +2253,6 @@ /area/maintenance/substation/engineering) "adX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/monotile, @@ -2454,8 +2276,6 @@ }, /obj/structure/catwalk, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -2501,8 +2321,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -2511,8 +2329,6 @@ "aef" = ( /obj/machinery/light, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -2534,15 +2350,11 @@ /area/quartermaster/delivery) "aeh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/junk, /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -2567,8 +2379,6 @@ /obj/structure/table/steel, /obj/item/device/flashlight/maglight, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2594,8 +2404,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -2641,8 +2449,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -2731,8 +2537,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/noticeboard{ @@ -2809,8 +2613,6 @@ /area/engineering/engine_monitoring) "aeA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2840,8 +2642,6 @@ /area/space) "aeC" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2867,8 +2667,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -2890,8 +2688,6 @@ req_one_access = list() }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2946,13 +2742,9 @@ /area/quartermaster/belterdock/gear) "aeK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment, @@ -2968,13 +2760,9 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -2993,8 +2781,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3028,8 +2814,6 @@ /area/engineering/engine_monitoring) "aeS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/table/reinforced, @@ -3193,8 +2977,6 @@ /area/hallway/station/docks) "afo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -3256,8 +3038,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3481,8 +3261,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -3510,8 +3288,6 @@ /area/engineering/atmos/backup) "afU" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -3531,8 +3307,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor, @@ -3542,8 +3316,6 @@ /area/quartermaster/foyer) "afW" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3576,8 +3348,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3701,8 +3471,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3712,8 +3480,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -3734,8 +3500,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/multi_tile/glass{ @@ -3764,7 +3528,6 @@ "agC" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, @@ -3905,8 +3668,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3923,8 +3684,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3957,8 +3716,6 @@ pixel_y = 30 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3977,8 +3734,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3995,8 +3750,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ @@ -4019,8 +3772,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4040,8 +3791,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4051,8 +3800,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -4133,7 +3880,6 @@ "ahk" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -4169,8 +3915,6 @@ /area/maintenance/station/eng_lower) "ahr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -4215,8 +3959,6 @@ /area/engineering/engine_airlock) "ahD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -4246,8 +3988,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -4267,8 +4007,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -4283,8 +4021,6 @@ /area/hallway/station/docks) "ahK" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -4324,8 +4060,6 @@ /area/quartermaster/foyer) "ahO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/fancy_shuttle{ @@ -4445,8 +4179,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/junction{ @@ -4494,8 +4226,6 @@ /area/hallway/station/docks) "ain" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4525,8 +4255,6 @@ /area/hallway/station/docks) "aip" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4560,8 +4288,6 @@ req_one_access = newlist() }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4781,8 +4507,6 @@ /area/tether/exploration/hallway) "ajc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4977,8 +4701,6 @@ /area/tcommsat/chamber) "ajO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5047,7 +4769,6 @@ /area/tether/exploration/hallway) "akf" = ( /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -5092,15 +4813,12 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, /area/engineering/storage) "akl" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5177,8 +4895,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5212,7 +4928,6 @@ /area/engineering/engine_airlock) "akP" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -5264,8 +4979,6 @@ /area/storage/tech) "akW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5315,8 +5028,6 @@ /area/engineering/engine_airlock) "alc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5430,8 +5141,6 @@ req_access = list(11) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5484,8 +5193,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5520,8 +5227,6 @@ "alz" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/blast/regular{ @@ -5601,8 +5306,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5630,8 +5333,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -5839,8 +5540,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -5995,13 +5694,9 @@ pixel_y = -3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6119,8 +5814,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6170,8 +5863,6 @@ }, /obj/machinery/light, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -6214,8 +5905,6 @@ /area/engineering/hallway) "anD" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6411,8 +6100,6 @@ pixel_y = -3 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -6529,8 +6216,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -6638,8 +6323,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -6679,8 +6362,6 @@ "aoH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6809,18 +6490,12 @@ /area/tether/exploration/hallway) "ape" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -6857,8 +6532,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/universal, @@ -6870,16 +6543,12 @@ }, /obj/machinery/meter, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "apq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/binary/pump{ @@ -6889,8 +6558,6 @@ /area/engineering/atmos/backup) "apr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/cyan{ @@ -6900,8 +6567,6 @@ /area/engineering/atmos/backup) "aps" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -6922,8 +6587,6 @@ /area/engineering/atmos/backup) "apu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -6940,8 +6603,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -6967,16 +6628,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/engineering/hallway) "apw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -7019,8 +6676,6 @@ pixel_y = 26 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ @@ -7071,13 +6726,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -7139,8 +6790,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -7159,8 +6808,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -7176,8 +6823,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -7187,8 +6832,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -7201,8 +6844,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -7219,13 +6860,9 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -7374,8 +7011,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7403,13 +7038,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7428,8 +7059,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -7442,8 +7071,6 @@ /area/maintenance/station/eng_lower) "aqu" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7470,8 +7097,6 @@ /area/engineering/break_room) "aqB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7633,8 +7258,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -7664,8 +7287,6 @@ sortType = "Engineering" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -7680,8 +7301,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -7745,8 +7364,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/firealarm{ @@ -7841,8 +7458,6 @@ /area/engineering/gravity_gen) "arE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -7863,8 +7478,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -7941,13 +7554,9 @@ /area/engineering/hallway) "arX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7970,8 +7579,6 @@ /area/engineering/gravity_gen) "asb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7993,8 +7600,6 @@ /area/maintenance/station/eng_lower) "asg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8022,13 +7627,9 @@ /area/ai_monitored/storage/eva) "ask" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -8060,8 +7661,6 @@ /area/engineering/workshop) "asn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8081,8 +7680,6 @@ /area/engineering/break_room) "asp" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair/comfy/beige{ @@ -8096,8 +7693,6 @@ /area/engineering/break_room) "asr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -8113,7 +7708,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/corner/white/diagonal, @@ -8122,13 +7716,9 @@ /area/engineering/break_room) "asv" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing, @@ -8144,8 +7734,6 @@ /area/engineering/atmos/backup) "asx" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/wood, @@ -8188,13 +7776,9 @@ /area/space) "asH" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -8223,8 +7807,6 @@ /area/tcommsat/chamber) "asM" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -8258,8 +7840,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8284,7 +7864,6 @@ "asX" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, @@ -8357,8 +7936,6 @@ /area/engineering/workshop) "atk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -8455,8 +8032,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner2{ @@ -8478,8 +8053,6 @@ /area/engineering/hallway) "atG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8533,8 +8106,6 @@ /area/engineering/workshop) "atT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8558,7 +8129,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/borderfloor{ @@ -8664,8 +8234,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -8686,8 +8254,6 @@ sortType = "Void" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -8709,8 +8275,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -8730,8 +8294,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -8742,18 +8304,12 @@ /area/quartermaster/foyer) "auH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -8828,13 +8384,9 @@ /area/ai_monitored/storage/eva) "avc" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -8849,7 +8401,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/table/reinforced, @@ -8864,8 +8415,6 @@ /area/space) "avg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/decal/cleanable/blood/oil/streak{ @@ -8875,8 +8424,6 @@ /area/engineering/workshop) "avh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -8917,8 +8464,6 @@ /area/quartermaster/office) "avm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8928,8 +8473,6 @@ /area/engineering/workshop) "avo" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -8989,8 +8532,6 @@ /area/quartermaster/delivery) "avv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -9015,8 +8556,6 @@ /area/engineering/hallway) "avx" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -9044,8 +8583,6 @@ sortType = "Engineering Break Room" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -9059,13 +8596,9 @@ /area/engineering/break_room) "avC" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -9085,8 +8618,6 @@ /area/engineering/break_room) "avF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9161,13 +8692,9 @@ /area/quartermaster/qm) "avY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -9249,8 +8776,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -9358,8 +8883,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -9387,7 +8910,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9399,8 +8921,6 @@ }) "awR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9470,8 +8990,6 @@ /area/quartermaster/storage) "awY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9481,8 +8999,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -9609,8 +9125,6 @@ /area/engineering/engineering_airlock) "axq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9623,8 +9137,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9658,8 +9170,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -9756,13 +9266,9 @@ /area/engineering/workshop) "axV" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/segment{ @@ -9803,8 +9309,6 @@ /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -9815,8 +9319,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -9853,8 +9355,6 @@ /area/engineering/break_room) "aym" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -9885,8 +9385,6 @@ }) "ayv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9909,8 +9407,6 @@ "ayA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/alarm{ @@ -9941,8 +9437,6 @@ /area/quartermaster/storage) "ayG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -9973,8 +9467,6 @@ /area/quartermaster/storage) "ayP" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/closet/crate, @@ -9989,8 +9481,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/item/device/radio/intercom{ @@ -10001,12 +9491,9 @@ /area/quartermaster/storage) "ayT" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -10031,8 +9518,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/catwalk, @@ -10044,8 +9529,6 @@ /area/quartermaster/office) "azk" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10061,13 +9544,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -10078,8 +9557,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -10094,8 +9571,6 @@ req_one_access = list(48) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -10105,8 +9580,6 @@ /area/quartermaster/warehouse) "azr" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -10116,8 +9589,6 @@ /area/quartermaster/warehouse) "azs" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -10175,8 +9646,6 @@ req_one_access = list(11,24,50) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -10207,13 +9676,9 @@ "azF" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -10232,8 +9697,6 @@ /area/maintenance/substation/cargo) "azI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/maintenance/common, @@ -10264,8 +9727,6 @@ /area/quartermaster/warehouse) "azL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -10308,8 +9769,6 @@ /area/maintenance/substation/cargo) "aAc" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/crate/internals, @@ -10336,8 +9795,6 @@ /area/quartermaster/warehouse) "aAh" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -10377,16 +9834,12 @@ pixel_x = -22 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/quartermaster/storage) "aAw" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10408,8 +9861,6 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/arrow{ @@ -10420,8 +9871,6 @@ /area/hallway/station/atrium) "aAy" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -10632,7 +10081,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/table/reinforced, @@ -10728,7 +10176,6 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -10744,8 +10191,6 @@ /area/engineering/hallway) "aBD" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10767,7 +10212,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/light_switch{ @@ -10969,8 +10413,6 @@ /area/engineering/gravity_gen) "aCq" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11036,8 +10478,6 @@ /area/engineering/engineering_airlock) "aCE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11099,8 +10539,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -11128,7 +10566,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -11151,8 +10588,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -11175,8 +10610,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -11302,8 +10735,6 @@ /area/quartermaster/storage) "aDY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -11339,8 +10770,6 @@ /area/quartermaster/storage) "aEf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11477,8 +10906,6 @@ }, /obj/machinery/meter, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -11498,8 +10925,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -11529,7 +10954,6 @@ "aEI" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/airless, @@ -11570,11 +10994,9 @@ output_attempt = 0 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/camera/network/engineering{ @@ -11584,8 +11006,6 @@ /area/maintenance/substation/cargo) "aFb" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/camera/network/telecom{ @@ -11597,8 +11017,6 @@ }) "aFe" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -11674,8 +11092,6 @@ /area/engineering/engine_eva) "aFX" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11705,8 +11121,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -11727,8 +11141,6 @@ /area/engineering/hallway) "aGy" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11800,8 +11212,6 @@ /area/engineering/engineering_airlock) "aHY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11838,8 +11248,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -11849,8 +11257,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -11876,8 +11282,6 @@ /area/crew_quarters/sleep/engi_wash) "aIp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -11891,8 +11295,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -11998,8 +11400,6 @@ /area/engineering/workshop) "aJy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -12023,8 +11423,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -12047,8 +11445,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -12086,8 +11482,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -12170,8 +11564,6 @@ opacity = 0 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12192,13 +11584,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12219,13 +11607,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -12244,13 +11628,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -12261,8 +11641,6 @@ /area/engineering/hallway) "aLH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12285,8 +11663,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -12299,13 +11675,9 @@ /area/engineering/engineering_airlock) "aLK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, @@ -12320,8 +11692,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -12329,8 +11699,6 @@ /area/engineering/hallway) "aLL" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12358,8 +11726,6 @@ /area/engineering/hallway) "aLO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12386,8 +11752,6 @@ /area/engineering/hallway) "aLP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12417,8 +11781,6 @@ /area/engineering/hallway) "aLY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12444,13 +11806,9 @@ /area/engineering/hallway) "aMa" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -12472,8 +11830,6 @@ /area/engineering/hallway) "aMd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -12493,8 +11849,6 @@ /area/engineering/hallway) "aMg" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12516,8 +11870,6 @@ /area/engineering/hallway) "aMj" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -12568,8 +11920,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -12582,7 +11932,6 @@ pixel_x = -28 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/disposalpipe/segment, @@ -12591,8 +11940,6 @@ /area/maintenance/station/eng_lower) "aMx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12600,8 +11947,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -12678,8 +12023,6 @@ /area/engineering/engineering_airlock) "aNo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12695,8 +12038,6 @@ /area/crew_quarters/heads/chief) "aNr" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12711,8 +12052,6 @@ "aOC" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -12756,8 +12095,6 @@ /area/crew_quarters/sleep/engi_wash) "aOS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12802,8 +12139,6 @@ /area/engineering/engineering_monitoring) "aPa" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12826,8 +12161,6 @@ /area/engineering/foyer) "aPP" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holoposter{ @@ -12856,8 +12189,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12885,8 +12216,6 @@ "aQi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -12898,8 +12227,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/oracarpet, @@ -12910,8 +12237,6 @@ /area/crew_quarters/heads/chief) "aQn" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -12923,7 +12248,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/computer/security/engineering{ @@ -12940,8 +12264,6 @@ /area/engineering/engine_eva) "aQw" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13178,8 +12500,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/universal, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -13340,8 +12660,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -13469,8 +12787,6 @@ "aWj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -13639,8 +12955,6 @@ "aZe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -13691,13 +13005,9 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -13771,8 +13081,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -13794,8 +13102,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13849,8 +13155,6 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/oracarpet, @@ -13897,8 +13201,6 @@ /area/engineering/hallway) "bdu" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13921,8 +13223,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -13941,8 +13241,6 @@ /area/gateway/prep_room) "bdF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -13967,8 +13265,6 @@ /area/hallway/station/docks) "bdH" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -13993,8 +13289,6 @@ /area/hallway/station/docks) "bdK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -14023,8 +13317,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -14037,16 +13329,12 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/hallway/station/docks) "bdT" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14085,13 +13373,9 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -14200,8 +13484,6 @@ "bfT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/carpet/oracarpet, @@ -14240,13 +13522,9 @@ /obj/structure/disposalpipe/segment, /obj/structure/catwalk, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor, @@ -14416,8 +13694,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -14459,8 +13735,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -14496,15 +13770,11 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/effect/floor_decal/sign/dock/one, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -14512,8 +13782,6 @@ "bqj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/landmark/stardog, @@ -14527,13 +13795,9 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -14559,8 +13823,6 @@ /area/engineering/gravity_gen) "bqU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -14600,8 +13862,6 @@ /area/shuttle/medivac/engines) "btr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -14686,8 +13946,6 @@ req_access = list(11) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14704,8 +13962,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -14765,8 +14021,6 @@ /area/engineering/gravity_lobby) "bzn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14790,8 +14044,6 @@ req_one_access = newlist() }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -14824,8 +14076,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -14898,8 +14148,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -14924,8 +14172,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15030,7 +14276,6 @@ output_attempt = 0 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -15042,13 +14287,9 @@ "bKo" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -15086,13 +14327,9 @@ /area/tether/exploration) "bLZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/black, @@ -15139,8 +14376,6 @@ /area/shuttle/excursion/cockpit) "bOA" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ @@ -15237,13 +14472,9 @@ /area/tcommsat/chamber) "bQc" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/camera/network/command{ @@ -15262,7 +14493,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -15300,8 +14530,6 @@ /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15355,8 +14583,6 @@ /area/space) "bVm" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15395,8 +14621,6 @@ /area/maintenance/station/exploration) "bXv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -15427,8 +14651,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -15446,7 +14668,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/camera/network/telecom{ @@ -15464,8 +14685,6 @@ "bYt" = ( /obj/structure/stasis_cage, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -15642,8 +14861,6 @@ /area/engineering/atmos/backup) "cca" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -15722,8 +14939,6 @@ name = "Engineering Hallway" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -15781,8 +14996,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -15813,8 +15026,6 @@ }) "cix" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15894,8 +15105,6 @@ /area/shuttle/securiship/engines) "cnB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -15960,8 +15169,6 @@ /area/tether/station/dock_two) "cso" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hologram/holopad, @@ -16093,8 +15300,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -16111,8 +15316,6 @@ /area/shuttle/medivac/general) "czS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/disposalpipe/segment{ @@ -16125,13 +15328,9 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -16148,8 +15347,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -16159,7 +15356,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ @@ -16170,8 +15366,6 @@ /area/tcommsat/computer) "cCr" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -16187,7 +15381,6 @@ /area/shuttle/excursion/cockpit) "cCJ" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc/angled{ @@ -16301,8 +15494,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6, @@ -16369,7 +15560,6 @@ pixel_y = -32 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16394,8 +15584,6 @@ /area/shuttle/securiship/general) "cNg" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -16412,8 +15600,6 @@ /area/engineering/hallway) "cNm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16491,8 +15677,6 @@ /area/tether/station/dock_two) "cPJ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -16503,7 +15687,6 @@ /area/quartermaster/foyer) "cQu" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc/angled{ @@ -16535,8 +15718,6 @@ /area/maintenance/station/exploration) "cTQ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16610,8 +15791,6 @@ /area/shuttle/excursion/general) "cVW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16641,8 +15820,6 @@ /area/hallway/station/atrium) "cXs" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -16712,8 +15889,6 @@ /area/shuttle/excursion/general) "dbZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -16738,13 +15913,9 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -16863,8 +16034,6 @@ /area/hallway/station/docks) "dju" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -16910,8 +16079,6 @@ req_one_access = list(17) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -16925,8 +16092,6 @@ /area/bridge/secondary/teleporter) "dkV" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17005,8 +16170,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -17045,13 +16208,9 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -17068,8 +16227,6 @@ /area/engineering/engineering_airlock) "dso" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17080,13 +16237,9 @@ /area/maintenance/station/eng_lower) "dsD" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -17129,8 +16282,6 @@ /area/shuttle/mining_outpost/shuttle) "dub" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -17175,8 +16326,6 @@ "dxY" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17189,11 +16338,9 @@ name_tag = "Exploration Subgrid" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -17237,8 +16384,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -17262,7 +16407,6 @@ "dAx" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -17372,8 +16516,6 @@ /area/tether/station/dock_one) "dJj" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/angled_tgmc{ @@ -17414,8 +16556,6 @@ /area/ai_server_room) "dML" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor{ @@ -17441,8 +16581,6 @@ /area/hallway/station/docks) "dNn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -17534,7 +16672,6 @@ dir = 4 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/table/standard, @@ -17647,16 +16784,12 @@ /area/shuttle/excursion/general) "dYI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced, /area/tether/exploration) "dYK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -17696,8 +16829,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -17718,8 +16849,6 @@ /area/mine/explored/upper_level) "eed" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -17750,8 +16879,6 @@ /area/maintenance/station/eng_lower) "egC" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -17773,11 +16900,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/alarm/angled, @@ -17875,8 +17000,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/catwalk, @@ -17903,8 +17026,6 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -17918,8 +17039,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -17936,8 +17055,6 @@ "euo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17979,8 +17096,6 @@ "exq" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/extinguisher_cabinet{ @@ -18040,13 +17155,9 @@ dir = 6 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -18059,8 +17170,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/angled_tgmc{ @@ -18075,8 +17184,6 @@ "eCW" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18104,8 +17211,6 @@ dir = 10 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -18129,13 +17234,9 @@ /area/quartermaster/foyer) "eGK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -18165,8 +17266,6 @@ /area/tcommsat/computer) "eIJ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -18251,8 +17350,6 @@ "eNQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18272,8 +17369,6 @@ /area/shuttle/excursion/general) "ePp" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -18289,8 +17384,6 @@ name = "Warehouse Shutters" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -18371,8 +17464,6 @@ /area/tether/exploration) "eXD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet, @@ -18425,7 +17516,6 @@ output_attempt = 0 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -18475,8 +17565,6 @@ /area/gateway/prep_room) "fgA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/rust, @@ -18514,8 +17602,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -18562,8 +17648,6 @@ "fjP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18619,7 +17703,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -18666,8 +17749,6 @@ "flS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18759,8 +17840,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_mining{ @@ -18780,8 +17859,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -18792,8 +17869,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/catwalk, @@ -18801,8 +17876,6 @@ /area/maintenance/cargo) "fvX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/bed/chair{ @@ -18842,8 +17915,6 @@ }, /obj/structure/handrail, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/closet/emergsuit_wall{ @@ -18871,8 +17942,6 @@ /area/maintenance/cargo) "fxO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18932,7 +18001,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -19031,8 +18099,6 @@ dir = 8 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -19184,8 +18250,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -19202,8 +18266,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -19283,8 +18345,6 @@ /area/shuttle/excursion/cargo) "fTF" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -19356,8 +18416,6 @@ /area/tether/station/dock_one) "gaW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -19381,8 +18439,6 @@ /obj/effect/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -19428,8 +18484,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -19465,8 +18519,6 @@ /area/maintenance/cargo) "gep" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner2{ @@ -19523,8 +18575,6 @@ /area/shuttle/excursion/cargo) "gif" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust, @@ -19539,8 +18589,6 @@ /area/shuttle/medivac/general) "gjd" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -19613,14 +18661,10 @@ /area/ai_monitored/storage/eva) "gjW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -19649,8 +18693,6 @@ /area/shuttle/excursion/general) "gkN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -19671,8 +18713,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -19735,8 +18775,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -19965,8 +19003,6 @@ /area/tcommsat/chamber) "gFT" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan, @@ -19988,8 +19024,6 @@ /area/shuttle/excursion/power) "gFV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -20047,7 +19081,6 @@ "gLG" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc/angled{ @@ -20130,8 +19163,6 @@ /area/shuttle/excursion/cargo) "gPx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, @@ -20157,8 +19188,6 @@ }, /obj/machinery/portable_atmospherics/canister/air, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/light{ @@ -20187,8 +19216,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -20252,8 +19279,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -20285,8 +19310,6 @@ /area/quartermaster/foyer) "gWD" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20301,8 +19324,6 @@ }) "gWK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -20400,12 +19421,9 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -20467,8 +19485,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20502,8 +19518,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -20532,7 +19546,6 @@ anchored = 1 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -20542,8 +19555,6 @@ /area/shuttle/excursion/power) "hjG" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass, @@ -20567,8 +19578,6 @@ "hkq" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20583,8 +19592,6 @@ req_one_access = list(12) }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -20615,8 +19622,6 @@ pixel_x = 32 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -20669,7 +19674,6 @@ /area/maintenance/substation/tcomms) "hpj" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/solar, @@ -20681,8 +19685,6 @@ /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/ext_door, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -20738,8 +19740,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -20815,8 +19815,6 @@ /area/tether/exploration) "htA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20836,8 +19834,6 @@ pixel_y = 26 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20862,8 +19858,6 @@ /area/tcommsat/chamber) "hwC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -20887,7 +19881,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light/small{ @@ -20902,18 +19895,12 @@ req_one_access = list(12) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/door/firedoor/glass, @@ -20942,8 +19929,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -20995,8 +19980,6 @@ /area/engineering/engineering_airlock) "hzC" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21029,8 +20012,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/hidden/steel, @@ -21042,7 +20023,6 @@ /area/engineering/hallway) "hAw" = ( /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/solar_control{ @@ -21063,8 +20043,6 @@ /area/tether/station/dock_two) "hBS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21081,8 +20059,6 @@ pixel_y = -22 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21131,8 +20107,6 @@ /area/shuttle/medivac/engines) "hDB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21182,16 +20156,12 @@ req_one_access = list(11,24,50) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, /area/maintenance/substation/cargo) "hFB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/asteroid_steel/airless, @@ -21274,8 +20244,6 @@ /area/shuttle/large_escape_pod1) "hHJ" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light/small{ @@ -21314,8 +20282,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -21344,7 +20310,6 @@ /area/tether/exploration) "hLW" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -21390,16 +20355,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, /area/tether/exploration) "hNw" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/power/apc{ @@ -21408,7 +20369,6 @@ pixel_y = 24 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/industrial/warning{ @@ -21420,8 +20380,6 @@ }) "hOw" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -21459,8 +20417,6 @@ "hPQ" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -21540,8 +20496,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -21562,8 +20516,6 @@ /area/tether/station/dock_two) "hUW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -21581,8 +20533,6 @@ /area/hallway/station/docks) "hVn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21619,13 +20569,9 @@ /area/quartermaster/delivery) "hWq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/camera/network/command{ @@ -21635,8 +20581,6 @@ /area/maintenance/substation/exploration) "hXK" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -21668,8 +20612,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -21715,7 +20657,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -21752,8 +20693,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/monotile, @@ -21764,8 +20703,6 @@ /obj/machinery/door/firedoor, /obj/structure/cable/green, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -21797,8 +20734,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -21943,8 +20878,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -21952,8 +20885,6 @@ "inj" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/carpet, @@ -21971,8 +20902,6 @@ /area/shuttle/mining_outpost/shuttle) "ioz" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22051,8 +20980,6 @@ /area/tether/exploration/pilot_office) "iuB" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22162,8 +21089,6 @@ }) "iAr" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22190,8 +21115,6 @@ /area/hallway/station/docks) "iAx" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall/r_wall, @@ -22235,8 +21158,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -22313,8 +21234,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/alarm{ @@ -22329,8 +21248,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -22352,8 +21269,6 @@ "iJS" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22362,8 +21277,6 @@ /area/tether/station/dock_one) "iKd" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/warning{ @@ -22487,8 +21400,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -22582,8 +21493,6 @@ pixel_x = -30 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22633,13 +21542,9 @@ /area/maintenance/station/cargo) "iYB" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22834,8 +21739,6 @@ /area/hallway/station/docks) "jmn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/highsecurity{ @@ -22987,8 +21890,6 @@ /area/ai_server_room) "juf" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23001,16 +21902,12 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/engineering/hallway) "juz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -23048,8 +21945,6 @@ /area/maintenance/station/cargo) "jxP" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -23067,8 +21962,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -23141,14 +22034,10 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -23246,8 +22135,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -23341,8 +22228,6 @@ /area/ai_monitored/storage/eva) "jOc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/camera/network/telecom{ @@ -23383,8 +22268,6 @@ /area/engineering/gravity_lobby) "jPK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -23441,14 +22324,10 @@ /area/shuttle/large_escape_pod1) "jSj" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/weapon/stool, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -23508,8 +22387,6 @@ /area/engineering/engineering_airlock) "jTV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23520,8 +22397,6 @@ name = "Asteroid civilian Substation" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -23531,8 +22406,6 @@ /area/maintenance/substation/civilian) "jUS" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -23597,8 +22470,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/map_helper/airlock/atmos/chamber_pump, @@ -23634,8 +22505,6 @@ /area/tether/exploration/hallway) "kaM" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -23692,12 +22561,9 @@ /area/maintenance/station/exploration) "kcH" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/sensor{ @@ -23734,8 +22600,6 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -23748,8 +22612,6 @@ /area/maintenance/cargo) "kdz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -23873,8 +22735,6 @@ /area/shuttle/medivac/engines) "kjA" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/multi_tile/metal{ @@ -24067,8 +22927,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -24209,7 +23067,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/black, @@ -24310,8 +23167,6 @@ /area/quartermaster/belterdock/refinery) "kCE" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -24334,8 +23189,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -24373,8 +23226,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24425,8 +23276,6 @@ req_access = list(61) }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -24496,8 +23345,6 @@ /area/tether/station/dock_one) "kMF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass, @@ -24564,8 +23411,6 @@ /area/maintenance/station/eng_lower) "kNJ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass, @@ -24625,13 +23470,9 @@ sortType = "QM Office" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -24689,7 +23530,6 @@ output_level = 1000 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green, @@ -24768,8 +23608,6 @@ /area/maintenance/station/eng_lower) "kVE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -24779,8 +23617,6 @@ /area/tether/exploration/hallway) "kVK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -24808,13 +23644,9 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -24865,8 +23697,6 @@ /area/ai_monitored/storage/eva) "kZW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -25004,7 +23834,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/closet/secure_closet/cargotech, @@ -25125,13 +23954,9 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -25141,8 +23966,6 @@ dir = 10 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -25168,18 +23991,12 @@ /area/maintenance/cargo) "lsa" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -25217,8 +24034,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -25361,13 +24176,9 @@ /area/quartermaster/belterdock) "lye" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -25468,7 +24279,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/structure/table/standard, @@ -25560,7 +24370,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -25574,13 +24383,9 @@ /area/tether/station/dock_two) "lGY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -25633,8 +24438,6 @@ /area/quartermaster/qm) "lJZ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -25684,8 +24487,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -25721,8 +24522,6 @@ /area/hallway/station/docks) "lLG" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel, @@ -25738,8 +24537,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -25842,8 +24639,6 @@ dir = 2 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -25952,13 +24747,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -25980,8 +24771,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -26004,8 +24793,6 @@ /area/tether/exploration/pilot_office) "mdh" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26125,8 +24912,6 @@ "mpB" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -26272,8 +25057,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -26298,15 +25081,11 @@ /area/tether/station/dock_two) "mAd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/disposalpipe/junction/yjunction{ @@ -26359,8 +25138,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/junction, @@ -26378,8 +25155,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/newscaster{ @@ -26396,21 +25171,15 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "mEZ" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26541,8 +25310,6 @@ "mKT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -26575,7 +25342,6 @@ pixel_y = 25 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -26704,8 +25470,6 @@ "mUD" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -26714,8 +25478,6 @@ /area/tether/station/dock_two) "mVB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -26784,8 +25546,6 @@ /area/maintenance/station/cargo) "mYV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -26804,8 +25564,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -26816,8 +25574,6 @@ icon_state = "pipe-c" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/catwalk, @@ -26858,15 +25614,12 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) "nct" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external, @@ -26906,8 +25659,6 @@ /area/tether/station/dock_two) "neb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27001,8 +25752,6 @@ "njY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27030,8 +25779,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -27119,8 +25866,6 @@ /area/quartermaster/office) "nov" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -27209,8 +25954,6 @@ icon_state = "pipe-c" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals4, @@ -27277,8 +26020,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hologram/holopad, @@ -27401,15 +26142,11 @@ "nCV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -27447,8 +26184,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -27464,7 +26199,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/effect/floor_decal/steeldecal/steel_decals6, @@ -27495,7 +26229,6 @@ /area/hallway/station/atrium) "nGm" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -27543,8 +26276,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_grid, @@ -27698,8 +26429,6 @@ /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/int_door, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27878,13 +26607,9 @@ /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) "oil" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -27918,8 +26643,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/monotile, @@ -27971,13 +26694,9 @@ /area/maintenance/station/exploration) "oso" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -28101,8 +26820,6 @@ /area/quartermaster/storage) "ozR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -28129,8 +26846,6 @@ }, /obj/structure/disposalpipe/junction/yjunction, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -28164,8 +26879,6 @@ "oEH" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -28194,8 +26907,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ @@ -28324,8 +27035,6 @@ "oTF" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -28375,8 +27084,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -28395,8 +27102,6 @@ /area/quartermaster/qm) "oYN" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -28431,8 +27136,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -28445,8 +27148,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -28493,8 +27194,6 @@ "phy" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -28563,7 +27262,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled, @@ -28577,8 +27275,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -28714,8 +27410,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -28751,8 +27445,6 @@ /area/shuttle/securiship/cockpit) "pFY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external, @@ -28940,8 +27632,6 @@ "pXr" = ( /obj/machinery/light, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -28955,8 +27645,6 @@ "qad" = ( /obj/structure/bed/chair/office/dark, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29000,8 +27688,6 @@ "qcg" = ( /obj/machinery/camera/network/telecom, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -29028,8 +27714,6 @@ /area/shuttle/large_escape_pod1) "qdy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -29058,8 +27742,6 @@ /area/quartermaster/office) "qer" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29208,7 +27890,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light{ @@ -29304,11 +27985,9 @@ name_tag = "Asteroid civilian Subgrid" }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -29328,8 +28007,6 @@ /area/tether/station/dock_one) "qrU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -29346,8 +28023,6 @@ /area/maintenance/cargo) "qsp" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -29379,8 +28054,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -29438,8 +28111,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -29507,8 +28178,6 @@ /area/quartermaster/office) "qDS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -29528,8 +28197,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/station_map{ @@ -29561,7 +28228,6 @@ name_tag = "Cargo Subgrid" }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green, @@ -29576,8 +28242,6 @@ /area/maintenance/substation/cargo) "qHq" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -29650,18 +28314,12 @@ /area/tether/station/dock_two) "qOh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -29673,8 +28331,6 @@ }) "qOx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -29691,8 +28347,6 @@ /area/tether/station/dock_two) "qPB" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/random/junk, @@ -29720,8 +28374,6 @@ /area/quartermaster/office) "qSM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -29910,8 +28562,6 @@ "rdE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -29938,8 +28588,6 @@ /area/tether/station/dock_two) "rgE" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor, @@ -29984,8 +28632,6 @@ /area/shuttle/medivac/general) "riO" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -30005,8 +28651,6 @@ "rjf" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing, @@ -30052,8 +28696,6 @@ /area/shuttle/belter) "rot" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -30152,8 +28794,6 @@ /area/crew_quarters/heads/chief) "rua" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/map_helper/airlock/sensor/chamber_sensor, @@ -30241,8 +28881,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -30269,8 +28907,6 @@ /area/shuttle/securiship/general) "rFi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -30587,8 +29223,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/vehicle/train/trolley{ @@ -30622,8 +29256,6 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -30697,8 +29329,6 @@ /area/quartermaster/storage) "saX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -30836,8 +29466,6 @@ /area/quartermaster/office) "siQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -31011,7 +29639,6 @@ }, /obj/structure/table/standard, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -31038,7 +29665,6 @@ }, /obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -31095,8 +29721,6 @@ /area/quartermaster/storage) "sBs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ @@ -31131,8 +29755,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -31189,8 +29811,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -31299,8 +29919,6 @@ /area/shuttle/securiship/cockpit) "sKm" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -31367,8 +29985,6 @@ /area/quartermaster/office) "sMU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -31427,8 +30043,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -31443,14 +30057,10 @@ /area/shuttle/medivac/general) "sRG" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -31467,8 +30077,6 @@ "sRH" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -31530,8 +30138,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/firedoor_assembly, @@ -31552,15 +30158,11 @@ /area/quartermaster/office) "sVZ" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -31585,13 +30187,9 @@ /area/quartermaster/qm) "sYw" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -31691,8 +30289,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -31702,8 +30298,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -31733,8 +30327,6 @@ "tht" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -31743,8 +30335,6 @@ /area/maintenance/station/cargo) "thI" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -31790,13 +30380,9 @@ /area/shuttle/securiship/general) "tkb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -31924,8 +30510,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment{ @@ -32173,8 +30757,6 @@ /area/quartermaster/qm) "tCY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -32231,8 +30813,6 @@ /area/maintenance/station/eng_lower) "tGc" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/bluegrid{ @@ -32435,8 +31015,6 @@ /area/tether/station/dock_one) "tMV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -32462,8 +31040,6 @@ /area/quartermaster/belterdock) "tOn" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -32474,8 +31050,6 @@ name = "secbus" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -32562,8 +31136,6 @@ "tWo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -32649,8 +31221,6 @@ "ucJ" = ( /obj/effect/floor_decal/rust, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -32738,12 +31308,9 @@ dir = 4 }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, @@ -32754,8 +31321,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/landmark/vermin, @@ -32773,8 +31338,6 @@ /area/shuttle/medivac/cockpit) "ujK" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -32907,8 +31470,6 @@ "uxR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass, @@ -33114,13 +31675,9 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33249,7 +31806,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/structure/table/woodentable, @@ -33268,8 +31824,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, @@ -33288,8 +31842,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -33303,8 +31855,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33417,8 +31967,6 @@ /area/hallway/station/docks) "vcy" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/wood, @@ -33531,8 +32079,6 @@ /area/tether/exploration/pilot_office) "vkg" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/fancy_shuttle{ @@ -33552,8 +32098,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -33566,8 +32110,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -33698,13 +32240,9 @@ /area/shuttle/medivac/general) "vsW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -33760,7 +32298,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -33777,8 +32314,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33802,8 +32337,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -33834,8 +32367,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -33879,8 +32410,6 @@ /area/ai_monitored/storage/eva) "vDW" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33958,8 +32487,6 @@ /area/ai_monitored/storage/eva) "vIg" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -33973,8 +32500,6 @@ /area/quartermaster/office) "vJC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light, @@ -33998,8 +32523,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -34021,8 +32544,6 @@ /area/storage/tools) "vNl" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -34067,8 +32588,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34098,8 +32617,6 @@ /area/shuttle/medivac/general) "vVA" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -34108,8 +32625,6 @@ /area/maintenance/station/cargo) "vWb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -34327,8 +32842,6 @@ /area/quartermaster/belterdock/refinery) "wjf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/access_button{ @@ -34356,8 +32869,6 @@ /area/tether/station/restroom) "wmg" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -34381,8 +32892,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/monotile, @@ -34392,8 +32901,6 @@ /area/quartermaster/foyer) "woq" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/no_nightshift{ @@ -34466,8 +32973,6 @@ /area/tether/station/dock_two) "wuh" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external, @@ -34564,8 +33069,6 @@ /area/maintenance/cargo) "wDo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, @@ -34685,8 +33188,6 @@ /area/engineering/foyer) "wKO" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -34944,8 +33445,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -34953,8 +33452,6 @@ /area/quartermaster/belterdock/gear) "wZj" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ @@ -35035,7 +33532,6 @@ /area/ai_monitored/storage/eva) "xdJ" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -35062,7 +33558,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -35123,8 +33618,6 @@ /area/quartermaster/office) "xiy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/holoposter{ @@ -35159,13 +33652,9 @@ /area/crew_quarters/heads/chief) "xjt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -35253,8 +33742,6 @@ name = "Exploration Substation" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -35398,13 +33885,9 @@ /area/quartermaster/storage) "xzC" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -35434,8 +33917,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -35532,8 +34013,6 @@ /area/quartermaster/office) "xMk" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -35553,13 +34032,9 @@ /area/hallway/station/docks) "xMQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -35578,8 +34053,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -35589,8 +34062,6 @@ /area/gateway/prep_room) "xNk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ @@ -35625,7 +34096,6 @@ /area/maintenance/station/eng_lower) "xPa" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/smes/buildable/point_of_interest, @@ -35664,8 +34134,6 @@ /area/ai_monitored/storage/eva) "xQi" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/disposalpipe/segment, @@ -35682,8 +34150,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/wall, @@ -35731,7 +34197,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -35851,8 +34316,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden, @@ -35867,13 +34330,9 @@ /area/tether/station/dock_two) "yaH" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -36004,8 +34463,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, diff --git a/maps/tether/tether-06-mining.dmm b/maps/tether/tether-06-mining.dmm index 0b2e5837bd..4596df9ecf 100644 --- a/maps/tether/tether-06-mining.dmm +++ b/maps/tether/tether-06-mining.dmm @@ -339,7 +339,6 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -383,8 +382,6 @@ /area/outpost/mining_main/maintenance) "aW" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -457,24 +454,18 @@ /area/outpost/mining_main/maintenance) "bd" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) "be" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/visible/supply{ @@ -503,8 +494,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -549,8 +538,6 @@ /area/outpost/mining_main/maintenance) "bl" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/universal{ @@ -585,8 +572,6 @@ /area/outpost/mining_main/maintenance) "bq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -599,8 +584,6 @@ /area/outpost/mining_main/maintenance) "bs" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -625,13 +608,9 @@ /area/outpost/mining_main/break_room) "bu" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -641,8 +620,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -655,7 +632,6 @@ /area/outpost/mining_main/hangar) "bw" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/terminal, @@ -663,16 +639,12 @@ /area/outpost/mining_main/maintenance) "bx" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, /area/outpost/mining_main/maintenance) "by" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -682,8 +654,6 @@ /area/outpost/mining_main/break_room) "bz" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/plating, @@ -712,11 +682,9 @@ output_attempt = 0 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, @@ -1184,8 +1152,6 @@ /area/outpost/mining_main/drill_equipment) "cA" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1253,12 +1219,9 @@ pixel_y = 24 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -1283,8 +1246,6 @@ /area/outpost/mining_main/secondary_gear_storage) "cF" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -1294,8 +1255,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -1327,8 +1286,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -1353,8 +1310,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -1367,8 +1322,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -1379,15 +1332,12 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/outpost/mining_main/drill_equipment) "cO" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -1545,8 +1495,6 @@ /area/outpost/mining_main/break_room) "dd" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ @@ -1575,8 +1523,6 @@ /area/outpost/mining_main/airlock) "ef" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1626,8 +1572,6 @@ /area/outpost/mining_main/break_room) "ty" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -1723,8 +1667,6 @@ /area/mine/explored) "Cy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1741,8 +1683,6 @@ /area/outpost/mining_main/maintenance) "DX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorblack, @@ -1790,13 +1730,9 @@ /area/outpost/mining_main/airlock) "Fn" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -1858,8 +1794,6 @@ name = "Quarters" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1886,8 +1820,6 @@ /area/mine/explored) "QZ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloorblack, @@ -1943,8 +1875,6 @@ /area/outpost/mining_main/break_room) "VG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloorblack/cee{ @@ -2018,8 +1948,6 @@ /area/outpost/mining_main/maintenance) "ZV" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ diff --git a/maps/tether/tether-07-solars.dmm b/maps/tether/tether-07-solars.dmm index 74d262bf7c..b8c9d4387f 100644 --- a/maps/tether/tether-07-solars.dmm +++ b/maps/tether/tether-07-solars.dmm @@ -28,8 +28,6 @@ /area/mine/explored) "ae" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -42,8 +40,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -53,13 +49,9 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -69,21 +61,15 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "ai" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -94,20 +80,15 @@ "aj" = ( /obj/machinery/power/solar, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "ak" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -120,16 +101,12 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "an" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -139,8 +116,6 @@ /area/tether/outpost/solars_outside) "ao" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -150,29 +125,21 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "aq" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "ar" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -182,13 +149,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -226,7 +189,6 @@ pixel_x = 28 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/virgo3b, @@ -234,8 +196,6 @@ "ay" = ( /obj/structure/grille, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/virgo3b_indoors, @@ -243,38 +203,27 @@ "az" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "aA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "aB" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/closet/crate/solar, @@ -282,8 +231,6 @@ /area/tether/outpost/solars_shed) "aC" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/crate/solar, @@ -293,8 +240,6 @@ /obj/structure/table/standard, /obj/item/clothing/gloves/yellow, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/painting/public{ @@ -305,8 +250,6 @@ "aE" = ( /obj/structure/table/standard, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/item/stack/cable_coil/yellow, @@ -314,8 +257,6 @@ /area/tether/outpost/solars_shed) "aF" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -357,8 +298,6 @@ /area/tether/outpost/solars_outside) "aL" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/virgo3b, @@ -366,8 +305,6 @@ "aM" = ( /obj/item/weapon/stool, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/virgo3b_indoors, @@ -407,7 +344,6 @@ /area/rnd/outpost) "aR" = ( /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow, @@ -422,7 +358,6 @@ pixel_y = -28 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/virgo3b_indoors, @@ -446,7 +381,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/virgo3b_indoors, @@ -457,8 +391,6 @@ /area/tether/outpost/solars_outside) "aX" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/railing, @@ -466,7 +398,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/sensor{ @@ -530,13 +461,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -546,8 +473,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -630,8 +555,6 @@ "bs" = ( /obj/effect/floor_decal/industrial/warning/dust/corner, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -659,8 +582,6 @@ /area/tether/outpost/solars_outside) "bw" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -670,21 +591,15 @@ /area/tether/outpost/solars_outside) "bx" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "by" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/industrial/warning/dust{ @@ -694,13 +609,9 @@ /area/tether/outpost/solars_outside) "bz" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -710,21 +621,15 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "bB" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -734,13 +639,9 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -750,8 +651,6 @@ dir = 10 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -759,8 +658,6 @@ "bE" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -774,13 +671,9 @@ "bH" = ( /obj/effect/floor_decal/industrial/warning/dust, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -1157,8 +1050,6 @@ /area/rnd/outpost/airlock) "cE" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1294,8 +1185,6 @@ /area/rnd/outpost/testing) "cS" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/steel_grid, @@ -1316,15 +1205,12 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/outpost/testing) "cV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_grid, @@ -1390,8 +1276,6 @@ id_tag = "sci_outpost_pump" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/monotile, @@ -1518,8 +1402,6 @@ /area/rnd/outpost/testing) "dt" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/hologram/holopad, @@ -1593,8 +1475,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals10{ @@ -1730,8 +1610,6 @@ /area/rnd/outpost/testing) "dT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1760,8 +1638,6 @@ name = "Science Outpost EVA" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals5, @@ -1812,8 +1688,6 @@ /area/rnd/outpost/airlock) "eb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_external{ @@ -1955,8 +1829,6 @@ /area/rnd/outpost/mixing) "er" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -1992,8 +1864,6 @@ /area/rnd/outpost) "ev" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -2211,8 +2081,6 @@ /area/rnd/outpost/mixing) "eQ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -2244,8 +2112,6 @@ /area/rnd/outpost) "eR" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor{ @@ -2274,13 +2140,9 @@ /area/rnd/outpost) "eS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -2296,8 +2158,6 @@ /area/rnd/outpost) "eT" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ @@ -2309,8 +2169,6 @@ /area/rnd/outpost) "eU" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -2336,8 +2194,6 @@ /area/rnd/outpost) "eV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -2366,13 +2222,9 @@ /area/rnd/outpost) "eW" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -2397,8 +2249,6 @@ /area/rnd/outpost) "eX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -2424,13 +2274,9 @@ /area/rnd/outpost) "eY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2443,8 +2289,6 @@ /area/rnd/outpost) "eZ" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -2453,8 +2297,6 @@ /area/rnd/outpost) "fa" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -2467,8 +2309,6 @@ /area/rnd/outpost) "fb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2488,8 +2328,6 @@ /area/rnd/outpost/xenoarch_storage) "fd" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/alarm{ @@ -2521,13 +2359,9 @@ /area/rnd/outpost) "fe" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, @@ -2548,7 +2382,6 @@ icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -2627,8 +2460,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/airlock/glass_science{ @@ -2643,8 +2474,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/corner/purple{ @@ -2660,8 +2489,6 @@ /area/rnd/outpost) "fs" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -2689,8 +2516,6 @@ /area/rnd/outpost) "fv" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -2707,8 +2532,6 @@ /area/rnd/outpost) "fy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -2733,8 +2556,6 @@ /area/rnd/outpost) "fz" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2914,8 +2735,6 @@ /area/rnd/outpost) "fN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -2955,8 +2774,6 @@ /area/maintenance/substation/outpost) "fQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -2978,13 +2795,9 @@ /area/rnd/outpost) "fR" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2998,7 +2811,6 @@ pixel_x = 24 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -3089,8 +2901,6 @@ /area/rnd/outpost) "gb" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -3109,13 +2919,9 @@ /area/rnd/outpost) "gc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -3139,8 +2945,6 @@ /area/rnd/outpost) "gd" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3153,8 +2957,6 @@ /area/maintenance/substation/outpost) "ge" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3236,8 +3038,6 @@ /area/rnd/outpost) "gm" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -3400,8 +3200,6 @@ /area/rnd/outpost) "gC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -3578,8 +3376,6 @@ /area/rnd/outpost/heating) "gR" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3599,8 +3395,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/purple{ @@ -3617,16 +3411,12 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/heating) "gV" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3643,8 +3433,6 @@ /area/rnd/outpost/heating) "gW" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3654,8 +3442,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/corner/purple/full{ @@ -3672,13 +3458,9 @@ /area/rnd/outpost) "gY" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -3724,7 +3506,6 @@ dir = 6 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -3832,8 +3613,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/white, @@ -3877,8 +3656,6 @@ /area/rnd/outpost/heating) "ht" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor, @@ -3906,8 +3683,6 @@ /area/rnd/outpost) "hu" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor{ @@ -3938,8 +3713,6 @@ /area/rnd/outpost) "hv" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/borderfloor{ @@ -3963,13 +3736,9 @@ /area/rnd/outpost) "hw" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -3998,16 +3767,12 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, /area/rnd/outpost/atmos) "hy" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -4083,7 +3848,6 @@ pixel_x = -28 }, /obj/structure/cable/green{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/binary/pump/on{ @@ -4102,8 +3866,6 @@ sensors = list("burn_sensor" = "Burn Chamber Sensor") }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -4116,8 +3878,6 @@ }, /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -4125,8 +3885,6 @@ /area/rnd/outpost/heating) "hI" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/hologram/holopad, @@ -4137,8 +3895,6 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/white, @@ -4178,8 +3934,6 @@ /area/rnd/outpost/storage) "hN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4487,7 +4241,6 @@ /area/rnd/outpost/storage) "iy" = ( /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -4687,8 +4440,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -4701,8 +4452,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -4736,8 +4485,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel_dirty, @@ -4973,8 +4720,6 @@ /area/rnd/outpost/anomaly_lab) "jy" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5131,8 +4876,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -5152,8 +4895,6 @@ /area/rnd/outpost/anomaly_lab/airlock) "jQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5169,8 +4910,6 @@ /area/rnd/outpost/anomaly_lab/storage) "jS" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5180,13 +4919,9 @@ /area/rnd/outpost) "jT" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -5376,7 +5111,6 @@ dir = 8 }, /obj/structure/cable/green{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/apc{ @@ -5391,8 +5125,6 @@ /area/rnd/outpost/anomaly_lab/storage) "kq" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5415,8 +5147,6 @@ "kt" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5497,8 +5227,6 @@ /area/rnd/outpost/anomaly_lab/airlock) "kz" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5558,8 +5286,6 @@ /area/rnd/outpost/anomaly_lab/storage) "kD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5617,8 +5343,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/border_only, @@ -5671,8 +5395,6 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5700,8 +5422,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -5776,8 +5496,6 @@ "kV" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/grille, @@ -5830,8 +5548,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5856,8 +5572,6 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5912,8 +5626,6 @@ /area/rnd/outpost) "lh" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5962,7 +5674,6 @@ /obj/item/stack/flag/yellow, /obj/item/weapon/pickaxe, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -5980,8 +5691,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -5994,8 +5703,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -6012,16 +5719,12 @@ /area/maintenance/substation/outpost) "lo" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, @@ -6055,8 +5758,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6079,13 +5780,9 @@ /area/rnd/outpost) "ls" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -6107,7 +5804,6 @@ /area/rnd/outpost) "lt" = ( /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -6135,8 +5831,6 @@ dir = 8 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -6152,8 +5846,6 @@ dir = 5 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible{ @@ -6225,8 +5917,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/border_only, @@ -6247,8 +5937,6 @@ dir = 10 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6272,8 +5960,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6372,8 +6058,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -6409,8 +6093,6 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6435,8 +6117,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6511,13 +6191,9 @@ dir = 6 }, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6530,8 +6206,6 @@ dir = 9 }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/anomaly_container, @@ -6771,8 +6445,6 @@ /area/rnd/outpost/anomaly_lab) "mC" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/danger{ @@ -6782,8 +6454,6 @@ /area/rnd/outpost/anomaly_lab) "mD" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -6805,8 +6475,6 @@ /area/rnd/outpost/anomaly_lab) "mF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6823,8 +6491,6 @@ /area/rnd/outpost/anomaly_lab) "mG" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6837,8 +6503,6 @@ /area/rnd/outpost/anomaly_lab) "mH" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6860,8 +6524,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -6873,13 +6535,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -6892,8 +6550,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -6911,8 +6567,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -6930,7 +6584,6 @@ pixel_y = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -7052,8 +6705,6 @@ /area/rnd/outpost/anomaly_lab) "nc" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/industrial/danger{ @@ -7242,8 +6893,6 @@ /area/rnd/outpost/anomaly_lab) "nw" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7260,13 +6909,9 @@ dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/industrial/danger{ @@ -7320,8 +6965,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7369,8 +7012,6 @@ icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -7385,7 +7026,6 @@ pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/dark, @@ -7404,24 +7044,18 @@ /area/rnd/outpost/anomaly_lab) "nL" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) "nM" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) "nN" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -7454,8 +7088,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass/hidden{ @@ -7504,8 +7136,6 @@ /area/rnd/outpost/anomaly_lab) "nX" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7518,8 +7148,6 @@ /area/rnd/outpost/anomaly_lab) "nY" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -7575,8 +7203,6 @@ dir = 4 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -7609,8 +7235,6 @@ /area/rnd/outpost) "oj" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -7648,14 +7272,10 @@ /area/rnd/outpost/anomaly_lab) "om" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -7816,8 +7436,6 @@ /area/rnd/outpost/breakroom) "oK" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7839,8 +7457,6 @@ /area/rnd/outpost/breakroom) "oN" = ( /obj/structure/cable/green{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -7943,8 +7559,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm index 9e88179601..87cf3f3681 100644 --- a/maps/tether/tether_areas.dm +++ b/maps/tether/tether_areas.dm @@ -180,6 +180,14 @@ name = "\improper Third Floor Hallway" icon_state = "dk_yellow" +/area/tether/surfacebase/surface_three_hall/west + name = "\improper Third Floor Hallway - West" + icon_state = "dk_yellow" + +/area/tether/surfacebase/surface_three_hall/nwest + name = "\improper Third Floor Hallway - Northwest" + icon_state = "dk_yellow" + /area/tether/surfacebase/north_stairs_one name = "\improper North Stairwell First Floor" icon_state = "dk_yellow" diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index 14bc585b37..cb52682b64 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -205,7 +205,10 @@ list("Redgate - Eggnog Town Underground","Redgate - Eggnog Town"), list("Redgate - Star Dog"), list("Redgate - Hotsprings"), - list("Redgate - Rain City") + list("Redgate - Rain City"), + list("Redgate - Islands Underwater","Redgate - Islands"), + list("Redgate - Moving Train", "Redgate - Moving Train Upper Level"), + list("Redgate - Fantasy Dungeon", "Redgate - Fantasy Town") ) ai_shell_restricted = TRUE diff --git a/maps/virgo_minitest/virgo_minitest-1.dmm b/maps/virgo_minitest/virgo_minitest-1.dmm index 1f8ec8aa84..8d0de83a25 100644 --- a/maps/virgo_minitest/virgo_minitest-1.dmm +++ b/maps/virgo_minitest/virgo_minitest-1.dmm @@ -165,7 +165,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -201,16 +200,12 @@ /area/tcommsat/computer) "aE" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) "aF" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -224,13 +219,9 @@ pixel_y = 22 }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -245,8 +236,6 @@ req_access = list(61) }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -272,8 +261,6 @@ tag_secure = 1 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -283,37 +270,27 @@ dir = 1 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/tcommsat/computer) "aK" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, /area/tcommsat/computer) "aL" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/engineering/engine_smes) "aM" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -321,8 +298,6 @@ "aN" = ( /obj/machinery/atmospherics/binary/pump/on, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/plating, @@ -346,7 +321,6 @@ dir = 8 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -361,11 +335,9 @@ dir = 1 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/black, @@ -379,11 +351,9 @@ }, /obj/structure/cable, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -398,11 +368,9 @@ dir = 1 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -420,7 +388,6 @@ dir = 4 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -438,8 +405,6 @@ req_access = list(61) }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -462,8 +427,6 @@ dir = 5 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -530,7 +493,6 @@ /area/tcommsat/chamber) "bg" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -547,8 +509,6 @@ /area/tcommsat/chamber) "bh" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/black, @@ -574,8 +534,6 @@ c_tag = "Telecoms Central Compartment North" }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -587,8 +545,6 @@ /area/tcommsat/chamber) "bk" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -601,8 +557,6 @@ "bl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -622,8 +576,6 @@ pixel_y = 25 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -646,8 +598,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/bluegrid{ @@ -659,8 +609,6 @@ /area/tcommsat/chamber) "bo" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/dark{ @@ -694,8 +642,6 @@ /area/engineering/engine_smes) "br" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, @@ -725,7 +671,6 @@ /area/tcommsat/chamber) "bw" = ( /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -736,13 +681,9 @@ /area/engineering/engine_smes) "bx" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/plating, @@ -750,8 +691,6 @@ "by" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/plating, @@ -759,13 +698,9 @@ "bz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/plating, @@ -775,18 +710,15 @@ name_tag = "MiniTest" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, /area/engineering/engine_smes) "bB" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/smes/buildable{ @@ -898,8 +830,6 @@ dir = 9 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1087,7 +1017,6 @@ pixel_x = -32 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -1097,8 +1026,6 @@ icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/alarm{ @@ -1384,8 +1311,6 @@ /area/medical/medbay) "cP" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1491,8 +1416,6 @@ /area/medical/medbay) "df" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1611,16 +1534,12 @@ /area/medical/medbay2) "dr" = ( /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, /area/medical/medbay) "ds" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -1699,8 +1618,6 @@ dir = 4 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -1712,7 +1629,6 @@ pixel_x = 24 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/tiled, @@ -1762,7 +1678,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1830,8 +1745,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1867,8 +1780,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -1912,16 +1823,12 @@ /area/crew_quarters/bar) "eb" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/medical/medbay) "ec" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -1980,8 +1887,6 @@ icon_state = "2-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -2005,8 +1910,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled, @@ -2331,8 +2234,6 @@ icon_state = "1-2" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -2462,7 +2363,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2517,8 +2417,6 @@ icon_state = "4-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -2626,7 +2524,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /obj/structure/table/reinforced, @@ -2658,8 +2555,6 @@ icon_state = "1-8" }, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -2668,8 +2563,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2697,8 +2590,6 @@ /area/engineering/engine_monitoring) "fS" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -2717,8 +2608,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2734,8 +2623,6 @@ name = "Engineer" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2747,8 +2634,6 @@ name = "Engineer" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -2758,8 +2643,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/table/steel, @@ -2866,7 +2749,6 @@ pixel_y = 32 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/tiled, @@ -3296,7 +3178,6 @@ /area/engineering/workshop) "hV" = ( /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/apc{ @@ -3337,8 +3218,6 @@ /area/engineering/engine_monitoring) "iJ" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3351,8 +3230,6 @@ /area/engineering/engine_room) "iO" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -3378,8 +3255,6 @@ /area/engineering/workshop) "jd" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -3394,8 +3269,6 @@ /area/engineering/workshop) "jf" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3410,8 +3283,6 @@ "jn" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3442,15 +3313,12 @@ /obj/structure/cable/yellow, /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, /area/space) "jQ" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3459,8 +3327,6 @@ /area/engineering/engine_monitoring) "jS" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light, @@ -3470,8 +3336,6 @@ /area/engineering/engine_room) "jU" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -3491,8 +3355,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -3515,8 +3377,6 @@ /area/engineering/engine_monitoring) "kz" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -3527,31 +3387,21 @@ /area/engineering/workshop) "kE" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/engineering/engine_monitoring) "kG" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3564,8 +3414,6 @@ /area/engineering/engine_room) "kK" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -3577,8 +3425,6 @@ /area/engineering/engine_room) "kR" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/effect/floor_decal/borderfloor/corner, @@ -3624,16 +3470,12 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, /area/engineering/workshop) "lE" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -3660,7 +3502,6 @@ /area/engineering/workshop) "lX" = ( /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/tesla_coil, @@ -3669,8 +3510,6 @@ /area/space) "lZ" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -3688,8 +3527,6 @@ /area/engineering/engine_gas) "mt" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light{ @@ -3705,8 +3542,6 @@ /area/engineering/engine_room) "mE" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -3755,8 +3590,6 @@ /area/engineering/workshop) "nf" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -3766,16 +3599,12 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "nk" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -3790,8 +3619,6 @@ /area/engineering/workshop) "nI" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -3818,8 +3645,6 @@ pixel_y = 25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light/small{ @@ -3841,8 +3666,6 @@ /area/submap/pa_room) "nZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/manifold/hidden{ @@ -3893,7 +3716,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/light{ @@ -3903,26 +3725,18 @@ /area/engineering/engine_monitoring) "oR" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, /area/space) "oX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -3940,24 +3754,18 @@ /area/engineering/workshop) "pa" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, /area/space) "pb" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable/cyan{ - d2 = 4; icon_state = "0-4" }, /obj/machinery/power/sensor{ @@ -3979,8 +3787,6 @@ }, /obj/machinery/light, /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4038,7 +3844,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -4071,8 +3876,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/access_button{ @@ -4088,8 +3891,6 @@ /area/engineering/engine_room) "qa" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/binary/pump{ @@ -4118,8 +3919,6 @@ /area/shuttle/overmapdemo) "qt" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -4143,8 +3942,6 @@ /area/engineering/engine_monitoring) "qK" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/engineering, @@ -4243,8 +4040,6 @@ "rL" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4267,8 +4062,6 @@ name = "Engine North Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -4347,7 +4140,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4377,8 +4169,6 @@ /area/engineering/workshop) "sO" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, @@ -4386,8 +4176,6 @@ "sP" = ( /obj/machinery/door/airlock/glass_engineering, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, @@ -4407,8 +4195,6 @@ /area/engineering/engine_gas) "tE" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/steeldecal/steel_decals_central5{ @@ -4427,8 +4213,6 @@ /area/engineering/engine_room) "tP" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/airless, @@ -4448,8 +4232,6 @@ /area/engineering/engine_monitoring) "tW" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, @@ -4490,8 +4272,6 @@ dir = 6 }, /obj/structure/cable{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, @@ -4509,8 +4289,6 @@ /area/engineering/workshop) "uD" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -4538,8 +4316,6 @@ /area/space) "vh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -4560,8 +4336,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4595,8 +4369,6 @@ dir = 8 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4613,8 +4385,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/visible/red{ @@ -4624,8 +4394,6 @@ /area/engineering/workshop) "wb" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, @@ -4656,7 +4424,6 @@ dir = 5 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/monotile, @@ -4683,12 +4450,9 @@ /area/engineering/workshop) "wE" = ( /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/sensor{ @@ -4743,7 +4507,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/effect/floor_decal/borderfloor{ @@ -4811,8 +4574,6 @@ name = "Engine South Airlock Exterior" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -4849,8 +4610,6 @@ dir = 5 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -4879,8 +4638,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_engineering{ @@ -4891,8 +4648,6 @@ /area/engineering/engine_monitoring) "yw" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/light_switch{ @@ -4915,8 +4670,6 @@ /area/engineering/engine_room) "yy" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/effect/floor_decal/borderfloor{ @@ -4943,8 +4696,6 @@ /area/engineering/engine_monitoring) "yN" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/door/airlock/glass_engineering, @@ -4957,8 +4708,6 @@ /area/submap/pa_room) "yS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4999,8 +4748,6 @@ /area/engineering/workshop) "yZ" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -5046,8 +4793,6 @@ /area/space) "zm" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, @@ -5112,8 +4857,6 @@ dir = 1 }, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -5133,8 +4876,6 @@ /area/space) "Av" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -5180,16 +4921,12 @@ /area/engineering/engine_monitoring) "AN" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "AS" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5230,33 +4967,23 @@ /area/engineering/workshop) "Be" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "Bn" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor, @@ -5270,7 +4997,6 @@ output_level = 250000 }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -5318,8 +5044,6 @@ }, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/window/reinforced{ @@ -5330,19 +5054,15 @@ "BX" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /obj/structure/cable/yellow{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/airless, /area/space) "Cd" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5352,16 +5072,12 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "CO" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -5384,8 +5100,6 @@ /area/engineering/engine_room) "Db" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5396,8 +5110,6 @@ /area/engineering/engine_gas) "Dd" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -5409,31 +5121,21 @@ "Dv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "DC" = ( /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/secure_closet/engineering_personal, @@ -5462,8 +5164,6 @@ req_one_access = list(10,11) }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -5520,8 +5220,6 @@ /area/engineering/engine_gas) "Em" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/wall/r_wall, @@ -5534,8 +5232,6 @@ /area/space) "EA" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/airless, @@ -5576,8 +5272,6 @@ pixel_y = -25 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -5594,8 +5288,6 @@ /area/engineering/engine_monitoring) "FI" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/effect/floor_decal/borderfloor{ @@ -5622,16 +5314,12 @@ /area/engineering/engine_room) "FT" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/airless, /area/space) "FU" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -5658,8 +5346,6 @@ /area/submap/pa_room) "Gk" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/airless, @@ -5694,8 +5380,6 @@ /area/engineering/workshop) "GT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -5743,8 +5427,6 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -5799,8 +5481,6 @@ /area/engineering/engine_monitoring) "Im" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor, @@ -5867,7 +5547,6 @@ /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /obj/structure/cable/yellow{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -5905,7 +5584,6 @@ pixel_x = 28 }, /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor, @@ -5916,18 +5594,12 @@ /area/engineering/workshop) "JP" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, @@ -5939,8 +5611,6 @@ /area/space) "Ki" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor, @@ -5967,8 +5637,6 @@ /area/engineering/workshop) "Kq" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -5992,8 +5660,6 @@ /area/engineering/workshop) "KU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -6007,8 +5673,6 @@ /area/engineering/workshop) "KX" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /obj/effect/floor_decal/borderfloor{ @@ -6032,8 +5696,6 @@ /area/hallway/primary/fore) "Lc" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -6041,8 +5703,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -6145,7 +5805,6 @@ /area/engineering/workshop) "MG" = ( /obj/structure/cable/cyan{ - d2 = 8; icon_state = "0-8" }, /obj/machinery/power/apc{ @@ -6164,8 +5823,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/visible/red{ @@ -6192,16 +5849,12 @@ dir = 1 }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "MV" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/table/reinforced, @@ -6251,8 +5904,6 @@ "Nv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, @@ -6267,13 +5918,9 @@ /area/engineering/workshop) "NH" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -6281,7 +5928,6 @@ /area/engineering/engine_room) "NI" = ( /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/power/emitter{ @@ -6294,8 +5940,6 @@ /area/space) "NJ" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/alarm{ @@ -6339,8 +5983,6 @@ /area/shuttle/overmapdemo) "Od" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6370,8 +6012,6 @@ /area/engineering/engine_monitoring) "Or" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6393,8 +6033,6 @@ /area/engineering/workshop) "Ox" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/sign/securearea{ @@ -6429,8 +6067,6 @@ /area/medical/medbay) "OE" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6444,7 +6080,6 @@ "OI" = ( /obj/machinery/power/tesla_coil, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor/airless, @@ -6465,13 +6100,9 @@ /area/space) "OY" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/borderfloor/corner{ @@ -6484,8 +6115,6 @@ /area/engineering/engine_room) "Pe" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -6495,8 +6124,6 @@ dir = 8 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /turf/simulated/floor/tiled, @@ -6546,7 +6173,6 @@ output_level = 1e+006 }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -6574,8 +6200,6 @@ /area/submap/pa_room) "PU" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -6585,13 +6209,9 @@ /area/engineering/engine_room) "PV" = ( /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, @@ -6621,8 +6241,6 @@ "QR" = ( /obj/effect/floor_decal/techfloor/orange/corner, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -6668,8 +6286,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6719,8 +6335,6 @@ dir = 1 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, /turf/simulated/floor, @@ -6728,11 +6342,9 @@ "RM" = ( /obj/machinery/power/grid_checker, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /obj/structure/cable{ - d2 = 4; icon_state = "0-4" }, /turf/simulated/floor, @@ -6790,8 +6402,6 @@ /area/engineering/engine_room) "Se" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -6859,8 +6469,6 @@ /area/engineering/workshop) "SY" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /obj/machinery/light{ @@ -6881,16 +6489,12 @@ /area/engineering/workshop) "Tl" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "Tm" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /obj/effect/floor_decal/rust/mono_rusted1, @@ -6916,8 +6520,6 @@ dir = 6 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor/grid, @@ -6953,8 +6555,6 @@ /area/engineering/workshop) "Uf" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/machinery/power/sensor{ @@ -6962,7 +6562,6 @@ name_tag = "Engine Power" }, /obj/structure/cable/cyan{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/atmospherics/pipe/simple/hidden, @@ -6992,8 +6591,6 @@ dir = 4 }, /obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, @@ -7023,42 +6620,30 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/engineering/engine_room) "UH" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "US" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/airless, /area/space) "UT" = ( /obj/structure/cable{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning{ @@ -7102,13 +6687,9 @@ /area/submap/pa_room) "Vw" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; icon_state = "2-8" }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/visible/red{ @@ -7137,7 +6718,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /turf/simulated/floor, @@ -7182,13 +6762,9 @@ /area/submap/pa_room) "Xg" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -7215,8 +6791,6 @@ req_access = list(10) }, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled, @@ -7226,7 +6800,6 @@ dir = 4 }, /obj/structure/cable/yellow{ - d2 = 2; icon_state = "0-2" }, /obj/machinery/camera/network/engine, @@ -7275,16 +6848,12 @@ /area/engineering/engine_monitoring) "XK" = ( /obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; icon_state = "2-4" }, /turf/simulated/floor, /area/engineering/workshop) "XS" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, @@ -7313,24 +6882,18 @@ /area/medical/medbay2) "Yd" = ( /obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/airless, /area/space) "Yh" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_monitoring) "Yp" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, @@ -7368,8 +6931,6 @@ }, /obj/machinery/light/small, /obj/structure/cable{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/structure/closet/radiation, @@ -7426,8 +6987,6 @@ /area/space) "Zr" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, /obj/machinery/door/firedoor/glass, @@ -7444,7 +7003,6 @@ pixel_x = 28 }, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, diff --git a/maps/virgo_minitest/virgo_minitest-sector-2.dmm b/maps/virgo_minitest/virgo_minitest-sector-2.dmm index 728ab2e888..54bb54e1cc 100644 --- a/maps/virgo_minitest/virgo_minitest-sector-2.dmm +++ b/maps/virgo_minitest/virgo_minitest-sector-2.dmm @@ -34,7 +34,6 @@ /area/awaymission) "aj" = ( /obj/structure/cable{ - d2 = 2; icon_state = "0-2"; pixel_y = 0 }, @@ -55,7 +54,6 @@ }, /obj/structure/cable{ icon_state = "0-4"; - d2 = 4 }, /turf/simulated/floor/plating, /area/awaymission) @@ -63,7 +61,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/power/port_gen/pacman, /obj/structure/cable{ - d2 = 8; icon_state = "0-8" }, /turf/simulated/floor/plating, diff --git a/sound/effects/ocean.ogg b/sound/effects/ocean.ogg new file mode 100644 index 0000000000..1e0be38929 Binary files /dev/null and b/sound/effects/ocean.ogg differ diff --git a/sound/effects/underwater.ogg b/sound/effects/underwater.ogg new file mode 100644 index 0000000000..2127564f74 Binary files /dev/null and b/sound/effects/underwater.ogg differ diff --git a/tgui/packages/tgui/interfaces/Fax.js b/tgui/packages/tgui/interfaces/Fax.js index 86d8ea2982..75f789d6b1 100644 --- a/tgui/packages/tgui/interfaces/Fax.js +++ b/tgui/packages/tgui/interfaces/Fax.js @@ -59,7 +59,15 @@ export const FaxContent = (props, context) => { - {copyItem} + {copyItem}{' '} +